GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
Cpl::Text::Frame::AsciiDecoder< BUFSIZE > Class Template Reference

This concrete template class provide a basic implementation of the Frame::Decoder interface that uses Cpl::Io::Input stream as the input source. More...

Detailed Description

template<int BUFSIZE>
class Cpl::Text::Frame::AsciiDecoder< BUFSIZE >

This concrete template class provide a basic implementation of the Frame::Decoder interface that uses Cpl::Io::Input stream as the input source.

In addition, this class only accepts ASCII characters within the the frame.

Template args: BUFSIZE Size of the internal buffer to use when reading raw characters from the Input stream.

#include <AsciiDecoder.h>

Inheritance diagram for Cpl::Text::Frame::AsciiDecoder< BUFSIZE >:
[legend]
Collaboration diagram for Cpl::Text::Frame::AsciiDecoder< BUFSIZE >:
[legend]

Public Member Functions

 AsciiDecoder (char startOfFrame, char endOfFrame, char escapeChar, bool restrict=true, Cpl::Io::Input *inputSource=0, bool blocking=true)
 Constructor.
 
- Public Member Functions inherited from Cpl::Text::Frame::StreamDecoder
void setInput (Cpl::Io::Input &newInFd) noexcept
 This method allows the Application/consumer to change/Set the Input Stream handle.
 
- Public Member Functions inherited from Cpl::Text::Frame::Decoder_
 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.
 
- Public Member Functions inherited from 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_.
 
- Protected Member Functions inherited from Cpl::Text::Frame::StreamDecoder
 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_.
 
- Protected Member Functions inherited from 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

const char m_sof
 SOF character.
 
const char m_eof
 EOF character.
 
const char m_esc
 Escape character.
 
const bool m_restricted
 Remember printable ASCII characters ONLY option.
 
char m_buffer [BUFSIZE]
 Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())
 
- Protected Attributes inherited from Cpl::Text::Frame::StreamDecoder
Cpl::Io::Input *volatile m_srcPtr
 Input stream.
 
bool m_blocking
 Block semantics.
 
- Protected Attributes inherited from Cpl::Text::Frame::Decoder_
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.
 

Constructor & Destructor Documentation

◆ AsciiDecoder()

template<int BUFSIZE>
Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::AsciiDecoder ( char  startOfFrame,
char  endOfFrame,
char  escapeChar,
bool  restrict = true,
Cpl::Io::Input inputSource = 0,
bool  blocking = true 
)
inline

Constructor.

If 'restrict' is set to true ONLY printable ASCII characters (0x20-0x7E) are accepted inside a frame. If false, then all ASCII characters (0x00-0x7F) are accepted inside a frame. When a illegal character is detected, it causes the Decoder's state machine to reset and begin searching/looking-for the next start-of-frame character.

Member Function Documentation

◆ isEofOfFrame()

template<int BUFSIZE>
bool Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::isEofOfFrame ( )
inlineprotectedvirtualnoexcept

◆ isEscapeChar()

template<int BUFSIZE>
bool Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::isEscapeChar ( )
inlineprotectedvirtualnoexcept

◆ isLegalCharacter()

template<int BUFSIZE>
bool Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::isLegalCharacter ( )
inlineprotectedvirtualnoexcept

◆ isStartOfFrame()

template<int BUFSIZE>
bool Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::isStartOfFrame ( )
inlineprotectedvirtualnoexcept

Member Data Documentation

◆ m_buffer

template<int BUFSIZE>
char Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::m_buffer[BUFSIZE]
protected

Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())

◆ m_eof

template<int BUFSIZE>
const char Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::m_eof
protected

EOF character.

◆ m_esc

template<int BUFSIZE>
const char Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::m_esc
protected

Escape character.

◆ m_restricted

template<int BUFSIZE>
const bool Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::m_restricted
protected

Remember printable ASCII characters ONLY option.

◆ m_sof

template<int BUFSIZE>
const char Cpl::Text::Frame::AsciiDecoder< BUFSIZE >::m_sof
protected

SOF character.


The documentation for this class was generated from the following file: