![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines the interface a TShell Command Processor. More...
This class defines the interface a TShell Command Processor.
The Command Processor is responsible for scanning the input, determining what command (if any) to execute; and then executing the command.
The design of the interface supports running the Command Processor with blocking-thread and with cooperative scheduling semantics.
#include <ProcessorApi.h>
Public Member Functions | |
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 |
Getter for delimiter character.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
Getter for escape character.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
Getter for quote character.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
Getter for terminator character.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method is used to provide the command processor 'CPU cycles' to parse/process/execute commands.
This command should ONLY be called when the application called the start() method with the 'blocking' argument set to false. This method should be called as often as possible, e.g. every pass of the 'main loop'
NOTE: This method must ALWAYS be called from the same 'thread context'
The method returns 0 if the method executed without errors. The method returns -1 if an error occurred (e.g. a Input/Output stream error was encounter). The method returns 1 if the command processor self terminated or was requested to stop.
Implemented in Cpl::TShell::PolledProcessor, and Cpl::TShell::Processor.
|
pure virtualnoexcept |
This non-blocking method requests the Command Processor to stop.
When (or if) the Command Processor actually stops depends on the target's implementation, health of the Shell, current command(s) executing, etc. This method returns immediately. There is no feedback/confirmation when the Command Processor stops.
Implemented in Cpl::TShell::Processor.
|
pure virtualnoexcept |
This method is used to start the Command Processor, i.e.
it will begin to process commands.
When 'blocking' is set to true, the method command will not return until the Command Processor self terminates or a Input/Output stream error was encounter. The method returns true if the Command Processor self terminated or was requested to stop; else false is returned e.g. a Input/Output stream error was encounter).
When 'blocking' is set to false, the command processor will be started and the method returns immediately. After start() is the called the Application is responsible for calling poll() to provide the command processor with CPU time to process commands. The method returns true if the Command Processor was successfully started; else false is returned (e.g. a Input/Output stream error was encounter).
NOTE: This method is an 'in-thread' initialization, i.e. not thread safe. The application is RESPONSIBLE for managing threading issues.
Implemented in Cpl::TShell::PolledProcessor, and Cpl::TShell::Processor.