GM6000 Digital Heater Controller Branch: main
SDX-1330
AsciiDecoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_AsciiDecoder_h_
2#define Cpl_Text_Frame_AsciiDecoder_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23///
24namespace Frame {
25
26
27
28/** This concrete template class provide a basic implementation of the
29 Frame::Decoder interface that uses Cpl::Io::Input stream as the input
30 source. In addition, this class only accepts ASCII characters within the
31 the frame.
32
33 Template args:
34 BUFSIZE Size of the internal buffer to use when reading raw
35 characters from the Input stream.
36 */
37template <int BUFSIZE>
39{
40protected:
41 /// SOF character
42 const char m_sof;
43
44 /// EOF character
45 const char m_eof;
46
47 /// Escape character
48 const char m_esc;
49
50 /// Remember printable ASCII characters ONLY option
51 const bool m_restricted;
52
53 /// Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())
54 char m_buffer[BUFSIZE];
55
56
57public:
58 /** Constructor. If 'restrict' is set to true ONLY printable ASCII
59 characters (0x20-0x7E) are accepted inside a frame. If false, then
60 all ASCII characters (0x00-0x7F) are accepted inside a frame. When
61 a illegal character is detected, it causes the Decoder's state machine
62 to reset and begin searching/looking-for the next start-of-frame
63 character.
64 */
65 AsciiDecoder( char startOfFrame, char endOfFrame, char escapeChar, bool restrict=true, Cpl::Io::Input* inputSource=0, bool blocking = true )
66 :StreamDecoder( m_buffer, BUFSIZE, inputSource, blocking )
67 , m_sof( startOfFrame )
68 , m_eof( endOfFrame )
69 , m_esc( escapeChar )
70 , m_restricted( restrict )
71 {
72 }
73
74
75protected:
76 /// See Cpl::Text::Frame::Decoder_
77 bool isStartOfFrame() noexcept { return *m_dataPtr == m_sof; }
78
79 /// See Cpl::Text::Frame::Decoder_
80 bool isEofOfFrame() noexcept { return *m_dataPtr == m_eof; }
81
82 /// See Cpl::Text::Frame::Decoder_
83 bool isEscapeChar() noexcept { return *m_dataPtr == m_esc; }
84
85 /// See Cpl::Text::Frame::Decoder_
86 bool isLegalCharacter() noexcept { return *m_dataPtr < 0x80 && ( !m_restricted || ( *m_dataPtr <= 0x7E && *m_dataPtr >= 0x20 ) ); }
87};
88
89
90
91
92
93}; // end namespaces
94};
95};
96#endif // end header latch
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
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