SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Abstract base class for all the filtered wide character input stream implementation classes. More...
#include <rw/stream/RWFilteredWCharInputStreamImp.h>
Public Member Functions | |
virtual | ~RWFilteredWCharInputStreamImp () |
virtual RWSize | available () const |
virtual void | close () |
virtual bool | isBad () const |
virtual bool | isEof () const |
virtual bool | isFail () const |
virtual bool | isGood () const |
virtual wchar_t | read () |
virtual RWSize | read (wchar_t *wcharArray, RWSize numWChars) |
virtual RWSize | readUntil (wchar_t *wcharArray, RWSize maxSize, wchar_t delim) |
virtual RWSize | skip (RWSize numUnits) |
Public Member Functions inherited from RWWCharInputStreamImp | |
virtual | ~RWWCharInputStreamImp () |
virtual RWWCharInputStream | acquire () |
virtual void | release () |
Public Member Functions inherited from RWInputStreamImp | |
virtual | ~RWInputStreamImp () |
Public Member Functions inherited from RWStreamImp | |
virtual | ~RWStreamImp () |
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 filtered wide character input stream implementation classes. A filtered input stream is a stream that uses its attached input stream as the source of elements to its own functions. Implements the body idiom from the handle-body pattern.
|
virtual |
Destructor.
|
inlineprotected |
Used by derived classes to initialize the attached source stream.
sourceStream | A handle to the attached source stream. |
|
virtual |
Returns the number of wide characters that can be read from the attached source stream without blocking. Throws no exceptions.
Implements RWInputStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the close() request to the attached source stream.
Implements RWStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
inlineprotected |
Returns a handle to the attached source stream. Throws no exceptions.
|
inlineprotected |
Returns a handle to the attached source stream. Throws no exceptions.
|
virtual |
Forwards the isBad() request to the attached source stream. Throws no exceptions.
Implements RWStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the isEof() request to the attached source stream. Throws no exceptions.
Implements RWInputStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the isFail() request to the attached source stream. Throws no exceptions.
Implements RWStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the isGood() request to the attached source stream. Throws no exceptions.
Implements RWStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the reading of a single wide character from the attached source stream.
Implements RWWCharInputStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Forwards the reading of an array of wide characters from the attached source stream. The function returns the actual number of wide characters read.
wcharArray | A pointer to the first element of the array. The array must have been pre-allocated to contain at least 'numWChars' elements. |
numWChars | The number of wide character(s) to be read from the stream. |
Implements RWWCharInputStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
|
virtual |
Reads wide characters from the attached source 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 character(s) extracted from the stream. |
maxSize | The maximum number of wide character(s) to be read. |
delim | The wide character used as a delimiter. |
Implements RWWCharInputStreamImp.
Reimplemented in RWSynchronizedWCharInputStreamImp.
Skips numUnits wide characters from the input sequence of the attached source stream if possible. The function returns the actual number of wide characters skipped, which can be any value between 0 and numUnits.
numUnits | The number of wide character(s) to be skipped. |
Implements RWInputStreamImp.
Reimplemented in RWTInputStreamLockImp< RWWCharInputStream, RWFilteredWCharInputStreamImp >.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |