1#ifndef Cpl_TShell_Processor_h_
2#define Cpl_TShell_Processor_h_
15#include "colony_config.h"
27#ifndef OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE
28#define OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE 128
34#ifndef OPTION_CPL_TSHELL_PROCESSOR_OUTPUT_SIZE
35#define OPTION_CPL_TSHELL_PROCESSOR_OUTPUT_SIZE 256
40#ifndef OPTION_CPL_TSHELL_PROCESSOR_GREETING
41#define OPTION_CPL_TSHELL_PROCESSOR_GREETING "\n--- Your friendly neighborhood TShell. ---\n\n\n"
46#ifndef OPTION_CPL_TSHELL_PROCESSOR_FAREWELL
47#define OPTION_CPL_TSHELL_PROCESSOR_FAREWELL "\n--- ...I am melting, am melting... ---\n\n"
52#ifndef OPTION_CPL_TSHELL_PROCESSOR_PROMPT
53#define OPTION_CPL_TSHELL_PROCESSOR_PROMPT "$ "
141 char commentChar=
'#',
143 char argDelimiter=
' ',
145 char argTerminator=
'\n',
180 bool writeFrame( const
char* text,
size_t maxBytes ) noexcept;
192 bool oobRead(
void* buffer,
int numBytes,
int& bytesRead ) noexcept;
#define OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE
This symbol defines the size, in bytes, of the maximum allowed input string/command.
Definition Processor.h:28
#define OPTION_CPL_TSHELL_PROCESSOR_OUTPUT_SIZE
This symbol defines the size, in bytes, of the maximum allowed unframed output string/command.
Definition Processor.h:35
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
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 class defines the interface for a TShell command.
Definition Command.h:32
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
This concrete class provides the implementation of Command Processor for a TShell engine.
Definition Processor.h:114
Cpl::Text::String & getOutputBuffer() noexcept
See Cpl::TShell::Context_.
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_OUTPUT_SIZE > m_outputBuffer
Buffer that is used to construct output messages.
Definition Processor.h:266
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 oobRead(void *buffer, int numBytes, int &bytesRead) noexcept
See Cpl::TShell::Context_.
Cpl::Container::Map< Command > & m_commands
Command list.
Definition Processor.h:224
Security::Permission_T getUserPermissionLevel() const noexcept
See Cpl::TShell::Context_.
char m_term
Argument terminator character.
Definition Processor.h:251
bool m_writeCommandPrompt
Set to true when 'command prompt' should be outputted.
Definition Processor.h:254
Cpl::Container::Map< Command > & getCommands() noexcept
See Cpl::TShell::Context_.
Cpl::Text::Frame::StreamEncoder & m_framer
Output framer handle.
Definition Processor.h:230
int poll() noexcept
See Cpl::TShell::ProcessorApi.
char getQuoteChar() noexcept
See Cpl::TShell::ProcessorApi.
virtual int readInput(size_t &frameSize) noexcept
Helper method that executes the decoder, i.e.
Cpl::Text::String & getTokenBuffer2() noexcept
See Cpl::TShell::Context_.
char m_inputBuffer[OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE+1]
Input Frame buffer.
Definition Processor.h:263
char m_comment
Comment character.
Definition Processor.h:239
char getEscapeChar() noexcept
See Cpl::TShell::ProcessorApi.
Security::Permission_T m_userPermLevel
User's permission level.
Definition Processor.h:236
char m_quote
Argument quote character.
Definition Processor.h:248
size_t m_frameSize
Current frame size.
Definition Processor.h:257
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE > m_tokenBuffer2
Shared token work buffer.
Definition Processor.h:272
Cpl::Text::Frame::StreamDecoder & m_deframer
Raw input de-framer.
Definition Processor.h:227
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.
int getAndProcessFrame(Cpl::Io::Output &outfd) noexcept
Helper method that performs a 'single' read cycle of the input stream.
bool start(Cpl::Io::Input &infd, Cpl::Io::Output &outfd, bool blocking=true) noexcept
See Cpl::TShell::ProcessorApi.
Cpl::Text::String & getTokenBuffer() noexcept
See Cpl::TShell::Context_.
char getTerminatorChar() noexcept
See Cpl::TShell::ProcessorApi.
bool writeFrame(const char *text) noexcept
See Cpl::TShell::Context_.
Cpl::Text::FString< OPTION_CPL_TSHELL_PROCESSOR_INPUT_SIZE > m_tokenBuffer
Shared token work buffer.
Definition Processor.h:269
bool outputCommandError(Command::Result_T result, const char *deframedInput) noexcept
Helper method.
char m_esc
Argument Escape character.
Definition Processor.h:242
Security::Permission_T setUserPermissionLevel(Security::Permission_T newPermissionLevel) noexcept
See Cpl::TShell::Context_.
char m_del
Argument delimiter.
Definition Processor.h:245
Cpl::System::Mutex & m_outLock
Output lock.
Definition Processor.h:233
char getDelimiterChar() noexcept
See Cpl::TShell::ProcessorApi.
void requestStop() noexcept
See Cpl::TShell::ProcessorApi.
bool m_running
My run state.
Definition Processor.h:260
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
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