![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This Private Namespace partially concrete class implements common/helper method for supporting the Encoder API. More...
This Private Namespace partially concrete class implements common/helper method for supporting the Encoder API.
There is no checking/enforcement of the content of the Frame (e.g. it will accept non-ASCII character) except for the SOF, EOF, and ESC characters.
#include <Encoder_.h>
Public Member Functions | |
bool | startFrame (void) noexcept |
See Cpl::Text::Frame::Encoder. | |
bool | output (char src) noexcept |
See Cpl::Text::Frame::Encoder. | |
bool | output (const char *src) noexcept |
See Cpl::Text::Frame::Encoder. | |
bool | output (const char *src, size_t numBytes) noexcept |
See Cpl::Text::Frame::Encoder. | |
bool | endFrame (void) noexcept |
See Cpl::Text::Frame::Encoder. | |
![]() | |
virtual | ~Encoder () |
Virtual Destructor. | |
Protected Member Functions | |
Encoder_ (char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true) | |
Constructor. | |
virtual bool | start (char src) noexcept=0 |
Helper method - implemented by the child class. | |
virtual bool | start () noexcept=0 |
Helper method - implemented by the child class. | |
virtual bool | append (char src) noexcept=0 |
Helper method - implemented by the child class. | |
virtual char | encodeChar (char charToBeEscaped) |
Returns the encoded/escaped value for the specified special character. | |
Protected Attributes | |
bool | m_inFrame |
Output/Frame state. | |
const char | m_sof |
SOF character. | |
const char | m_eof |
EOF character. | |
const char | m_esc |
Escape character. | |
const bool | m_appendNewline |
Remember my newline option. | |
|
protected |
Constructor.
The 'appendNewline' argument when set to true will append a newline character to the output stream AFTER the EOF character (this can make for more human readable output stream).
NOTES:
o If 'startOfFrame' is '\0', then Encoder will begin the frame WITHOUT inserting a SOF character. This is useful when there application desires/has multiple start-of-frame characters for a given frame. o If 'escapeChar' is '\0', then Encoder will NOT escape any characters - buyers beware when using this feature!
|
protectedpure virtualnoexcept |
Helper method - implemented by the child class.
Implemented in Cpl::Text::Frame::BlockEncoder, Cpl::Text::Frame::StreamEncoder, and Cpl::Text::Frame::StringEncoder.
|
protectedvirtual |
Returns the encoded/escaped value for the specified special character.
The default implementation simply returns 'charToBeEscaped'
|
virtualnoexcept |
See Cpl::Text::Frame::Encoder.
Implements Cpl::Text::Frame::Encoder.
|
virtualnoexcept |
See Cpl::Text::Frame::Encoder.
Implements Cpl::Text::Frame::Encoder.
|
virtualnoexcept |
See Cpl::Text::Frame::Encoder.
Implements Cpl::Text::Frame::Encoder.
|
virtualnoexcept |
See Cpl::Text::Frame::Encoder.
Implements Cpl::Text::Frame::Encoder.
|
protectedpure virtualnoexcept |
Helper method - implemented by the child class.
Implemented in Cpl::Text::Frame::BlockEncoder, Cpl::Text::Frame::StreamEncoder, and Cpl::Text::Frame::StringEncoder.
|
protectedpure virtualnoexcept |
Helper method - implemented by the child class.
Implemented in Cpl::Text::Frame::BlockEncoder, Cpl::Text::Frame::StreamEncoder, and Cpl::Text::Frame::StringEncoder.
|
virtualnoexcept |
See Cpl::Text::Frame::Encoder.
Implements Cpl::Text::Frame::Encoder.
|
protected |
Remember my newline option.
|
protected |
EOF character.
|
protected |
Escape character.
|
protected |
Output/Frame state.
|
protected |
SOF character.