GM6000 Digital Heater Controller Branch: main
SDX-1330
PolledProcessor.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_PolledProcessor_h_
2#define Cpl_TShell_PolledProcessor_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
16
17
18
19 ///
20namespace Cpl {
21///
22namespace TShell {
23
24/** This concrete class provides a non-blocking implementation of Command
25 PolledProcessor for a TShell engine. See Cpl::TShell::PolledProcessor for
26 additional details.
27 */
29{
30public:
31 /** Constructor.
32
33 @param commands Set of supported commands
34 @param deframer Frame decoder used to identify individual command
35 strings within the raw Input stream
36 @param framer Frame encoder used to encapsulate the output of
37 command in the Output stream.
38 @param outputLock Mutex to be used for ensuring the atomic output
39 of the commands.
40 @param commentChar The comment character used to indicate that the
41 input string is a comment and should not be
42 executed.
43 @param argEscape Escape character to be used when escaping double
44 quote characters inside a quoted argument.
45 @param argDelimiter The delimiter character used to separate the
46 command verb and arguments.
47 @param argQuote The quote character used to 'double quote' a
48 argument string.
49 @param argTerminator The command terminator character.
50 @param initialPermissionLevel The initial minimum permission level that a user needs to issue command(s)
51
52 */
56 Cpl::System::Mutex& outputLock,
57 char commentChar='#',
58 char argEscape='`',
59 char argDelimiter=' ',
60 char argQuote='"',
61 char argTerminator='\n',
62 Security::Permission_T initialPermissionLevel = Security::ePUBLIC );
63
64
65public:
66 /// See Cpl::TShell::ProcessorApi
67 bool start( Cpl::Io::Input& infd, Cpl::Io::Output& outfd, bool blocking=true ) noexcept;
68
69 /// See Cpl::TShell::ProcessorApi
70 int poll() noexcept;
71
72protected:
73 /** Helper method that executes the decoder, i.e. logic to parse the incoming
74 text. Returns 1 if a full/valid frame was found. Returns 0 if input frame
75 is incomplete. Return -1 if an error occurred.
76 */
77 int readInput( size_t& frameSize ) noexcept;
78
79protected:
80 /// Cached output stream pointer
81 Cpl::Io::Output* m_outFd;
82};
83
84
85}; // end namespaces
86};
87#endif // end header latch
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
This concrete class provides a non-blocking implementation of Command PolledProcessor for a TShell en...
Definition PolledProcessor.h:29
Cpl::Io::Output * m_outFd
Cached output stream pointer.
Definition PolledProcessor.h:81
int poll() noexcept
See Cpl::TShell::ProcessorApi.
PolledProcessor(Cpl::Container::Map< Command > &commands, Cpl::Text::Frame::StreamDecoder &deframer, Cpl::Text::Frame::StreamEncoder &framer, Cpl::System::Mutex &outputLock, char commentChar='#', char argEscape='`', char argDelimiter=' ', char argQuote='"', char argTerminator='\n', Security::Permission_T initialPermissionLevel = Security::ePUBLIC )
Constructor.
bool start(Cpl::Io::Input &infd, Cpl::Io::Output &outfd, bool blocking=true) noexcept
See Cpl::TShell::ProcessorApi.
int readInput(size_t &frameSize) noexcept
Helper method that executes the decoder, i.e.
This concrete class provides the implementation of Command Processor for a TShell engine.
Definition Processor.h:114
Permission_T
Permissions levels.
Definition Security.h:34
@ ePUBLIC
No permissions, i.e.
Definition Security.h:35
This partially concrete class defines an interface a Text "Decoder" that has a Cpl::Io::Input stream ...
Definition StreamDecoder.h:34
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