![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This Private Namespace class defines a "Context" for a TShell command. More...
This Private Namespace class defines a "Context" for a TShell command.
The Context provide common infrastructure, information, buffers, etc. that facilitates interaction between the Command Processor and individual commands. The application SHOULD NEVER directly access this interface.
#include <Context_.h>
Public Member Functions | |
virtual Cpl::Container::Map< Command > & | getCommands () noexcept=0 |
This method returns the list of implemented commands. | |
virtual bool | writeFrame (const char *text) noexcept=0 |
This method encodes and outputs the specified message/text. The method returns false if there was Output Stream error. | |
virtual bool | writeFrame (const char *text, size_t maxBytes) noexcept=0 |
Same as writeFrame(), but only outputs (at most) 'N' bytes as the content of the frame. | |
virtual Cpl::Text::String & | getOutputBuffer () noexcept=0 |
This method returns a working buffer for a command to format its output prior to 'writing the frame'. | |
virtual Cpl::Text::String & | getTokenBuffer () noexcept=0 |
A shared/common working buffer. | |
virtual Cpl::Text::String & | getTokenBuffer2 () noexcept=0 |
Same as getTokenBuffer(), except provides a second/separate token buffer. | |
virtual bool | oobRead (void *buffer, int numBytes, int &bytesRead) noexcept=0 |
This method allows a command access to the input stream, i.e. | |
virtual Security::Permission_T | getUserPermissionLevel () const noexcept=0 |
This method returns the 'logged user' permission level. | |
virtual Security::Permission_T | setUserPermissionLevel (Security::Permission_T newPermissionLevel) noexcept=0 |
This method is used to updated the 'logged user' permission level. | |
virtual | ~Context_ () |
Virtual destructor. | |
![]() | |
virtual bool | start (Cpl::Io::Input &infd, Cpl::Io::Output &outfd, bool blocking=true) noexcept=0 |
This method is used to start the Command Processor, i.e. | |
virtual int | poll () noexcept=0 |
This method is used to provide the command processor 'CPU cycles' to parse/process/execute commands. | |
virtual void | requestStop () noexcept=0 |
This non-blocking method requests the Command Processor to stop. | |
virtual char | getEscapeChar () noexcept=0 |
Getter for escape character. | |
virtual char | getDelimiterChar () noexcept=0 |
Getter for delimiter character. | |
virtual char | getQuoteChar () noexcept=0 |
Getter for quote character. | |
virtual char | getTerminatorChar () noexcept=0 |
Getter for terminator character. | |
virtual | ~ProcessorApi () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This method returns the list of implemented commands.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method returns a working buffer for a command to format its output prior to 'writing the frame'.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
A shared/common working buffer.
The buffer is guaranteed to be large enough hold any valid token from an input frame. The contents of buffer is guaranteed to be empty/cleared.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
Same as getTokenBuffer(), except provides a second/separate token buffer.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method returns the 'logged user' permission level.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method allows a command access to the input stream, i.e.
consume additional input data that is 'out-of-band' of the nominal newline delineated command syntax.
Attempts to read the specified number of bytes from the stream into the supplied buffer. The actual number of bytes read is returned via 'bytesRead'. Returns true if successful, or false if End-of-Stream was encountered.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method is used to updated the 'logged user' permission level.
The method returns the previous value for the user's permission level.
NOTE: The program model is that all command implementations are well behaved in that they do not indiscriminately call this method.
In practice only the 'user' command should every call this method!
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method encodes and outputs the specified message/text. The method returns false if there was Output Stream error.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
Same as writeFrame(), but only outputs (at most) 'N' bytes as the content of the frame.
Implemented in Cpl::TShell::Processor.