GM6000 Digital Heater Controller Branch: main
SDX-1330
LineDecoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_LineDecoder_h_
2#define Cpl_Text_Frame_LineDecoder_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 PRINTABLE ASCII characters
31 within the frame; AND the start-of-frame character is ANY printable ASCII;
32 AND the end-of-frame character is a newline character (`\r` or `\n`); AND
33 there is NO escape sequence since the escape sequence is need to embedded
34 EOF characters - but in this case EOF (newline) is NOT a printable ASCII
35 character -->so an escape sequence is not meaningful.
36
37 NOTE: If a non-printable ASCII character is encounter within a frame, the
38 current frame is aborted AND a newline character is required before
39 accepting/detecting a new SOF character(s).
40
41
42 Template args:
43 BUFSIZE Size of the internal buffer to use when reading raw
44 characters from the Input stream.
45 */
46template <int BUFSIZE>
48{
49protected:
50 /// Track if I have encountered an invalid character in the 'middle' of a frame
52
53 /// Remember my tabs option
55
56
57 /// Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())
58 char m_buffer[BUFSIZE];
59
60
61public:
62 /** Constructor. If the 'convertTabs' argument is set to a value OTHER
63 than a tab character, then any tab characters encounter will be
64 converted to the value of 'convertTabs'.
65 */
66 LineDecoder( Cpl::Io::Input* inputSource=0, char convertTabs = '\t', bool blocking = true )
67 :StreamDecoder( m_buffer, BUFSIZE, inputSource, blocking )
68 , m_illegal( false )
69 , m_convertTabs( convertTabs )
70 {
71 }
72
73
74protected:
75 /// See Cpl::Text::Frame::Decoder_
76 bool isStartOfFrame() noexcept
77 {
78 // Convert tabs (when feature is enabled)
79 if ( *m_dataPtr == '\t' && m_convertTabs != '\t' )
80 {
82 }
83
84 // Reset my illegal-character-in-middle-of-frame flag when encountering an newline
85 if ( isEofOfFrame() )
86 {
87 m_illegal = false;
88 }
89
90 if ( !m_illegal && *m_dataPtr >= 0x20 && *m_dataPtr <= 0x7E )
91 {
92 // Adjust my internal data pointer/len since I am NOT discarding the SOF character
93 m_dataPtr--;
94 m_dataLen++;
95 return true;
96 }
97
98 return false;
99 }
100
101 /// See Cpl::Text::Frame::Decoder_
102 bool isEofOfFrame() noexcept { return *m_dataPtr == 0x0A || *m_dataPtr == 0x0D; }
103
104 /// See Cpl::Text::Frame::Decoder_
105 bool isEscapeChar() noexcept { return false; }
106
107 /// See Cpl::Text::Frame::Decoder_
108 bool isLegalCharacter() noexcept
109 {
110 // Convert tabs (when feature is enabled)
111 if ( *m_dataPtr == '\t' && m_convertTabs != '\t' )
112 {
114 }
115
116 // Newline is always 'valid'
117 if ( isEofOfFrame() )
118 {
119 m_illegal = false;
120 return true;
121 }
122
123 // Reject all non printable ASCII character
124 if ( *m_dataPtr > 0x7E || *m_dataPtr < 0x20 )
125 {
126 m_illegal = true;
127 return false;
128 }
129
130 // If I get here, the character is valid
131 return true;
132 }
133};
134
135
136
137
138
139}; // end namespaces
140};
141};
142#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
char * m_dataPtr
Pointer to the next unprocessed character in my raw input buffer.
Definition Decoder_.h:86
int m_dataLen
Current number of characters remaining in my raw input buffer.
Definition Decoder_.h:83
This concrete template class provide a basic implementation of the Frame::Decoder interface that uses...
Definition LineDecoder.h:48
bool isEscapeChar() noexcept
See Cpl::Text::Frame::Decoder_.
Definition LineDecoder.h:105
LineDecoder(Cpl::Io::Input *inputSource=0, char convertTabs='\t', bool blocking=true)
Constructor.
Definition LineDecoder.h:66
char m_convertTabs
Remember my tabs option.
Definition LineDecoder.h:54
bool m_illegal
Track if I have encountered an invalid character in the 'middle' of a frame.
Definition LineDecoder.h:51
char m_buffer[BUFSIZE]
Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to ...
Definition LineDecoder.h:58
bool isEofOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Definition LineDecoder.h:102
bool isStartOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Definition LineDecoder.h:76
bool isLegalCharacter() noexcept
See Cpl::Text::Frame::Decoder_.
Definition LineDecoder.h:108
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