GM6000 Digital Heater Controller Branch: main
SDX-1330
Encoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_Encoder_h_
2#define Cpl_Text_Frame_Encoder_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
16#include <stdlib.h>
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23///
24namespace Frame {
25
26
27
28/** This class defines an interface for 'transmitted' (encoding) a frame. What
29 is a frame ? See the Decoder API for the detailed answer to this question.
30 The Encoder interface will consume a raw sequence of characters and
31 properly insert (when necessary) the framing characters to construct a
32 valid frame. Below are some examples some framed sequences of characters:
33 <pre>
34
35 Given:
36 SOF:= '.'
37 EOF:= ';'
38 ESC:= '~'
39
40
41 Raw Stream Encoded Sequence(s)
42 ----------- --------------------
43 "abcde" ".abcde;"
44 "a" ".a;"
45 "" ".;"
46 "a;bcd" ";a~;bcd;"
47 "~" ".~~;"
48 ".abc" "..abc;"
49
50
51 Notes:
52 o The quotes (") in the above example are NOT part of the frame
53 and/or character sequences - the quotes are only used to
54 illustrate sets of characters.
55 o The SOF character does not need to be escaped within a frame
56 because once a SOF has been found - the SOF character is NOT
57 looked/scanned for until after an EOF character has been
58 detected. Escaping an SOF character within a frame will
59 behave as expected, i.e. same behavior/semantics as escaping
60 the EOF character.
61 </pre>
62
63 */
65{
66public:
67 /** Begins the frame. The method will return false if there an
68 error occurred while writing to the output destination; else true is
69 returned. If this method is called twice - without an intervening
70 call to endFrame() - a Fatal error is generated
71 */
72 virtual bool startFrame( void ) noexcept = 0;
73
74 /** Outputs the single character to the output destination. The method
75 will return false if there an error occurred while writing to the
76 output destination; else true is returned. If this method is called
77 without a previous call to startFrame(), i.e. the frame has NOT been
78 started, a Fatal error is generated
79 */
80 virtual bool output( char src ) noexcept = 0;
81
82 /** Outputs the null terminated string to the output destination. The
83 method will return false if there an error occurred while writing to
84 the output destination; else true is returned. If this method is
85 called without a previous call to startFrame(), i.e. the frame has
86 NOT been started, a Fatal error is generated
87 */
88 virtual bool output( const char* src ) noexcept = 0;
89
90 /** Outputs 'numBytes' of data (from 'src') to the output destination.
91 The method will return false if there an error occurred while
92 writing to the output destination; else true is returned. If this
93 method is called without a previous call to startFrame(), i.e. the
94 frame has NOT been started, a Fatal error is generated
95 */
96 virtual bool output( const char* src, size_t numBytes ) noexcept = 0;
97
98 /** Ends the frame. The method will return false if there an error
99 occurred while writing to the output destination; else true is
100 returned. If this method is called twice - without an intervening
101 call to startFrame() - a Fatal error is generated
102 */
103 virtual bool endFrame( void ) noexcept = 0;
104
105
106public:
107 /// Virtual Destructor
108 virtual ~Encoder() {}
109};
110
111
112
113
114}; // end namespaces
115};
116};
117#endif // end header latch
This class defines an interface for 'transmitted' (encoding) a frame.
Definition Encoder.h:65
virtual bool output(const char *src, size_t numBytes) noexcept=0
Outputs 'numBytes' of data (from 'src') to the output destination.
virtual bool endFrame(void) noexcept=0
Ends the frame.
virtual bool startFrame(void) noexcept=0
Begins the frame.
virtual bool output(char src) noexcept=0
Outputs the single character to the output destination.
virtual bool output(const char *src) noexcept=0
Outputs the null terminated string to the output destination.
virtual ~Encoder()
Virtual Destructor.
Definition Encoder.h:108
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20