1#ifndef Cpl_Text_Frame_Decoder_x_h_
2#define Cpl_Text_Frame_Decoder_x_h_
40 Decoder_(
char rawInputBuffer[],
size_t sizeOfRawInputBuffer );
45 bool scan(
size_t maxSizeOfFrame,
char* frame,
size_t& frameSize )
noexcept;
48 bool scan(
size_t maxSizeOfFrame,
char* frame,
size_t& frameSize,
bool& isEof )
noexcept;
51 bool oobRead(
void* buffer,
int numBytes,
int& bytesRead )
noexcept;
71 virtual
bool read(
void* buffer,
int numBytes,
int& bytesRead ) = 0;
This private partially concrete class implements the basic/common logic for a frame decoder.
Definition Decoder_.h:33
virtual bool read(void *buffer, int numBytes, int &bytesRead)=0
Attempts to read the specified number of bytes from the "input source" in the supplied buffer.
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize, bool &isEof) noexcept
See Cpl::Text::Frame::Decoder.
bool m_inFrame
Flag: I am currently in a Frame.
Definition Decoder_.h:95
Decoder_(char rawInputBuffer[], size_t sizeOfRawInputBuffer)
Constructor.
char * m_dataPtr
Pointer to the next unprocessed character in my raw input buffer.
Definition Decoder_.h:86
char * m_framePtr
Pointer to the next decoded frame character.
Definition Decoder_.h:101
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept
See Cpl::Text::Frame::Decoder.
char * m_buffer
Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to ...
Definition Decoder_.h:89
size_t m_bufSize
Size of my raw input buffer.
Definition Decoder_.h:92
virtual bool isEofOfFrame() noexcept=0
Returns true if at end-of-frame.
bool oobRead(void *buffer, int numBytes, int &bytesRead) noexcept
See Cpl::Text::Frame::Decoder.
virtual bool isEscapeChar() noexcept=0
Returns true if the start of the start of a escape sequence has been detected.
virtual bool isStartOfFrame() noexcept=0
Returns true if at start-of-frame.
size_t m_frameSize
Number of bytes current decoded for the frame.
Definition Decoder_.h:104
bool m_escaping
Flag: the next character is an escape character.
Definition Decoder_.h:98
virtual void initializeFrame() noexcept
Helper method to initialize frame processing.
virtual char decodeEscapedChar(char escapedChar)
Returns the un-encoded value for the specified escaped character.
virtual bool isLegalCharacter() noexcept=0
Returns true if the current character is a legal/valid within a frame.
int m_dataLen
Current number of characters remaining in my raw input buffer.
Definition Decoder_.h:83
This class defines an interface for 'receiving' (decode) a frame.
Definition Decoder.h:68
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20