GM6000 Digital Heater Controller Branch: main
SDX-1330
StringDecoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_StringDecoder_h_
2#define Cpl_Text_Frame_StringDecoder_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#include "Cpl/Text/String.h"
18
19
20///
21namespace Cpl {
22///
23namespace Text {
24///
25namespace Frame {
26
27
28
29/** This concrete class defines an interface a Text "Decoder" that
30 accepts a null terminated string as its input source. See
31 Cpl::Text::Frame::Decoder for details on what is a decoder.
32 */
33class StringDecoder : public Decoder_
34{
35protected:
36 /// From the last scan: start of the data being scanned
37 const char* m_startPtr;
38
39 /// From the last scan: pointer to the next character AFTER the LAST character decoded
40 const char* m_endPtr;
41
42 /// Input source
43 const char* m_srcPtr;
44
45 /// Input source length
47
48 /// SOF character
49 const char m_sof;
50
51 /// EOF character
52 const char m_eof;
53
54 /// Escape character
55 const char m_esc;
56
57
58
59public:
60 /** Constructor. The optional 'inputSource' argument points to the raw
61 frame data to be decoded. If 'inputSource' is not set at construction
62 time, it MUST be set BEFORE scan() is called or a fatal error will be
63 generated.
64
65 NOTE: Once scan() has be called the 'inputSouce' is considered to be
66 consumed and the Application must make a call to setInput()
67 before calling scan() again (if not, the scan() call will fail
68 - i.e. return false - with an end-of-input error).
69 */
70 StringDecoder( char startOfFrame, char endOfFrame, char escapeChar, const char* inputSourceAsNullTerminatedString = 0 );
71
72
73
74public:
75 /** This method allows the Application/consumer to change/Set the Input
76 source.
77 */
78 virtual void setInput( const char* inputSourceAsNullTerminatedString ) noexcept;
79
80 /** This method allows the Application/consumer to change/Set the Input
81 source. Note: 'sizeInBytesOfSource' does NOT include the/a null
82 terminator
83 */
84 virtual void setInput( const char* inputSoruce, int sizeInBytesOfSource ) noexcept;
85
86 /** This method return a pointer to the next character AFTER the LAST character
87 decoded. The value returned from this method is ONLY valid after a
88 call to scan() and BEFORE a subsequent call to scan(), oobRead(), or
89 setInput().
90 */
91 virtual const char* getRemainder() const noexcept;
92
93
94
95public:
96 /// See Cpl::Text::Frame::Decoder
97 bool scan( size_t maxSizeOfFrame, char* frame, size_t& frameSize ) noexcept;
98
99
100
101protected:
102 /// See Cpl::Text::Frame::Decoder_
103 bool isStartOfFrame() noexcept;
104
105 /// See Cpl::Text::Frame::Decoder_
106 bool isEofOfFrame() noexcept;
107
108 /// See Cpl::Text::Frame::Decoder_
109 bool isEscapeChar() noexcept;
110
111 /// See Cpl::Text::Frame::Decoder_
112 bool isLegalCharacter() noexcept;
113
114
115protected:
116 /// See Cpl::Text::Frame::Decoder_
117 bool read( void* buffer, int numBytes, int& bytesRead );
118
119};
120
121
122
123
124}; // end namespaces
125};
126};
127#endif // end header latch
This private partially concrete class implements the basic/common logic for a frame decoder.
Definition Decoder_.h:33
This concrete class defines an interface a Text "Decoder" that accepts a null terminated string as it...
Definition StringDecoder.h:34
const char m_eof
EOF character.
Definition StringDecoder.h:52
bool isLegalCharacter() noexcept
See Cpl::Text::Frame::Decoder_.
const char m_esc
Escape character.
Definition StringDecoder.h:55
virtual void setInput(const char *inputSourceAsNullTerminatedString) noexcept
This method allows the Application/consumer to change/Set the Input source.
const char m_sof
SOF character.
Definition StringDecoder.h:49
const char * m_endPtr
From the last scan: pointer to the next character AFTER the LAST character decoded.
Definition StringDecoder.h:40
int m_srcLen
Input source length.
Definition StringDecoder.h:46
virtual void setInput(const char *inputSoruce, int sizeInBytesOfSource) noexcept
This method allows the Application/consumer to change/Set the Input source.
const char * m_srcPtr
Input source.
Definition StringDecoder.h:43
StringDecoder(char startOfFrame, char endOfFrame, char escapeChar, const char *inputSourceAsNullTerminatedString=0)
Constructor.
virtual const char * getRemainder() const noexcept
This method return a pointer to the next character AFTER the LAST character decoded.
bool read(void *buffer, int numBytes, int &bytesRead)
See Cpl::Text::Frame::Decoder_.
bool isEofOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
const char * m_startPtr
From the last scan: start of the data being scanned.
Definition StringDecoder.h:37
bool isEscapeChar() noexcept
See Cpl::Text::Frame::Decoder_.
bool scan(size_t maxSizeOfFrame, char *frame, size_t &frameSize) noexcept
See Cpl::Text::Frame::Decoder.
bool isStartOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20