GM6000 Digital Heater Controller Branch: main
SDX-1330
Decoder_.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_Decoder_x_h_
2#define Cpl_Text_Frame_Decoder_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///
20namespace Cpl {
21///
22namespace Text {
23///
24namespace Frame {
25
26
27
28/** This private partially concrete class implements the basic/common logic for
29 a frame decoder. A specialized subclass is required to supplied the details
30 of the decoder.
31 */
32class Decoder_ : public Decoder
33{
34public:
35 /** Constructor. The size of the rawInputBuffer determines how big of
36 'chunks' data is read from the "input source", i.e. it is a working
37 buffer and does NOT have to be the size of the maximum possible input
38 frame.
39 */
40 Decoder_( char rawInputBuffer[], size_t sizeOfRawInputBuffer );
41
42
43public:
44 /// See Cpl::Text::Frame::Decoder
45 bool scan( size_t maxSizeOfFrame, char* frame, size_t& frameSize ) noexcept;
46
47 /// See Cpl::Text::Frame::Decoder
48 bool scan( size_t maxSizeOfFrame, char* frame, size_t& frameSize, bool& isEof ) noexcept;
49
50 /// See Cpl::Text::Frame::Decoder
51 bool oobRead( void* buffer, int numBytes, int& bytesRead ) noexcept;
52
53protected:
54 /// Returns true if at start-of-frame
55 virtual bool isStartOfFrame() noexcept = 0;
56
57 /// Returns true if at end-of-frame
58 virtual bool isEofOfFrame() noexcept = 0;
59
60 /// Returns true if the start of the start of a escape sequence has been detected
61 virtual bool isEscapeChar() noexcept = 0;
62
63 /// Returns true if the current character is a legal/valid within a frame
64 virtual bool isLegalCharacter() noexcept = 0;
65
66 /** Attempts to read the specified number of bytes from the "input source"
67 in the supplied buffer. The actual number of bytes read is returned via
68 'bytesRead'. Returns true if successful, or false if End-of-Input
69 was encountered.
70 */
71 virtual bool read( void* buffer, int numBytes, int& bytesRead ) = 0;
72
73 /** Returns the un-encoded value for the specified escaped character. The
74 default implementation simply returns 'escapedChar'
75 */
76 virtual char decodeEscapedChar( char escapedChar );
77
78 /// Helper method to initialize frame processing
79 virtual void initializeFrame() noexcept;
80
81protected:
82 /// Current number of characters remaining in my raw input buffer
84
85 /// Pointer to the next unprocessed character in my raw input buffer
86 char* m_dataPtr;
87
88 /// Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to read())
89 char* m_buffer;
90
91 /// Size of my raw input buffer
92 size_t m_bufSize;
93
94 /// Flag: I am currently in a Frame
96
97 /// Flag: the next character is an escape character
99
100 /// Pointer to the next decoded frame character
102
103 /// Number of bytes current decoded for the frame
105};
106
107
108
109
110
111}; // end namespaces
112};
113};
114#endif // end header latch
This private partially concrete class implements the basic/common logic for a frame decoder.
Definition Decoder_.h:33
virtual bool read(void *buffer, int numBytes, int &bytesRead)=0
Attempts to read the specified number of bytes from the "input source" in the supplied buffer.
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize, bool &isEof) noexcept
See Cpl::Text::Frame::Decoder.
bool m_inFrame
Flag: I am currently in a Frame.
Definition Decoder_.h:95
Decoder_(char rawInputBuffer[], size_t sizeOfRawInputBuffer)
Constructor.
char * m_dataPtr
Pointer to the next unprocessed character in my raw input buffer.
Definition Decoder_.h:86
char * m_framePtr
Pointer to the next decoded frame character.
Definition Decoder_.h:101
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept
See Cpl::Text::Frame::Decoder.
char * m_buffer
Raw input buffer for reading characters in 'chunks' from my Input stream (i.e. minimize the calls to ...
Definition Decoder_.h:89
size_t m_bufSize
Size of my raw input buffer.
Definition Decoder_.h:92
virtual bool isEofOfFrame() noexcept=0
Returns true if at end-of-frame.
bool oobRead(void *buffer, int numBytes, int &bytesRead) noexcept
See Cpl::Text::Frame::Decoder.
virtual bool isEscapeChar() noexcept=0
Returns true if the start of the start of a escape sequence has been detected.
virtual bool isStartOfFrame() noexcept=0
Returns true if at start-of-frame.
size_t m_frameSize
Number of bytes current decoded for the frame.
Definition Decoder_.h:104
bool m_escaping
Flag: the next character is an escape character.
Definition Decoder_.h:98
virtual void initializeFrame() noexcept
Helper method to initialize frame processing.
virtual char decodeEscapedChar(char escapedChar)
Returns the un-encoded value for the specified escaped character.
virtual bool isLegalCharacter() noexcept=0
Returns true if the current character is a legal/valid within a frame.
int m_dataLen
Current number of characters remaining in my raw input buffer.
Definition Decoder_.h:83
This class defines an interface for 'receiving' (decode) a frame.
Definition Decoder.h:68
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20