GM6000 Digital Heater Controller Branch: main
SDX-1330
Decoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_Decoder_h_
2#define Cpl_Text_Frame_Decoder_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 'receiving' (decode) a frame. What is
29 a frame? A Frame is sequence of characters that has a unique
30 start-of-character (SOF) and a unique end-of-frame character (EOF). The
31 concept of an escape (ESC) character is also defined to support the content
32 of a frame containing SOF/EOF characters. Below are some examples some
33 framed sequences of characters:
34 <pre>
35
36 Given:
37 SOF:= '.'
38 EOF:= ';'
39 ESC:= '~'
40
41
42 Raw Stream Decoded Sequence(s)
43 ----------- --------------------
44 ".abcde;" "abcde"
45 ".a;.b;.;" "a", "b", ""
46 ".a;b.c;" "a", "c"
47 ".a~;bcd" "a;bcd"
48 ".~~;" "~"
49 ".a.bcd;" "a.bcd"
50 ".a~.bcd;" "a.bcd"
51
52
53 Notes:
54 o The quotes (") in the above example are NOT part of the frame
55 and/or character sequences - the quotes are only used to
56 illustrate sets of characters.
57 o The SOF character does not need to be escaped within a frame
58 because once a SOF has been found - the SOF character is NOT
59 looked/scanned for until after an EOF character has been
60 detected. Escaping an SOF character within a frame will
61 behave as expected, i.e. same behavior/semantics as escaping
62 the EOF character.
63 </pre>
64
65
66 */
68{
69public:
70 /** This method reads from an Input source (which is defined/provided by
71 the concrete implementation) until a valid frame is found or an error
72 occurred. If a valid frame was found, true will be returned and the
73 frame will be stored 'frame'. The length, in bytes, of the frame found
74 is returned via 'frameSize'. False is returned if a error was
75 encountered while reading the Input source.
76
77 CAUTION: The returned frame is NOT a null terminated string - it is
78 ONLY a buffer with 'frameSize' number of characters stored
79 in it.
80 */
81 virtual bool scan( size_t maxSizeOfFrame, char* frame, size_t& frameSize ) noexcept = 0;
82
83 /** This method is similar to the above scan() method, except that it does
84 NOT block till a 'frame' has found, instead it indicates when a 'frame'
85 has been found by setting the 'isEof' flag to true.
86
87 False is returned if a error was encountered while reading the Input
88 source.
89
90 CAUTION: The returned frame is NOT a null terminated string - it is
91 ONLY a buffer with 'frameSize' number of characters stored
92 in it.
93 */
94 virtual bool scan( size_t maxSizeOfFrame, char* frame, size_t& frameSize, bool& isEof ) noexcept = 0;
95
96public:
97 /** This method allows 'out-of-band' reading of the input source. If the
98 scanner is in-a-frame the method return false and does nothing.
99
100 CAUTION: Most client/consumers of the decoder should never use this
101 method. This method only has meaning/usefulness when the
102 application KNOWS when the input source is NOT in a frame AND
103 that there is 'non-framed' data that can be consumed.
104
105 Attempts to read the specified number of bytes from the stream into the
106 supplied buffer. The actual number of bytes read is returned via
107 'bytesRead'. Returns true if successful, or false if End-of-Stream
108 was encountered or if the input source is in a frame.
109 */
110 virtual bool oobRead( void* buffer, int numBytes, int& bytesRead ) noexcept = 0;
111
112public:
113 /// Virtual Destructor
114 virtual ~Decoder() {}
115};
116
117
118
119
120}; // end namespaces
121};
122};
123#endif // end header latch
This class defines an interface for 'receiving' (decode) a frame.
Definition Decoder.h:68
virtual ~Decoder()
Virtual Destructor.
Definition Decoder.h:114
virtual bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize, bool &isEof) noexcept=0
This method is similar to the above scan() method, except that it does NOT block till a 'frame' has f...
virtual bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept=0
This method reads from an Input source (which is defined/provided by the concrete implementation) unt...
virtual bool oobRead(void *buffer, int numBytes, int &bytesRead) noexcept=0
This method allows 'out-of-band' reading of the input source.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20