1#ifndef Cpl_Text_Frame_AsciiDecoder_h_
2#define Cpl_Text_Frame_AsciiDecoder_h_
65 AsciiDecoder(
char startOfFrame,
char endOfFrame,
char escapeChar,
bool restrict=
true,
Cpl::Io::Input* inputSource=0,
bool blocking =
true )
67 ,
m_sof( startOfFrame )
This concrete template class provide a basic implementation of the Frame::Decoder interface that uses...
Definition AsciiDecoder.h:39
bool isEscapeChar() noexcept
See Cpl::Text::Frame::Decoder_.
Definition AsciiDecoder.h:83
bool isStartOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Definition AsciiDecoder.h:77
bool isEofOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Definition AsciiDecoder.h:80
const char m_sof
SOF character.
Definition AsciiDecoder.h:42
const char m_eof
EOF character.
Definition AsciiDecoder.h:45
const char m_esc
Escape character.
Definition AsciiDecoder.h:48
char m_buffer[BUFSIZE]
Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to ...
Definition AsciiDecoder.h:54
bool isLegalCharacter() noexcept
See Cpl::Text::Frame::Decoder_.
Definition AsciiDecoder.h:86
const bool m_restricted
Remember printable ASCII characters ONLY option.
Definition AsciiDecoder.h:51
AsciiDecoder(char startOfFrame, char endOfFrame, char escapeChar, bool restrict=true, Cpl::Io::Input *inputSource=0, bool blocking=true)
Constructor.
Definition AsciiDecoder.h:65
char * m_dataPtr
Pointer to the next unprocessed character in my raw input buffer.
Definition Decoder_.h:86
This partially concrete class defines an interface a Text "Decoder" that has a Cpl::Io::Input stream ...
Definition StreamDecoder.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20