GM6000 Digital Heater Controller Branch: main
SDX-1330
Restartable.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Restarable_h_
2#define Cpl_TShell_Restarable_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
15#include "Cpl/TShell/Stdio.h"
16#include "Cpl/System/Thread.h"
17
18
19///
20namespace Cpl {
21///
22namespace TShell {
23
24/** This concrete class extends the 'Stdio' class for running a TShell Command
25 Processor that provides the ability to 'restart' the TShell to be 'restarted'.
26
27 NOTE: This class dynamically allocates memory and dynamically creates a
28 Thread!
29 */
30
31class Restartable: public Stdio
32{
33public:
34 /** Constructor. See Cpl::TShell::Stdio for additional details.
35 */
36 Restartable( Cpl::TShell::ProcessorApi& shell, const char* threadName = "TShell", int threadPriority = CPL_SYSTEM_THREAD_PRIORITY_NORMAL + CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true ) noexcept;
37
38
39public:
40 /** This method starts the Processor. It is thread safe in that it
41 runs in the context of the calling thread - and spawns a new
42 thread for Shell/Command Processor to executing in.
43 */
44 void launch( Cpl::Io::Input& infd, Cpl::Io::Output& outfd, bool enabledOnLaunch=true ) noexcept;
45
46 /** This method is used to restart the shell. This method can ONLY be
47 called AFTER launch has been called.
48 */
49 void restart() noexcept;
50
51 /** This method is used to request that the TShell be stopped AND optionally
52 that its thread to be terminated.
53
54 Note: The shell self terminates when a 'bye' command was issued by the
55 user or a IO error on the shell's IO Streams are encounter. When
56 the shell self terminates - the thread is placed into a blocking
57 state, i.e. waiting for a call to restart().
58 */
59 void pleaseStop( bool stopThread = false ) noexcept;
60
61 /** This method returns true when the shell is running
62 */
63 bool isRunning() noexcept;
64};
65
66
67}; // end namespaces
68};
69#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 class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
This concrete class extends the 'Stdio' class for running a TShell Command Processor that provides th...
Definition Restartable.h:32
void launch(Cpl::Io::Input &infd, Cpl::Io::Output &outfd, bool enabledOnLaunch=true) noexcept
This method starts the Processor.
void restart() noexcept
This method is used to restart the shell.
void pleaseStop(bool stopThread=false) noexcept
This method is used to request that the TShell be stopped AND optionally that its thread to be termin...
bool isRunning() noexcept
This method returns true when the shell is running.
Restartable(Cpl::TShell::ProcessorApi &shell, const char *threadName="TShell", int threadPriority=CPL_SYSTEM_THREAD_PRIORITY_NORMAL+CPL_SYSTEM_THREAD_PRIORITY_LOWER, bool thisIsAStaticInstance=true) noexcept
Constructor.
This concrete class provides the 'threading wrapper' for running a TShell Command Processor.
Definition Stdio.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20