This concrete class defines an interface a Text "Decoder" that accepts a null terminated string as its input source.
More...
This concrete class defines an interface a Text "Decoder" that accepts a null terminated string as its input source.
See Cpl::Text::Frame::Decoder for details on what is a decoder.
#include <StringDecoder.h>
|
| StringDecoder (char startOfFrame, char endOfFrame, char escapeChar, const char *inputSourceAsNullTerminatedString=0) |
| Constructor.
|
|
virtual void | setInput (const char *inputSourceAsNullTerminatedString) noexcept |
| This method allows the Application/consumer to change/Set the Input source.
|
|
virtual void | setInput (const char *inputSoruce, int sizeInBytesOfSource) noexcept |
| This method allows the Application/consumer to change/Set the Input source.
|
|
virtual const char * | getRemainder () const noexcept |
| This method return a pointer to the next character AFTER the LAST character decoded.
|
|
bool | scan (size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept |
| See Cpl::Text::Frame::Decoder.
|
|
| Decoder_ (char rawInputBuffer[], size_t sizeOfRawInputBuffer) |
| Constructor.
|
|
bool | scan (size_t maxSizeOfFrame, char *frame, size_t &frameSize, bool &isEof) noexcept |
| See Cpl::Text::Frame::Decoder.
|
|
bool | oobRead (void *buffer, int numBytes, int &bytesRead) noexcept |
| See Cpl::Text::Frame::Decoder.
|
|
virtual | ~Decoder () |
| Virtual Destructor.
|
|
|
const char * | m_startPtr |
| From the last scan: start of the data being scanned.
|
|
const char * | m_endPtr |
| From the last scan: pointer to the next character AFTER the LAST character decoded.
|
|
const char * | m_srcPtr |
| Input source.
|
|
int | m_srcLen |
| Input source length.
|
|
const char | m_sof |
| SOF character.
|
|
const char | m_eof |
| EOF character.
|
|
const char | m_esc |
| Escape character.
|
|
int | m_dataLen |
| Current number of characters remaining in my raw input buffer.
|
|
char * | m_dataPtr |
| Pointer to the next unprocessed character in my raw input buffer.
|
|
char * | m_buffer |
| Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())
|
|
size_t | m_bufSize |
| Size of my raw input buffer.
|
|
bool | m_inFrame |
| Flag: I am currently in a Frame.
|
|
bool | m_escaping |
| Flag: the next character is an escape character.
|
|
char * | m_framePtr |
| Pointer to the next decoded frame character.
|
|
size_t | m_frameSize |
| Number of bytes current decoded for the frame.
|
|
◆ StringDecoder()
Cpl::Text::Frame::StringDecoder::StringDecoder |
( |
char |
startOfFrame, |
|
|
char |
endOfFrame, |
|
|
char |
escapeChar, |
|
|
const char * |
inputSourceAsNullTerminatedString = 0 |
|
) |
| |
Constructor.
The optional 'inputSource' argument points to the raw frame data to be decoded. If 'inputSource' is not set at construction time, it MUST be set BEFORE scan() is called or a fatal error will be generated.
NOTE: Once scan() has be called the 'inputSouce' is considered to be consumed and the Application must make a call to setInput() before calling scan() again (if not, the scan() call will fail
- i.e. return false - with an end-of-input error).
◆ getRemainder()
virtual const char * Cpl::Text::Frame::StringDecoder::getRemainder |
( |
| ) |
const |
|
virtualnoexcept |
This method return a pointer to the next character AFTER the LAST character decoded.
The value returned from this method is ONLY valid after a call to scan() and BEFORE a subsequent call to scan(), oobRead(), or setInput().
◆ isEofOfFrame()
bool Cpl::Text::Frame::StringDecoder::isEofOfFrame |
( |
| ) |
|
|
protectedvirtualnoexcept |
◆ isEscapeChar()
bool Cpl::Text::Frame::StringDecoder::isEscapeChar |
( |
| ) |
|
|
protectedvirtualnoexcept |
◆ isLegalCharacter()
bool Cpl::Text::Frame::StringDecoder::isLegalCharacter |
( |
| ) |
|
|
protectedvirtualnoexcept |
◆ isStartOfFrame()
bool Cpl::Text::Frame::StringDecoder::isStartOfFrame |
( |
| ) |
|
|
protectedvirtualnoexcept |
◆ read()
bool Cpl::Text::Frame::StringDecoder::read |
( |
void * |
buffer, |
|
|
int |
numBytes, |
|
|
int & |
bytesRead |
|
) |
| |
|
protectedvirtual |
◆ scan()
bool Cpl::Text::Frame::StringDecoder::scan |
( |
size_t |
maxSizeOfFrame, |
|
|
char * |
frame, |
|
|
size_t & |
frameSize |
|
) |
| |
|
virtualnoexcept |
◆ setInput() [1/2]
virtual void Cpl::Text::Frame::StringDecoder::setInput |
( |
const char * |
inputSoruce, |
|
|
int |
sizeInBytesOfSource |
|
) |
| |
|
virtualnoexcept |
This method allows the Application/consumer to change/Set the Input source.
Note: 'sizeInBytesOfSource' does NOT include the/a null terminator
◆ setInput() [2/2]
virtual void Cpl::Text::Frame::StringDecoder::setInput |
( |
const char * |
inputSourceAsNullTerminatedString | ) |
|
|
virtualnoexcept |
This method allows the Application/consumer to change/Set the Input source.
◆ m_endPtr
const char* Cpl::Text::Frame::StringDecoder::m_endPtr |
|
protected |
From the last scan: pointer to the next character AFTER the LAST character decoded.
◆ m_eof
const char Cpl::Text::Frame::StringDecoder::m_eof |
|
protected |
◆ m_esc
const char Cpl::Text::Frame::StringDecoder::m_esc |
|
protected |
◆ m_sof
const char Cpl::Text::Frame::StringDecoder::m_sof |
|
protected |
◆ m_srcLen
int Cpl::Text::Frame::StringDecoder::m_srcLen |
|
protected |
◆ m_srcPtr
const char* Cpl::Text::Frame::StringDecoder::m_srcPtr |
|
protected |
◆ m_startPtr
const char* Cpl::Text::Frame::StringDecoder::m_startPtr |
|
protected |
From the last scan: start of the data being scanned.
The documentation for this class was generated from the following file: