SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Abstract base class for all the wide character input stream implementation classes. More...
#include <rw/stream/RWWCharInputStreamImp.h>
Public Member Functions | |
virtual | ~RWWCharInputStreamImp () |
virtual RWWCharInputStream | acquire () |
virtual wchar_t | read ()=0 |
virtual RWSize | read (wchar_t *wcharArray, RWSize numWChars)=0 |
virtual RWSize | readUntil (wchar_t *wcharArray, RWSize maxSize, wchar_t delim)=0 |
virtual void | release () |
Public Member Functions inherited from RWInputStreamImp | |
virtual | ~RWInputStreamImp () |
virtual RWSize | available () const =0 |
virtual bool | isEof () const =0 |
virtual RWSize | skip (RWSize numUnits)=0 |
Public Member Functions inherited from RWStreamImp | |
virtual | ~RWStreamImp () |
virtual void | close ()=0 |
virtual bool | isBad () const =0 |
virtual bool | isFail () const =0 |
virtual bool | isGood () const =0 |
Additional Inherited Members | |
Protected Types inherited from RWTCountingBody< RWMutexLock > | |
typedef RWTLockGuard< RWTMonitor< RWMutexLock > > | LockGuard |
typedef RWTTryLockGuard< RWTMonitor< RWMutexLock > > | TryLockGuard |
typedef RWTUnlockGuard< RWTMonitor< RWMutexLock > > | UnlockGuard |
Protected Types inherited from RWTMonitor< RWMutexLock > | |
typedef RWTLockGuard< RWTMonitor< RWMutexLock > > | LockGuard |
typedef RWTTryLockGuard< RWTMonitor< RWMutexLock > > | TryLockGuard |
typedef RWTUnlockGuard< RWTMonitor< RWMutexLock > > | UnlockGuard |
Abstract base class for all the wide character input stream implementation classes. Implements the body idiom from the handle-body pattern.
|
inlinevirtual |
Destructor.
|
inlineprotected |
Constructor.
|
virtual |
Acquires the synchronization mechanism provided by a stream concrete implementation. The acquire() member function returns a handle to the wide character stream that should be used for input operation after acquiring the synchronization mechanism.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
pure virtual |
Reads a single wide character from the stream.
Implemented in RWFilteredWCharInputStreamImp, RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >, and RWWCharFromWStreambufInputStreamImp.
Reads an array of wide characters from the stream. The array must be pre-allocated to contain at list numWChars elements. The function returns the actual number of wide characters read from the stream.
wcharArray | A pointer to the first element of the array. |
numWChars | The number of wide characters to be read from the stream. |
Implemented in RWFilteredWCharInputStreamImp, RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >, and RWWCharFromWStreambufInputStreamImp.
|
pure virtual |
Reads wide characters from the stream until the last wide character read is equal to delim, or maxSize wide characters have been read, or the end of the input sequence is reached. The wide characters read are stored in wcharArray. The function returns the actual number of wide characters read from the stream.
wcharArray | A pointer to the array receiving the wide characters extracted from the stream. |
maxSize | The maximum number of wide characters to be read. |
delim | The wide character used as a delimiter. |
Implemented in RWFilteredWCharInputStreamImp, RWSynchronizedWCharInputStreamImp, and RWWCharFromWStreambufInputStreamImp.
|
inlinevirtual |
Releases the synchronization mechanism provided by a stream concrete implementation.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |