#include <cel_stream.h>
Public Member Functions | |
size_t | getNumOfBytesRead () const |
size_t | getNumOfBytesWritten () const |
void | resetByteRead () |
void | resetByteWritten () |
virtual size_t | readBytes (void *buffer, size_t inSize, bool wouldBlock=false) |
virtual void | writeBytes (const void *buffer, size_t inSize) |
virtual void | flushBuffer () |
virtual bool | isEof () const |
virtual void | lock () const |
virtual void | unlock () const |
Public Member Functions inherited from Celartem::Stream | |
virtual size_t | duplicateStream (Stream *inStream, size_t inBufferSize=1024, DuplicateStreamCallback inCallback=NULL, void *inCallbackContext=NULL) |
virtual size_t | duplicateStreamBytes (Stream *inStream, size_t inMaximumByteSize, size_t inBufferSize=1024, DuplicateStreamCallback inCallback=NULL, void *inCallbackContext=NULL) |
Public Member Functions inherited from Celartem::Referable | |
Referable () | |
void | addRef () const |
void | releaseRef () const |
size_t | getReferenceCount () const |
Static Public Member Functions | |
static AutoPtr< ByteCounterStream > | create (Stream *inStream) |
Static Public Member Functions inherited from Celartem::Referable | |
static void | dumpDbgAllRefCount () |
This stream class counts the number of bytes read from and written to a stream.
|
inlinestatic |
This method creates an instance of CounterStream class.
inStream | Base stream. The actual operation will be done on the stream. |
|
inlinevirtual |
flushBuffer is provided for the purpose of flushing buffered stream.
Implements Celartem::Stream.
|
inline |
This method returns the number of bytes read from the stream.
|
inline |
This method returns the number of bytes write to the stream.
|
inlinevirtual |
isEof
return true
if the stream pointer has already reached the end of stream; you should not rely on readBytes to determine the end of stream.
true
if the file pointer reachs EOF, otherwise false
. Implements Celartem::Stream.
|
inlinevirtual |
The actual meanings of this method is defined in the derived class.
Implements Celartem::Lockable.
|
inlinevirtual |
readBytes tries to read bytes from the stream. If wouldBlock is false
, readBytes reads the data currenly available and returned immediately; the returned value indicates the bytes actually read and it is no more than inSize. If wouldBlock is true
, it blocks until it reads all the bytes specified by inSize parameter. If the stream is potentially read-only and it seems there're no chance to read the bytes specified by inSize, it throws some exception. In the case it throws some exception, the contents in the buffer is invalid and the position of stream pointer is not defined; they are implementation specific.
buffer | Pointer to a buffer that receives the data. |
inSize | Maximum size to read; readBytes reads data no more than the number of bytes specified by inSize. |
wouldBlock | It specifies it blocks until all bytes comes or not. |
Implements Celartem::Stream.
|
inline |
This method resets the number of bytes read to 0.
|
inline |
This method resets the number of bytes written to 0.
|
inlinevirtual |
The actual meanings of this method is defined in the derived class.
Implements Celartem::Lockable.
|
inlinevirtual |
writeBytes tries to write the data to the stream. If it could not write all the bytes specified by inSize, it throws some exception, which describes the status. In the case it throws some exception, the position of stream pointer is not defined; it is implementation specific.
buffer | Pointer to the buffer that holds the data to be sent. |
inSize | the number of bytes to be sent. |
Implements Celartem::Stream.