GM6000 Digital Heater Controller Branch: main
SDX-1330
Maker.h
Go to the documentation of this file.
1#ifndef Driver_TPipe_Maker_h_
2#define Driver_TPipe_Maker_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#include "colony_config.h"
16#include "Driver/TPipe/Pipe.h"
17
18
19/** The size, in bytes, of the work buffer used to read from the input stream.
20 Note: This size does NOT limit the how large a received frame can be
21 */
22#ifndef OPTION_DRIVER_TPIPE_RAW_INPUT_SIZE
23#define OPTION_DRIVER_TPIPE_RAW_INPUT_SIZE 128
24#endif
25
26///
27namespace Driver {
28///
29namespace TPipe {
30
31
32/** This concrete class is a "Maker" that assembles the objects needed
33 for TPipe.
34 */
36{
37public:
38 /** Constructor.
39 @param frameHandlerList The set of received frame handlers. Note: frame
40 handler's self register
41 @param maxRxFrameSize The size, in bytes, of the buffer used to hold
42 an incoming Frame.
43 @param verbDelimiters The delimiter characters used to separate the
44 command verb from the rest of commands tokens/data.
45 This string must stay in scope for life of the
46 Maker instance.
47 @param startOfFrame Framing: Start-of-Frame character
48 @param endOfFrame Framing: End-of-Frame character
49 @param escapeChar Framing: Escape character
50 */
52 size_t maxRxFrameSize,
53 const char* verbDelimiters = " ",
54 char startOfFrame = '^',
55 char endOfFrame = ';',
56 char escapeChar = '`' );
57
58
59public:
60 /// Returns a reference to the TPipe processor
61 Pipe& getPipeProcessor( void ) noexcept { return m_processor; }
62
63 /// Cast-operator: Short-hand for getPipeProcessor()
64 operator Pipe& () { return m_processor; }
65
66protected:
67 /// See Cpl::Text::Frame::Decoder_
68 bool isStartOfFrame() noexcept;
69
70 /// See Cpl::Text::Frame::Decoder_
71 bool isEofOfFrame() noexcept;
72
73 /// See Cpl::Text::Frame::Decoder_
74 bool isEscapeChar() noexcept;
75
76 /// See Cpl::Text::Frame::Decoder_
77 bool isLegalCharacter() noexcept;
78
79
80protected:
81 /// Framer for the output
82 Cpl::Text::Frame::StreamEncoder m_framer;
83
84 /// Pipe Processor
86
87 /// Work buffer for raw incoming data (is not a null terminated string)
89
90 /// SOF character
91 const char m_sof;
92
93 /// EOF character
94 const char m_eof;
95
96 /// Escape character
97 const char m_esc;
98};
99
100
101}; // end namespaces
102};
103#endif // end header latch
#define OPTION_DRIVER_TPIPE_RAW_INPUT_SIZE
The size, in bytes, of the work buffer used to read from the input stream.
Definition Maker.h:23
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially concrete class defines an interface a Text "Decoder" that has a Cpl::Io::Input stream ...
Definition StreamDecoder.h:34
This concrete class is a "Maker" that assembles the objects needed for TPipe.
Definition Maker.h:36
Pipe & getPipeProcessor(void) noexcept
Returns a reference to the TPipe processor.
Definition Maker.h:61
const char m_sof
SOF character.
Definition Maker.h:91
bool isStartOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Pipe m_processor
Pipe Processor.
Definition Maker.h:85
bool isEscapeChar() noexcept
See Cpl::Text::Frame::Decoder_.
const char m_eof
EOF character.
Definition Maker.h:94
bool isLegalCharacter() noexcept
See Cpl::Text::Frame::Decoder_.
const char m_esc
Escape character.
Definition Maker.h:97
Cpl::Text::Frame::StreamEncoder m_framer
Framer for the output.
Definition Maker.h:82
char m_workBuffer[OPTION_DRIVER_TPIPE_RAW_INPUT_SIZE]
Work buffer for raw incoming data (is not a null terminated string)
Definition Maker.h:88
bool isEofOfFrame() noexcept
See Cpl::Text::Frame::Decoder_.
Maker(Cpl::Container::Map< RxFrameHandlerApi > &frameHandlerList, size_t maxRxFrameSize, const char *verbDelimiters=" ", char startOfFrame='^', char endOfFrame=';', char escapeChar='`')
Constructor.
This concrete class provides the implementation of TPipe.
Definition Pipe.h:60
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace