SourcePro® 2024.1 |
SourcePro® API Reference Guide |
Abstract base class for all binary input stream implementation classes. More...
#include <rw/stream/RWByteInputStreamImp.h>
Public Member Functions | |
virtual | ~RWByteInputStreamImp () |
virtual RWByteInputStream | acquire () |
virtual RWByte | read ()=0 |
virtual RWSize | read (RWByte *byteArray, RWSize numBytes)=0 |
virtual RWSize | readUntil (RWByte *byteArray, RWSize maxSize, RWByte 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 binary 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 binary stream that should be used for input operation after acquiring the synchronization mechanism.
Reimplemented in RWTInputStreamLockImp< RWByteInputStream, RWFilteredByteInputStreamImp >.
|
pure virtual |
Reads a single byte from the stream.
Implemented in RWByteFromStreambufInputStreamImp, RWFilteredByteInputStreamImp, and RWTInputStreamLockImp< RWByteInputStream, RWFilteredByteInputStreamImp >.
Reads an array of bytes from the stream. The array must be pre-allocated to contain at least of numBytes elements. The function returns the actual number of bytes read from the stream.
byteArray | A pointer to the first element of the array. |
numBytes | The number of bytes to be read from the stream. |
Implemented in RWByteFromStreambufInputStreamImp, RWFilteredByteInputStreamImp, and RWTInputStreamLockImp< RWByteInputStream, RWFilteredByteInputStreamImp >.
|
pure virtual |
Reads bytes from the stream until the last byte read is equal to delim, or maxSize bytes have been read, or the end of the input sequence is reached. The bytes read are stored in byteArray. The function returns the actual number of bytes read from the stream.
byteArray | A pointer to the array receiving the bytes extracted from the stream. |
maxSize | The maximum number of bytes to be read. |
delim | The byte value used as a delimiter. |
Implemented in RWByteFromStreambufInputStreamImp, RWFilteredByteInputStreamImp, and RWSynchronizedByteInputStreamImp.
|
inlinevirtual |
Releases the synchronization mechanism provided by a stream concrete implementation.
Reimplemented in RWTInputStreamLockImp< RWByteInputStream, RWFilteredByteInputStreamImp >.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |