GM6000 Digital Heater Controller Branch: main
SDX-1330
Maker.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Maker_h_
2#define Cpl_TShell_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
17#include "Cpl/System/Private_.h"
18
19///
20namespace Cpl {
21///
22namespace TShell {
23
24
25/** This concrete class is a "Maker" that assembles the objects needed
26 for a 'basic' TShell Processor engine.
27 */
28class Maker
29{
30protected:
31
32 /// Framer for the output
34
35 /// De-framer for the input stream
37
38 /// Command Processor
40
41
42public:
43 /** Constructor. The application is responsible for supplying the set of commands and the mutex to ensure atomic
44 output.
45 */
47
48
49public:
50 /// Returns a reference to the Command processor
51 ProcessorApi & getCommandProcessor( void ) noexcept { return m_processor; }
52
53 /// Cast-operator: Short-hand for getCommandProcessor()
54 operator ProcessorApi& ( ) { return m_processor; }
55
56};
57
58
59}; // end namespaces
60};
61#endif // end header latch
This file contains a collection of classes, interfaces, etc.
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
static Mutex & tracingOutput(void)
Global mutex for use for the tracing sub-system OUTPUT (see above for more details)
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
This concrete class is a "Maker" that assembles the objects needed for a 'basic' TShell Processor eng...
Definition Maker.h:29
Processor m_processor
Command Processor.
Definition Maker.h:39
Cpl::Text::Frame::StreamEncoder m_framer
Framer for the output.
Definition Maker.h:33
Cpl::Text::Frame::LineDecoder< OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE > m_deframer
De-framer for the input stream.
Definition Maker.h:36
ProcessorApi & getCommandProcessor(void) noexcept
Returns a reference to the Command processor.
Definition Maker.h:51
Maker(Cpl::Container::Map< Command > &cmdlist, Cpl::System::Mutex &lock=Cpl::System::Locks_::tracingOutput())
Constructor.
This class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
This concrete class provides the implementation of Command Processor for a TShell engine.
Definition Processor.h:114
This concrete template class provide a basic implementation of the Frame::Decoder interface that uses...
Definition LineDecoder.h:48
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