![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class is a "Maker" that assembles the objects needed for TPipe. More...
This concrete class is a "Maker" that assembles the objects needed for TPipe.
#include <Maker.h>
Public Member Functions | |
Maker (Cpl::Container::Map< RxFrameHandlerApi > &frameHandlerList, size_t maxRxFrameSize, const char *verbDelimiters=" ", char startOfFrame='^', char endOfFrame=';', char escapeChar='`') | |
Constructor. | |
Pipe & | getPipeProcessor (void) noexcept |
Returns a reference to the TPipe processor. | |
operator Pipe & () | |
Cast-operator: Short-hand for getPipeProcessor() | |
![]() | |
void | setInput (Cpl::Io::Input &newInFd) noexcept |
This method allows the Application/consumer to change/Set the Input Stream handle. | |
![]() | |
Decoder_ (char rawInputBuffer[], size_t sizeOfRawInputBuffer) | |
Constructor. | |
bool | scan (size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept |
See Cpl::Text::Frame::Decoder. | |
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. | |
Protected Member Functions | |
bool | isStartOfFrame () noexcept |
See Cpl::Text::Frame::Decoder_. | |
bool | isEofOfFrame () noexcept |
See Cpl::Text::Frame::Decoder_. | |
bool | isEscapeChar () noexcept |
See Cpl::Text::Frame::Decoder_. | |
bool | isLegalCharacter () noexcept |
See Cpl::Text::Frame::Decoder_. | |
![]() | |
StreamDecoder (char rawInputBuffer[], size_t sizeOfRawInputBuffer, Cpl::Io::Input *inputSource=0, bool blocking=true) | |
Constructor. | |
bool | read (void *buffer, int numBytes, int &bytesRead) |
See Cpl::Text::Frame::Decoder_. | |
![]() | |
virtual char | decodeEscapedChar (char escapedChar) |
Returns the un-encoded value for the specified escaped character. | |
virtual void | initializeFrame () noexcept |
Helper method to initialize frame processing. | |
Protected Attributes | |
Cpl::Text::Frame::StreamEncoder | m_framer |
Framer for the output. | |
Pipe | m_processor |
Pipe Processor. | |
char | m_workBuffer [OPTION_DRIVER_TPIPE_RAW_INPUT_SIZE] |
Work buffer for raw incoming data (is not a null terminated string) | |
const char | m_sof |
SOF character. | |
const char | m_eof |
EOF character. | |
const char | m_esc |
Escape character. | |
![]() | |
Cpl::Io::Input *volatile | m_srcPtr |
Input stream. | |
bool | m_blocking |
Block semantics. | |
![]() | |
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. | |
Driver::TPipe::Maker::Maker | ( | Cpl::Container::Map< RxFrameHandlerApi > & | frameHandlerList, |
size_t | maxRxFrameSize, | ||
const char * | verbDelimiters = " " , |
||
char | startOfFrame = '^' , |
||
char | endOfFrame = ';' , |
||
char | escapeChar = '`' |
||
) |
Constructor.
frameHandlerList | The set of received frame handlers. Note: frame handler's self register |
maxRxFrameSize | The size, in bytes, of the buffer used to hold an incoming Frame. |
verbDelimiters | The delimiter characters used to separate the command verb from the rest of commands tokens/data. This string must stay in scope for life of the Maker instance. |
startOfFrame | Framing: Start-of-Frame character |
endOfFrame | Framing: End-of-Frame character |
escapeChar | Framing: Escape character |
|
inlinenoexcept |
Returns a reference to the TPipe processor.
|
protectedvirtualnoexcept |
See Cpl::Text::Frame::Decoder_.
Implements Cpl::Text::Frame::Decoder_.
|
protectedvirtualnoexcept |
See Cpl::Text::Frame::Decoder_.
Implements Cpl::Text::Frame::Decoder_.
|
protectedvirtualnoexcept |
See Cpl::Text::Frame::Decoder_.
Implements Cpl::Text::Frame::Decoder_.
|
protectedvirtualnoexcept |
See Cpl::Text::Frame::Decoder_.
Implements Cpl::Text::Frame::Decoder_.
|
inline |
Cast-operator: Short-hand for getPipeProcessor()
|
protected |
EOF character.
|
protected |
Escape character.
|
protected |
Framer for the output.
|
protected |
SOF character.
|
protected |
Work buffer for raw incoming data (is not a null terminated string)