![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class provides the 'threading wrapper' for running a TShell Command Processor. More...
This concrete class provides the 'threading wrapper' for running a TShell Command Processor.
This requires that the Input/Output streams be provided when the Shell is launched.
NOTE: This class dynamically allocates memory and dynamically creates a Thread!
#include <Stdio.h>
Public Member Functions | |
Stdio (ProcessorApi &shell, const char *threadName="TShell", int threadPriority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL+CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true) noexcept | |
Constructor. | |
~Stdio () | |
Destructor. | |
void | launch (Cpl::Io::Input &infd, Cpl::Io::Output &outfd) noexcept |
This method starts the Processor. | |
Protected Attributes | |
ProcessorApi & | m_shell |
Command Processor to run. | |
Cpl::System::Thread * | m_threadPtr |
Thread that the shell runs in. | |
int | m_priority |
Thread priority to run the shell. | |
const char * | m_name |
Thread name for the shell. | |
Cpl::System::Runnable * | m_runnablePtr |
Runnable instance. | |
bool | m_staticInstance |
How I was created. | |
|
noexcept |
Constructor.
The 'thisIsAStaticInstance' argument is to inform the instance being create that it is being created statically (i.e. before main() is entered) - which is the intended typically behavior. This knowledge is used to inhibit delete/destroy-thread actions in the instance's destructor. This is necessary because there is no guaranteed order to when static destructor fire and as such the state of the CPL Libraries static resources (e.g. mutexes) are unknown which your application will crash/behavior poorly on exit.
Cpl::TShell::Stdio::~Stdio | ( | ) |
Destructor.
|
noexcept |
|
protected |
Thread name for the shell.
|
protected |
Thread priority to run the shell.
|
protected |
Runnable instance.
|
protected |
|
protected |
How I was created.
|
protected |
Thread that the shell runs in.