CoreComponents 3.0.0
A Modern C++ Toolkit
|
Byte decoding sink. More...
#include <cc/ByteSource>
Public Member Functions | |
ByteSource (const Stream &source, const Bytes &buffer, ByteOrder endian=ByteOrder::LittleEndian) | |
Open a new ByteSource. | |
ByteSource (const Stream &source, ByteOrder endian=ByteOrder::LittleEndian) | |
Open a new ByteSource. | |
ByteSource (const Bytes &buffer, ByteOrder endian=ByteOrder::LittleEndian) | |
Open a new ByteSource. | |
bool | readByte (Out< uint8_t > x) |
Read byte into x and return true if successful. | |
bool | readChar (Out< char > ch) |
Read character into x and return true if successful. | |
void | read (Out< Bytes > span) |
Read a fixed number of bytes (N) | |
Bytes | readSpan (int n) |
Read n bytes. | |
String | readCString () |
Read a zero-terminated C-string. | |
bool | prefetch () |
Fill input buffer and return true if more bytes can be read. | |
uint8_t | readUInt8 () |
Read a byte. | |
uint16_t | readUInt16 () |
Read a 2-byte word. | |
uint32_t | readUInt32 () |
Read a 4-byte word. | |
uint64_t | readUInt64 () |
Read an 8-byte word. | |
int8_t | readInt8 () |
Read a signed byte. | |
int16_t | readInt16 () |
Read a signed 2-byte word. | |
int32_t | readInt32 () |
Read a signed 4-byte word. | |
int64_t | readInt64 () |
Read a signed 8-byte word. | |
Stream | source () const |
Data source to read bytes from. | |
const Bytes & | buffer () const |
The input buffer. | |
ByteOrder | endian () const |
Byte-order for decoding multi-byte words. | |
void | setEndian (ByteOrder endian) |
Set byte-order | |
long long | currentOffset () const |
Total number of bytes read. | |
Byte decoding sink.
InputExhaustion |
ByteSource | ( | const Stream & | source, |
const Bytes & | buffer, | ||
ByteOrder | endian = ByteOrder::LittleEndian ) |
Open a new ByteSource.
source | Data source to write bytes from |
buffer | Input buffer to use |
endian | Endianess for reading multi-byte words |
ByteSource | ( | const Stream & | source, |
ByteOrder | endian = ByteOrder::LittleEndian ) |
Open a new ByteSource.
source | Data source to write bytes from |
endian | Endianess for reading multi-byte words |
ByteSource | ( | const Bytes & | buffer, |
ByteOrder | endian = ByteOrder::LittleEndian ) |
Open a new ByteSource.
buffer | Input buffer to read bytes from |
endian | Endianess for reading multi-byte words |
bool readChar | ( | Out< char > | ch | ) |
Read character into x and return true if successful.
Read a fixed number of bytes (N)
span | target buffer (N = span->count()) |
Bytes readSpan | ( | int | n | ) |
Read n bytes.
String readCString | ( | ) |
Read a zero-terminated C-string.
bool prefetch | ( | ) |
Fill input buffer and return true if more bytes can be read.
uint8_t readUInt8 | ( | ) |
Read a byte.
uint16_t readUInt16 | ( | ) |
Read a 2-byte word.
uint32_t readUInt32 | ( | ) |
Read a 4-byte word.
uint64_t readUInt64 | ( | ) |
Read an 8-byte word.
int8_t readInt8 | ( | ) |
Read a signed byte.
int16_t readInt16 | ( | ) |
Read a signed 2-byte word.
int32_t readInt32 | ( | ) |
Read a signed 4-byte word.
int64_t readInt64 | ( | ) |
Read a signed 8-byte word.
Stream source | ( | ) | const |
Data source to read bytes from.
const Bytes & buffer | ( | ) | const |
The input buffer.
ByteOrder endian | ( | ) | const |
Byte-order for decoding multi-byte words.
void setEndian | ( | ByteOrder | endian | ) |
Set byte-order
long long currentOffset | ( | ) | const |
Total number of bytes read.