GM6000 Digital Heater Controller Branch: main
SDX-1330
BlockEncoder.h
Go to the documentation of this file.
1#ifndef Cpl_Text_Frame_BlockEncoder_h_
2#define Cpl_Text_Frame_BlockEncoder_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 extends the StreamDecoder implementation to
31 be more efficient with respect to outputting data to a Stream. The encoded
32 output data is temporarily cached in RAM and then written to the Stream.
33 */
35{
36public:
37 /** Constructor. The Output Stream is not required to be specified at
38 construction time (i.e. 'dstPtr' can be zero). However, the encoder
39 must have a valid Output Stream handle BEFORE the start() method is called.
40 When 'appendNewline' argument is set to true - the encoder will append a newline
41 character to the output stream AFTER the EOF character (this can make
42 for more human readable output stream).
43
44 NOTE: If 'startOfFrame' is '\0', then Encoder will begin the
45 frame WITHOUT inserting a SOF character. This is useful
46 when there application desires/has multiple start-of-frame
47 characters for a given frame.
48 */
49 BlockEncoder( void* blockBuffer, size_t blockSizeInBytes, Cpl::Io::Output* dstPtr, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true );
50
51public:
52 /// See Cpl::Text::Frame::Encoder_
53 bool endFrame() noexcept;
54
55protected:
56 /// See Cpl::Text::Frame::Encoder_
57 bool start( char src ) noexcept;
58
59 /// See Cpl::Text::Frame::Encoder_
60 bool start() noexcept;
61
62 /// See Cpl::Text::Frame::Encoder_
63 bool append( char src ) noexcept;
64
65 /// Helper method
66 bool appendToBlock( char src ) noexcept;
67
68protected:
69 /// Point to the client supplied buffer for a block
70 uint8_t* m_buffer;
71
72 /// Size, in bytes, of the block buffer
74
75 /// Number of bytes currently stored in the block buffer
77};
78
79
80
81
82}; // end namespaces
83};
84};
85#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 concrete class implements extends the StreamDecoder implementation to be more efficient with res...
Definition BlockEncoder.h:35
BlockEncoder(void *blockBuffer, size_t blockSizeInBytes, Cpl::Io::Output *dstPtr, char startOfFrame, char endOfFrame, char escapeChar, bool appendNewline=true)
Constructor.
size_t m_bufferCount
Number of bytes currently stored in the block buffer.
Definition BlockEncoder.h:76
bool appendToBlock(char src) noexcept
Helper method.
bool endFrame() noexcept
See Cpl::Text::Frame::Encoder_.
bool append(char src) noexcept
See Cpl::Text::Frame::Encoder_.
size_t m_bufferSize
Size, in bytes, of the block buffer.
Definition BlockEncoder.h:73
uint8_t * m_buffer
Point to the client supplied buffer for a block.
Definition BlockEncoder.h:70
bool start() noexcept
See Cpl::Text::Frame::Encoder_.
This concrete class implements the Encoder API where the Output destination is a Cpl::Io::Output stre...
Definition StreamEncoder.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20