SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Handle class for all the UTF-16 character input stream implementation classes. More...
#include <rw/stream/RWUCharInputStream.h>
Public Member Functions | |
RWUCharInputStream (const RWUCharInputStream &handle) | |
RWUCharInputStream (RWUCharInputStreamImp *body) | |
RWSize | available () const |
void | close () |
bool | isBad () const |
bool | isEof () const |
bool | isFail () const |
bool | isGood () const |
RWUCharInputStream & | operator= (const RWUCharInputStream &handle) |
RWUCharInputStream & | operator>> (RWUChar &unicodeValue) |
RWUCharInputStream & | operator>> (RWUCharInputStream &(*pf)(RWUCharInputStream &)) |
RWUCharInputStream | operator>> (RWUCharInputStream(*pf)(RWUCharInputStream &)) |
RWUChar | read () |
RWSize | read (RWUChar *unicodeArray, RWSize numUChars) |
RWSize | readUntil (RWUChar *unicodeArray, RWSize maxSize, RWUChar delim) |
RWSize | skip (RWSize numUnits) |
Public Member Functions inherited from RWHandleBase | |
bool | isValid (void) const |
bool | operator!= (const RWHandleBase &second) const |
bool | operator== (const RWHandleBase &second) const |
Friends | |
class | RWTStreamGuardImp< RWUCharInputStream, RWFilteredUCharInputStreamImp > |
Related Symbols | |
(Note that these are not member symbols.) | |
RWUCharInputStream & | rwDisc (RWUCharInputStream &stream) |
RWUCharInputStream | rwGuard (RWUCharInputStream &stream) |
Additional Inherited Members | |
Protected Member Functions inherited from RWHandleBase | |
RWHandleBase (const RWHandleBase &second) | |
RWHandleBase (RWBodyBase *body) | |
RWHandleBase (RWStaticCtor) | |
RWHandleBase (void) | |
~RWHandleBase (void) | |
RWBodyBase & | body (void) const |
RWHandleBase & | operator= (const RWHandleBase &second) |
Handle class for all the UTF-16 character input stream implementation classes. Implements the handle idiom from the handle-body pattern.
|
inlineexplicit |
Constructor.
|
inline |
Copy constructor.
handle | A UTF-16 character stream handle used to initialize the newly created handle. |
|
inline |
Returns the number of UTF-16 characters that can be read from the stream without blocking. Throws no exceptions.
|
inline |
Close the stream.
|
inline |
Returns true
to indicate a loss of integrity resulting from an input operation, such as an irrecoverable read error from a file. Throws no exceptions.
|
inline |
Returns true
to indicate that an input operation reached the end of an input sequence. Throws no exceptions.
|
inline |
Returns true
to indicate that an input operation failed to read the expected data. Throws no exceptions.
|
inline |
Returns true
to indicate a stream in a valid state. Throws no exceptions.
|
inline |
Assignment operator. Throws no exceptions.
handle | A UTF-16 character stream handle used to initialize this handle. |
|
inline |
Reads a single UTF-16 character from the stream.
unicodeValue | The UTF-16 character to be read from the stream. |
|
inline |
Extractor executing a manipulator function.
pf | The manipulator's function pointer. |
|
inline |
Extractor executing a manipulator function.
pf | The manipulator's function pointer. |
|
inline |
Reads a single UTF-16 character from the stream.
Reads an array of UTF-16 characters from the stream. The array must be pre-allocated to contain at least numUChars elements. The function returns the actual number of UTF-16 characters extracted from the stream.
unicodeArray | A pointer to the first element of the array. |
numUChars | The number of UTF-16 characters to be read from the stream. |
|
inline |
Reads UTF-16 characters from the stream until the last UTF-16 character read is equal to delim, or maxSize UTF-16 characters have been read, or the end of the input sequence is reached. The UTF-16 characters read are stored in unicodeArray. The function returns the actual number of UTF-16 characters read from the stream.
unicodeArray | A pointer to the array receiving the UTF-16 characters extracted from the stream. |
maxSize | The maximum number of UTF-16 characters to be read. |
delim | The UTF-16 character used as a delimiter. |
Skips numUnits UTF-16 characters from the input sequence if possible. The function returns the actual number of UTF-16 characters skipped, which can be any value between 0 and numUnits.
numUnits | The number of UTF-16 characters to be skipped. |
|
related |
Manipulator that discards a UTF-16 character from a stream input sequence.
stream | The UTF-16 character stream. |
|
related |
Manipulator that is used to guard a series of extraction operations.
stream | A UTF-16 character input stream. |
A rwGuard() manipulator creates a temporary guarded stream that locks the internal mutex of the preceding synchronized stream. In this way, any extractions following the manipulator within the statement will be atomic, that is, uninterrupted by any other threads. Note that if the preceding stream is not a synchronized stream, the rwGuard() manipulator has no effect.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |