GM6000 Digital Heater Controller Branch: main
SDX-1330
Encoder_.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_Encoder_x_h_
2#define Cpl_Text_Frame_Encoder_x_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
20///
21namespace Cpl {
22///
23namespace Text {
24///
25namespace Frame {
26
27
28
29/** This Private Namespace partially concrete class implements common/helper
30 method for supporting the Encoder API. There is no checking/enforcement
31 of the content of the Frame (e.g. it will accept non-ASCII character)
32 except for the SOF, EOF, and ESC characters.
33 */
34class Encoder_ : public Encoder
35{
36protected:
37 /// Output/Frame state
39
40 /// SOF character
41 const char m_sof;
42
43 /// EOF character
44 const char m_eof;
45
46 /// Escape character
47 const char m_esc;
48
49 /// Remember my newline option
50 const bool m_appendNewline;
51
52
53
54protected:
55 /** Constructor. The 'appendNewline' argument when set to true will
56 append a newline character to the output stream AFTER the EOF
57 character (this can make for more human readable output stream).
58
59 NOTES:
60
61 o If 'startOfFrame' is '\0', then Encoder will begin the
62 frame WITHOUT inserting a SOF character. This is useful
63 when there application desires/has multiple start-of-frame
64 characters for a given frame.
65
66 o If 'escapeChar' is '\0', then Encoder will NOT escape any
67 characters - buyers beware when using this feature!
68 */
69 Encoder_( char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true );
70
71
72public:
73 /// See Cpl::Text::Frame::Encoder
74 bool startFrame( void ) noexcept;
75
76 /// See Cpl::Text::Frame::Encoder
77 bool output( char src ) noexcept;
78
79 /// See Cpl::Text::Frame::Encoder
80 bool output( const char* src ) noexcept;
81
82 /// See Cpl::Text::Frame::Encoder
83 bool output( const char* src, size_t numBytes ) noexcept;
84
85 /// See Cpl::Text::Frame::Encoder
86 bool endFrame( void ) noexcept;
87
88
89protected:
90 /// Helper method - implemented by the child class
91 virtual bool start( char src ) noexcept = 0;
92
93 /// Helper method - implemented by the child class
94 virtual bool start() noexcept = 0;
95
96 /// Helper method - implemented by the child class
97 virtual bool append( char src ) noexcept = 0;
98
99 /** Returns the encoded/escaped value for the specified special character.
100 The default implementation simply returns 'charToBeEscaped'
101 */
102 virtual char encodeChar( char charToBeEscaped );
103};
104
105
106
107
108}; // end namespaces
109};
110};
111#endif // end header latch
This Private Namespace partially concrete class implements common/helper method for supporting the En...
Definition Encoder_.h:35
Encoder_(char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true)
Constructor.
const char m_sof
SOF character.
Definition Encoder_.h:41
virtual bool start(char src) noexcept=0
Helper method - implemented by the child class.
bool m_inFrame
Output/Frame state.
Definition Encoder_.h:38
const char m_esc
Escape character.
Definition Encoder_.h:47
bool output(char src) noexcept
See Cpl::Text::Frame::Encoder.
bool output(const char *src, size_t numBytes) noexcept
See Cpl::Text::Frame::Encoder.
bool output(const char *src) noexcept
See Cpl::Text::Frame::Encoder.
const bool m_appendNewline
Remember my newline option.
Definition Encoder_.h:50
virtual bool start() noexcept=0
Helper method - implemented by the child class.
virtual char encodeChar(char charToBeEscaped)
Returns the encoded/escaped value for the specified special character.
bool startFrame(void) noexcept
See Cpl::Text::Frame::Encoder.
bool endFrame(void) noexcept
See Cpl::Text::Frame::Encoder.
virtual bool append(char src) noexcept=0
Helper method - implemented by the child class.
const char m_eof
EOF character.
Definition Encoder_.h:44
This class defines an interface for 'transmitted' (encoding) a frame.
Definition Encoder.h:65
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20