This class provides a locking wrapper around an arbitrary istream pointer. More...
#include "streamWrapper.h"
Public Member Functions | |
IStreamWrapper (std::istream *stream, bool owns_pointer) | |
IStreamWrapper (std::istream &stream) | |
int | get () |
Atomically reads a single character from the stream. More... | |
std::istream * | get_istream () const |
void | read (char *buffer, std::streamsize num_bytes) |
void | read (char *buffer, std::streamsize num_bytes, std::streamsize &read_bytes) |
void | read (char *buffer, std::streamsize num_bytes, std::streamsize &read_bytes, bool &eof) |
std::streamsize | seek_gpos_eof () |
Atomically seeks to EOF and returns the gpos there; that is, returns the file size. More... | |
void | seek_read (std::streamsize pos, char *buffer, std::streamsize num_bytes, std::streamsize &read_bytes, bool &eof) |
Atomically seeks to a particular offset from the beginning of the file, and reads a number of bytes from the stream. More... | |
Public Member Functions inherited from StreamWrapperBase | |
void | acquire () |
Acquires the internal lock. More... | |
void | ref () const |
Increments the reference count. More... | |
void | release () |
Releases the internal lock. More... | |
bool | unref () const |
Decrements the reference count. More... | |
Public Attributes | |
get_istream | |
Returns the istream this object is wrapping. More... | |
This class provides a locking wrapper around an arbitrary istream pointer.
A thread may use this class to perform an atomic seek/read/gcount operation.
Definition at line 59 of file streamWrapper.h.
|
inline |
Atomically reads a single character from the stream.
Definition at line 111 of file streamWrapper.I.
References StreamWrapperBase::acquire(), and StreamWrapperBase::release().
streamsize IStreamWrapper::seek_gpos_eof | ( | ) |
Atomically seeks to EOF and returns the gpos there; that is, returns the file size.
Note that the EOF might have been moved in another thread by the time this method returns.
Definition at line 123 of file streamWrapper.cxx.
References StreamWrapperBase::acquire(), and StreamWrapperBase::release().
void IStreamWrapper::seek_read | ( | std::streamsize | pos, |
char * | buffer, | ||
std::streamsize | num_bytes, | ||
std::streamsize & | read_bytes, | ||
bool & | eof | ||
) |
Atomically seeks to a particular offset from the beginning of the file, and reads a number of bytes from the stream.
Returns the number of bytes actually read, and whether an eof condition was detected by the operation.
Definition at line 105 of file streamWrapper.cxx.
References StreamWrapperBase::acquire(), and StreamWrapperBase::release().
|
inline |
Returns the istream this object is wrapping.
Definition at line 67 of file streamWrapper.h.