Callback class for data serialization. More...
#include <PxFileBuf.h>
Public Types | |
enum | EndianMode { ENDIAN_NONE = 0, ENDIAN_BIG = 1, ENDIAN_LITTLE = 2 } |
enum | OpenMode { OPEN_FILE_NOT_FOUND, OPEN_READ_ONLY, OPEN_WRITE_ONLY, OPEN_READ_WRITE_NEW, OPEN_READ_WRITE_EXISTING } |
enum | SeekType { SEEKABLE_NO = 0, SEEKABLE_READ = 0x1, SEEKABLE_WRITE = 0x2, SEEKABLE_READWRITE = 0x3 } |
Public Member Functions | |
PxFileBuf (EndianMode mode=ENDIAN_LITTLE) | |
virtual | ~PxFileBuf (void) |
virtual OpenMode | getOpenMode (void) const =0 |
bool | isOpen (void) const |
virtual SeekType | isSeekable (void) const =0 |
void | setEndianMode (EndianMode e) |
EndianMode | getEndianMode (void) const |
virtual uint32_t | getFileLength (void) const =0 |
virtual uint32_t | seekRead (uint32_t loc)=0 |
Seeks the stream to a particular location for reading. More... | |
virtual uint32_t | seekWrite (uint32_t loc)=0 |
Seeks the stream to a particular location for writing. More... | |
virtual uint32_t | read (void *mem, uint32_t len)=0 |
Reads from the stream into a buffer. More... | |
virtual uint32_t | peek (void *mem, uint32_t len)=0 |
Reads from the stream into a buffer but does not advance the read location. More... | |
virtual uint32_t | write (const void *mem, uint32_t len)=0 |
Writes a buffer of memory to the stream. More... | |
virtual uint32_t | tellRead (void) const =0 |
Reports the current stream location read aqccess. More... | |
virtual uint32_t | tellWrite (void) const =0 |
Reports the current stream location for write access. More... | |
virtual void | flush (void)=0 |
Causes any temporarily cached data to be flushed to the stream. More... | |
virtual void | close (void) |
Close the stream. More... | |
void | release (void) |
PX_INLINE void | swap2Bytes (void *_data) const |
PX_INLINE void | swap4Bytes (void *_data) const |
PX_INLINE void | swap8Bytes (void *_data) const |
PX_INLINE void | storeDword (uint32_t v) |
PX_INLINE void | storeFloat (float v) |
PX_INLINE void | storeDouble (double v) |
PX_INLINE void | storeByte (uint8_t b) |
PX_INLINE void | storeWord (uint16_t w) |
uint8_t | readByte (void) |
uint16_t | readWord (void) |
uint32_t | readDword (void) |
float | readFloat (void) |
double | readDouble (void) |
Static Public Member Functions | |
static PX_INLINE bool | isBigEndian () |
Static Public Attributes | |
static const uint32_t | STREAM_SEEK_END =0xFFFFFFFF |
Declares a constant to seek to the end of the stream. More... | |
Private Attributes | |
bool | mEndianSwap |
EndianMode | mEndianMode |
Callback class for data serialization.
The user needs to supply an PxFileBuf implementation to a number of methods to allow the SDK to read or write chunks of binary data. This allows flexibility for the source/destination of the data. For example the PxFileBuf could store data in a file, memory buffer or custom file format.
enum PxFileBuf::OpenMode |
enum PxFileBuf::SeekType |
|
inline |
|
inlinevirtual |
|
inlinevirtual |
Close the stream.
|
pure virtual |
Causes any temporarily cached data to be flushed to the stream.
|
inline |
|
pure virtual |
|
pure virtual |
|
inlinestatic |
|
inline |
|
pure virtual |
|
pure virtual |
Reads from the stream into a buffer but does not advance the read location.
[out] | mem | The buffer to read the stream into. |
[in] | len | The number of bytes to stream into the buffer |
|
pure virtual |
Reads from the stream into a buffer.
[out] | mem | The buffer to read the stream into. |
[in] | len | The number of bytes to stream into the buffer |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
pure virtual |
Seeks the stream to a particular location for reading.
If the location passed exceeds the length of the stream, then it will seek to the end. Returns the location it ended up at (useful if you seek to the end) to get the file position
|
pure virtual |
Seeks the stream to a particular location for writing.
If the location passed exceeds the length of the stream, then it will seek to the end. Returns the location it ended up at (useful if you seek to the end) to get the file position
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
pure virtual |
Reports the current stream location read aqccess.
|
pure virtual |
Reports the current stream location for write access.
|
pure virtual |
Writes a buffer of memory to the stream.
[in] | mem | The address of a buffer of memory to send to the stream. |
[in] | len | The number of bytes to send to the stream. |
|
private |
|
private |
|
static |
Declares a constant to seek to the end of the stream.
Does not support streams longer than 32 bits