1#ifndef Cpl_Text_Frame_StringDecoder_h_
2#define Cpl_Text_Frame_StringDecoder_h_
70 StringDecoder(
char startOfFrame,
char endOfFrame,
char escapeChar,
const char* inputSourceAsNullTerminatedString = 0 );
78 virtual void setInput(
const char* inputSourceAsNullTerminatedString )
noexcept;
84 virtual void setInput(
const char* inputSoruce,
int sizeInBytesOfSource )
noexcept;
97 bool scan(
size_t maxSizeOfFrame,
char* frame,
size_t& frameSize ) noexcept;
117 bool read(
void* buffer,
int numBytes,
int& bytesRead );
This private partially concrete class implements the basic/common logic for a frame decoder.
Definition Decoder_.h:33
This concrete class defines an interface a Text "Decoder" that accepts a null terminated string as it...
Definition StringDecoder.h:34
const char m_eof
EOF character.
Definition StringDecoder.h:52
bool isLegalCharacter() noexcept
See Cpl::Text::Frame::Decoder_.
const char m_esc
Escape character.
Definition StringDecoder.h:55
virtual void setInput(const char *inputSourceAsNullTerminatedString) noexcept
This method allows the Application/consumer to change/Set the Input source.
const char m_sof
SOF character.
Definition StringDecoder.h:49
const char * m_endPtr
From the last scan: pointer to the next character AFTER the LAST character decoded.
Definition StringDecoder.h:40
int m_srcLen
Input source length.
Definition StringDecoder.h:46
virtual void setInput(const char *inputSoruce, int sizeInBytesOfSource) noexcept
This method allows the Application/consumer to change/Set the Input source.
const char * m_srcPtr
Input source.
Definition StringDecoder.h:43
StringDecoder(char startOfFrame, char endOfFrame, char escapeChar, const char *inputSourceAsNullTerminatedString=0)
Constructor.
virtual const char * getRemainder() const noexcept
This method return a pointer to the next character AFTER the LAST character decoded.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Text::Frame::Decoder_.
bool isEofOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
const char * m_startPtr
From the last scan: start of the data being scanned.
Definition StringDecoder.h:37
bool isEscapeChar() noexcept
See Cpl::Text::Frame::Decoder_.
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept
See Cpl::Text::Frame::Decoder.
bool isStartOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20