GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions | Protected Member Functions | Protected Attributes
Cpl::TShell::PolledProcessor Class Reference

This concrete class provides a non-blocking implementation of Command PolledProcessor for a TShell engine. More...

Detailed Description

This concrete class provides a non-blocking implementation of Command PolledProcessor for a TShell engine.

See Cpl::TShell::PolledProcessor for additional details.

#include <PolledProcessor.h>

Inheritance diagram for Cpl::TShell::PolledProcessor:
[legend]
Collaboration diagram for Cpl::TShell::PolledProcessor:
[legend]

Public Member Functions

 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 poll () noexcept
 See Cpl::TShell::ProcessorApi.
 
- Public Member Functions inherited from Cpl::TShell::Processor
 Processor (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 poll () noexcept
 See Cpl::TShell::ProcessorApi.
 
void requestStop () noexcept
 See Cpl::TShell::ProcessorApi.
 
char getEscapeChar () noexcept
 See Cpl::TShell::ProcessorApi.
 
char getDelimiterChar () noexcept
 See Cpl::TShell::ProcessorApi.
 
char getQuoteChar () noexcept
 See Cpl::TShell::ProcessorApi.
 
char getTerminatorChar () noexcept
 See Cpl::TShell::ProcessorApi.
 
Cpl::Container::Map< Command > & getCommands () noexcept
 See Cpl::TShell::Context_.
 
bool writeFrame (const char *text) noexcept
 See Cpl::TShell::Context_.
 
bool writeFrame (const char *text, size_t maxBytes) noexcept
 See Cpl::TShell::Context_.
 
Cpl::Text::StringgetOutputBuffer () noexcept
 See Cpl::TShell::Context_.
 
Cpl::Text::StringgetTokenBuffer () noexcept
 See Cpl::TShell::Context_.
 
Cpl::Text::StringgetTokenBuffer2 () noexcept
 See Cpl::TShell::Context_.
 
bool oobRead (void *buffer, int numBytes, int &bytesRead) noexcept
 See Cpl::TShell::Context_.
 
Security::Permission_T getUserPermissionLevel () const noexcept
 See Cpl::TShell::Context_.
 
Security::Permission_T setUserPermissionLevel (Security::Permission_T newPermissionLevel) noexcept
 See Cpl::TShell::Context_.
 
- Public Member Functions inherited from Cpl::TShell::Context_
virtual ~Context_ ()
 Virtual destructor.
 
- Public Member Functions inherited from Cpl::TShell::ProcessorApi
virtual ~ProcessorApi ()
 Virtual destructor.
 

Protected Member Functions

int readInput (size_t &frameSize) noexcept
 Helper method that executes the decoder, i.e.
 
- Protected Member Functions inherited from Cpl::TShell::Processor
virtual Command::Result_T executeCommand (char *deframedInput, Cpl::Io::Output &outfd) noexcept
 Helper method that attempts to execute the content of the de-framed/decoded 'inputString'.
 
bool outputCommandError (Command::Result_T result, const char *deframedInput) noexcept
 Helper method.
 
int getAndProcessFrame (Cpl::Io::Output &outfd) noexcept
 Helper method that performs a 'single' read cycle of the input stream.
 

Protected Attributes

Cpl::Io::Outputm_outFd
 Cached output stream pointer.
 
- Protected Attributes inherited from Cpl::TShell::Processor
Cpl::Container::Map< Command > & m_commands
 Command list.
 
Cpl::Text::Frame::StreamDecoderm_deframer
 Raw input de-framer.
 
Cpl::Text::Frame::StreamEncoderm_framer
 Output framer handle.
 
Cpl::System::Mutexm_outLock
 Output lock.
 
Security::Permission_T m_userPermLevel
 User's permission level.
 
char m_comment
 Comment character.
 
char m_esc
 Argument Escape character.
 
char m_del
 Argument delimiter.
 
char m_quote
 Argument quote character.
 
char m_term
 Argument terminator character.
 
bool m_writeCommandPrompt
 Set to true when 'command prompt' should be outputted.
 
size_t m_frameSize
 Current frame size.
 
bool m_running
 My run state.
 
char m_inputBuffer [OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE+1]
 Input Frame buffer.
 
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_OUTPUT_SIZEm_outputBuffer
 Buffer that is used to construct output messages.
 
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZEm_tokenBuffer
 Shared token work buffer.
 
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZEm_tokenBuffer2
 Shared token work buffer.
 

Constructor & Destructor Documentation

◆ PolledProcessor()

Cpl::TShell::PolledProcessor::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.

Parameters
commandsSet of supported commands
deframerFrame decoder used to identify individual command strings within the raw Input stream
framerFrame encoder used to encapsulate the output of command in the Output stream.
outputLockMutex to be used for ensuring the atomic output of the commands.
commentCharThe comment character used to indicate that the input string is a comment and should not be executed.
argEscapeEscape character to be used when escaping double quote characters inside a quoted argument.
argDelimiterThe delimiter character used to separate the command verb and arguments.
argQuoteThe quote character used to 'double quote' a argument string.
argTerminatorThe command terminator character.
initialPermissionLevelThe initial minimum permission level that a user needs to issue command(s)

Member Function Documentation

◆ poll()

int Cpl::TShell::PolledProcessor::poll ( )
virtualnoexcept

◆ readInput()

int Cpl::TShell::PolledProcessor::readInput ( size_t &  frameSize)
protectedvirtualnoexcept

Helper method that executes the decoder, i.e.

logic to parse the incoming text. Returns 1 if a full/valid frame was found. Returns 0 if input frame is incomplete. Return -1 if an error occurred.

Reimplemented from Cpl::TShell::Processor.

◆ start()

bool Cpl::TShell::PolledProcessor::start ( Cpl::Io::Input infd,
Cpl::Io::Output outfd,
bool  blocking = true 
)
virtualnoexcept

Member Data Documentation

◆ m_outFd

Cpl::Io::Output* Cpl::TShell::PolledProcessor::m_outFd
protected

Cached output stream pointer.


The documentation for this class was generated from the following file: