#include <Stream.h>
Inherits cinder::IStreamCinder.
Enumerator |
---|
STREAM_BIG_ENDIAN |
|
STREAM_LITTLE_ENDIAN |
|
cinder::IStreamMem::~IStreamMem |
( |
| ) |
|
cinder::IStreamMem::IStreamMem |
( |
const void * |
aData, |
|
|
size_t |
aDataSize |
|
) |
| |
|
protected |
IStreamMemRef cinder::IStreamMem::create |
( |
const void * |
data, |
|
|
size_t |
size |
|
) |
| |
|
static |
Creates a new IStreamMemRef from the memory pointed to by data which is of size size bytes.
size_t cinder::IStreamMem::readDataAvailable |
( |
void * |
dest, |
|
|
size_t |
maxSize |
|
) |
| |
|
virtual |
void cinder::IStreamMem::seekAbsolute |
( |
off_t |
absoluteOffset | ) |
|
|
virtual |
Sets the current position of the stream to byte absoluteOffset. A negative offset is relative to the end of the file.
Implements cinder::StreamBase.
void cinder::IStreamMem::seekRelative |
( |
off_t |
relativeOffset | ) |
|
|
virtual |
Moves the current position of the stream by relativeOffset bytes.
Implements cinder::StreamBase.
off_t cinder::IStreamMem::tell |
( |
| ) |
const |
|
virtual |
off_t cinder::IStreamMem::size |
( |
| ) |
const |
|
virtual |
bool cinder::IStreamMem::isEof |
( |
| ) |
const |
|
virtual |
Returns whether the stream is currently pointed at the end of the file.
Implements cinder::IStreamCinder.
const void* cinder::IStreamMem::getData |
( |
| ) |
|
Returns a pointer to the data which the stream wraps.
void cinder::IStreamMem::IORead |
( |
void * |
t, |
|
|
size_t |
size |
|
) |
| |
|
protectedvirtual |
template<typename T >
void cinder::IStreamCinder::read |
( |
T * |
t | ) |
|
|
inherited |
void cinder::IStreamCinder::read |
( |
std::string * |
s | ) |
|
|
inherited |
Reads characters until a null terminator.
void cinder::IStreamCinder::read |
( |
fs::path * |
p | ) |
|
|
inherited |
template<typename T >
void cinder::IStreamCinder::readEndian |
( |
T * |
t, |
|
|
uint8_t |
endian |
|
) |
| |
|
inherited |
template<typename T >
void cinder::IStreamCinder::readBig |
( |
T * |
t | ) |
|
|
inherited |
template<typename T >
void cinder::IStreamCinder::readLittle |
( |
T * |
t | ) |
|
|
inherited |
void cinder::IStreamCinder::readFixedString |
( |
char * |
t, |
|
|
size_t |
maxSize, |
|
|
bool |
nullTerminate |
|
) |
| |
|
inherited |
void cinder::IStreamCinder::readFixedString |
( |
std::string * |
t, |
|
|
size_t |
size |
|
) |
| |
|
inherited |
std::string cinder::IStreamCinder::readLine |
( |
| ) |
|
|
inherited |
void cinder::IStreamCinder::readData |
( |
void * |
dest, |
|
|
size_t |
size |
|
) |
| |
|
inherited |
static uint8_t cinder::StreamBase::getNativeEndianness |
( |
| ) |
|
|
staticinherited |
const fs::path& cinder::StreamBase::getFileName |
( |
| ) |
const |
|
inherited |
Returns the file name of the path from which a Stream originated when relevant. Empty string when undefined.
void cinder::StreamBase::setFileName |
( |
const fs::path & |
aFileName | ) |
|
|
inherited |
Sets the file name of the path from which a Stream originated when relevant. Empty string when undefined.
bool cinder::StreamBase::getDeleteOnDestroy |
( |
| ) |
const |
|
inherited |
Returns whether the Stream has been requested to destroy its source upon its own destruction. For example, IStreamFile will delete its source file. Ignored in some types of streams. Defaults to false
.
void cinder::StreamBase::setDeleteOnDestroy |
( |
bool |
enable = true | ) |
|
|
inherited |
Sets whether the Stream has been requested to destroy its source upon its own destruction. For example, IStreamFile will delete its source file. Ignored in some types of streams. Defaults to false
.
const uint8_t* cinder::IStreamMem::mData |
|
protected |
size_t cinder::IStreamMem::mDataSize |
|
protected |
size_t cinder::IStreamMem::mOffset |
|
protected |
const int cinder::IStreamCinder::MINIMUM_BUFFER_SIZE = 8 |
|
staticprotectedinherited |
fs::path cinder::StreamBase::mFileName |
|
protectedinherited |
bool cinder::StreamBase::mDeleteOnDestroy |
|
protectedinherited |
The documentation for this class was generated from the following files: