GM6000 Digital Heater Controller Branch: main
SDX-1330
StringEncoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_StringEncoder_h_
2#define Cpl_Text_Frame_StringEncoder_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
21///
22namespace Cpl {
23///
24namespace Text {
25///
26namespace Frame {
27
28
29
30/** This concrete class implements the Encoder API where the Output destination
31 is a Cpl::Text::String. There is no checking/enforcement of the content of
32 the Frame (e.g. it will accept non-ASCII character) except for the SOF, EOF,
33 and ESC characters.
34 */
35class StringEncoder : public Encoder_
36{
37protected:
38 /// Output stream
40
41 /// Append flag
43
44
45public:
46 /** Constructor. The 'appendNewline' argument when set to true will
47 append a newline character to the output stream AFTER the EOF
48 character (this can make for more human readable output stream). The
49 'appendToDst' flag when true will not clear contents of 'dst' on
50 the start-of-frame - rather it will ALWAYS append all output to 'dst'
51
52 NOTES:
53
54 o If 'startOfFrame' is '\0', then Encoder will begin the
55 frame WITHOUT inserting a SOF character. This is useful
56 when there application desires/has multiple start-of-frame
57 characters for a given frame.
58
59 o If 'escapeChar' is '\0', then Encoder will NOT escape any
60 characters - buyers beware when using this feature!
61 */
62 StringEncoder( Cpl::Text::String& dst, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true, bool appendToDst=false );
63
64public:
65 /// Returns a reference to the String that holds the encoded frame. The contents of the buffer depends on the state of frame being built.
67
68
69protected:
70 /// See Cpl::Text::Frame::Encoder_
71 bool start( char src ) noexcept;
72
73 /// See Cpl::Text::Frame::Encoder_
74 bool start() noexcept;
75
76 /// See Cpl::Text::Frame::Encoder_
77 bool append( char src ) noexcept;
78
79};
80
81
82
83
84}; // end namespaces
85};
86};
87#endif // end header latch
This Private Namespace partially concrete class implements common/helper method for supporting the En...
Definition Encoder_.h:35
This concrete class implements the Encoder API where the Output destination is a Cpl::Text::String.
Definition StringEncoder.h:36
bool start(char src) noexcept
See Cpl::Text::Frame::Encoder_.
Cpl::Text::String & m_dst
Output stream.
Definition StringEncoder.h:39
bool append(char src) noexcept
See Cpl::Text::Frame::Encoder_.
StringEncoder(Cpl::Text::String &dst, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true, bool appendToDst=false)
Constructor.
bool m_append
Append flag.
Definition StringEncoder.h:42
Cpl::Text::String & getFramedOutput()
Returns a reference to the String that holds the encoded frame. The contents of the buffer depends on...
bool start() noexcept
See Cpl::Text::Frame::Encoder_.
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20