GM6000 Digital Heater Controller Branch: main
SDX-1330
StreamEncoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_StreamEncoder_h_
2#define Cpl_Text_Frame_StreamEncoder_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/Io/Output.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::Io::Output stream. There is no checking/enforcement of the
32 content of the Frame (e.g. it will accept non-ASCII character) except
33 for the SOF, EOF, and ESC characters.
34 */
35class StreamEncoder : public Encoder_
36{
37protected:
38 /// Output stream
40
41
42
43
44public:
45 /** Constructor. The Output Stream is not required to be specified at
46 construction time (i.e. 'dstPtr' can be zero). However, the encoder
47 must have a valid Output Stream handle BEFORE the start() method is called.
48 When 'appendNewline' argument is set to true - encoder will append a newline
49 character to the output stream AFTER the EOF character (this can make
50 for more human readable output stream).
51
52 NOTE: If 'startOfFrame' is '\0', then Encoder will begin the
53 frame WITHOUT inserting a SOF character. This is useful
54 when there application desires/has multiple start-of-frame
55 characters for a given frame.
56 */
57 StreamEncoder( Cpl::Io::Output* dstPtr, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true );
58
59public:
60 /// Allow the consumer to change/Set the Output stream handle. Note: No guarantees on what happens if this method is called in the 'middle of a frame'
61 void setOutput( Cpl::Io::Output& newOutfd ) noexcept;
62
63
64protected:
65 /// See Cpl::Text::Frame::Encoder_
66 bool start( char src ) noexcept;
67
68 /// See Cpl::Text::Frame::Encoder_
69 bool start() noexcept;
70
71 /// See Cpl::Text::Frame::Encoder_
72 bool append( char src ) noexcept;
73
74};
75
76
77
78
79}; // end namespaces
80};
81};
82#endif // end header latch
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
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::Io::Output stre...
Definition StreamEncoder.h:36
bool start() noexcept
See Cpl::Text::Frame::Encoder_.
bool start(char src) noexcept
See Cpl::Text::Frame::Encoder_.
StreamEncoder(Cpl::Io::Output *dstPtr, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true)
Constructor.
void setOutput(Cpl::Io::Output &newOutfd) noexcept
Allow the consumer to change/Set the Output stream handle. Note: No guarantees on what happens if thi...
Cpl::Io::Output * m_dstPtr
Output stream.
Definition StreamEncoder.h:39
bool append(char src) noexcept
See Cpl::Text::Frame::Encoder_.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20