class final
ByteBufContents
Low-level fixed size buffer that can store raw bytes
Base classes
- class IInputStream
- class IOutputStream
Constructors, destructors, conversion operators
Public functions
- auto operator=(const ByteBuf& other) -> ByteBuf&
- auto operator=(ByteBuf&& other) -> ByteBuf& noexcept
- void Clear()
- void Reset()
- void Shift(fsize count)
- auto Write(const void* buf, fsize bufsize) -> fsize final
- auto Read(void* buf, fsize bufsize) -> fsize final
- auto operator*() -> uint8* noexcept
- auto operator*() const -> const uint8* noexcept
- auto Size() const -> fsize noexcept
- auto GetCursor() const -> fsize noexcept
- auto GetWrittenBytes() const -> fsize noexcept
- void Seek(const fsize pos)
- auto operator[](const fsize id) const -> uint8
- auto operator[](const fsize id) -> uint8&
Function documentation
void bpf:: io:: ByteBuf:: Clear()
Clears this buffer by resetting all bytes inside to the value 0
void bpf:: io:: ByteBuf:: Reset()
Reset the pointers of this buffer to the beginning
fsize bpf:: io:: ByteBuf:: Write(const void* buf,
fsize bufsize) final
Parameters | |
---|---|
buf | the buffer with the bytes to write |
bufsize | the size of the buffer |
Returns | number of bytes written |
Exceptions | |
IOException | in case of system error |
Writes bytes to this stream WARNING: When possible the implementation should not buffer
fsize bpf:: io:: ByteBuf:: Read(void* buf,
fsize bufsize) final
Parameters | |
---|---|
buf | buffer to receive the read bytes |
bufsize | the size of the receiving buffer |
Returns | number of bytes read |
Exceptions | |
IOException | in case of system error |
Reads bytes from this stream WARNING: When possible the implementation should not buffer
fsize bpf:: io:: ByteBuf:: GetWrittenBytes() const noexcept
Returns | number of bytes written as unsigned |
---|
Returns the number of bytes written
void bpf:: io:: ByteBuf:: Seek(const fsize pos)
Parameters | |
---|---|
pos | new cursor position as unsigned |
Exceptions | |
IndexException | if pos out of bounds |
Change location of read/write head
uint8 bpf:: io:: ByteBuf:: operator[](const fsize id) const
Parameters | |
---|---|
id | the index of the byte to get |
Returns | copy of the byte at index id |
Exceptions | |
IndexException | if index out of bounds |
Returns a byte at a given index