GM6000 Digital Heater Controller Branch: main
SDX-1330
Stdio.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Stdio_h_
2#define Cpl_TShell_Stdio_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include "Cpl/System/Thread.h"
17
18
19///
20namespace Cpl {
21///
22namespace TShell {
23
24/** This concrete class provides the 'threading wrapper' for running a
25 TShell Command Processor. This requires that the Input/Output streams
26 be provided when the Shell is launched.
27
28 NOTE: This class dynamically allocates memory and dynamically creates a
29 Thread!
30 */
31
32class Stdio
33{
34protected:
35 /// Command Processor to run
37
38 /// Thread that the shell runs in
40
41 /// Thread priority to run the shell
43
44 /// Thread name for the shell
45 const char* m_name;
46
47 /// Runnable instance
49
50 /// How I was created
52
53public:
54 /** Constructor. The 'thisIsAStaticInstance' argument is to inform the
55 instance being create that it is being created statically (i.e. before
56 main() is entered) - which is the intended typically behavior. This
57 knowledge is used to inhibit delete/destroy-thread actions in the
58 instance's destructor. This is necessary because there is no
59 guaranteed order to when static destructor fire and as such the state
60 of the CPL Libraries static resources (e.g. mutexes) are unknown
61 which your application will crash/behavior poorly on exit.
62 */
63 Stdio( ProcessorApi& shell, const char* threadName = "TShell", int threadPriority = CPL_SYSTEM_THREAD_PRIORITY_NORMAL + CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true ) noexcept;
64
65
66 /// Destructor
68
69
70public:
71 /** This method starts the Processor. It is thread safe in that it
72 runs in the context of the calling thread - and spawns a new
73 thread for Shell/Command Processor to executing in.
74 */
75 void launch( Cpl::Io::Input& infd, Cpl::Io::Output& outfd ) noexcept;
76};
77
78
79}; // end namespaces
80};
81#endif // end header latch
#define CPL_SYSTEM_THREAD_PRIORITY_LOWER
This value can be 'added' to one of the above Priorities to decrease (i.e.
Definition Thread.h:45
#define CPL_SYSTEM_THREAD_PRIORITY_NORMAL
The recommended/default priority for a thread.
Definition Thread.h:30
This is an abstract class defines the interface for an object that is "executed" when a Thread object...
Definition Runnable.h:29
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
This class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
This concrete class provides the 'threading wrapper' for running a TShell Command Processor.
Definition Stdio.h:33
Cpl::System::Thread * m_threadPtr
Thread that the shell runs in.
Definition Stdio.h:39
Stdio(ProcessorApi &shell, const char *threadName="TShell", int threadPriority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL+CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true) noexcept
Constructor.
Cpl::System::Runnable * m_runnablePtr
Runnable instance.
Definition Stdio.h:48
void launch(Cpl::Io::Input &infd, Cpl::Io::Output &outfd) noexcept
This method starts the Processor.
int m_priority
Thread priority to run the shell.
Definition Stdio.h:42
bool m_staticInstance
How I was created.
Definition Stdio.h:51
const char * m_name
Thread name for the shell.
Definition Stdio.h:45
ProcessorApi & m_shell
Command Processor to run.
Definition Stdio.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20