GM6000 Digital Heater Controller Branch: main
SDX-1330
ProcessorApi.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_ProcessorApi_h_
2#define Cpl_TShell_ProcessorApi_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/Io/Input.h"
16#include "Cpl/Io/Output.h"
17
18
19///
20namespace Cpl {
21///
22namespace TShell {
23
24/** This class defines the interface a TShell Command Processor. The
25 Command Processor is responsible for scanning the input, determining
26 what command (if any) to execute; and then executing the command.
27
28 The design of the interface supports running the Command Processor with
29 blocking-thread and with cooperative scheduling semantics.
30 */
31
33{
34public:
35 /** This method is used to start the Command Processor, i.e. it will
36 begin to process commands.
37
38 When 'blocking' is set to true, the method command will not return until
39 the Command Processor self terminates or a Input/Output stream error was
40 encounter. The method returns true if the Command Processor self
41 terminated or was requested to stop; else false is returned e.g. a
42 Input/Output stream error was encounter).
43
44 When 'blocking' is set to false, the command processor will be started
45 and the method returns immediately. After start() is the called the
46 Application is responsible for calling poll() to provide the command
47 processor with CPU time to process commands. The method returns true if
48 the Command Processor was successfully started; else false is returned
49 (e.g. a Input/Output stream error was encounter).
50
51 NOTE: This method is an 'in-thread' initialization, i.e. not thread
52 safe. The application is RESPONSIBLE for managing threading issues.
53 */
54 virtual bool start( Cpl::Io::Input& infd, Cpl::Io::Output& outfd, bool blocking=true ) noexcept = 0;
55
56
57 /** This method is used to provide the command processor 'CPU cycles' to
58 parse/process/execute commands. This command should ONLY be called when
59 the application called the start() method with the 'blocking' argument
60 set to false. This method should be called as often as possible, e.g.
61 every pass of the 'main loop'
62
63 NOTE: This method must ALWAYS be called from the same 'thread context'
64
65 The method returns 0 if the method executed without errors. The method
66 returns -1 if an error occurred (e.g. a Input/Output stream error was
67 encounter). The method returns 1 if the command processor self terminated
68 or was requested to stop.
69 */
70 virtual int poll() noexcept = 0;
71
72 /** This non-blocking method requests the Command Processor to stop. When
73 (or if) the Command Processor actually stops depends on the target's
74 implementation, health of the Shell, current command(s) executing, etc.
75 This method returns immediately. There is no feedback/confirmation
76 when the Command Processor stops.
77 */
78 virtual void requestStop() noexcept = 0;
79
80public:
81 /// Getter for escape character
82 virtual char getEscapeChar() noexcept = 0;
83
84 /// Getter for delimiter character
85 virtual char getDelimiterChar() noexcept = 0;
86
87 /// Getter for quote character
88 virtual char getQuoteChar() noexcept = 0;
89
90 /// Getter for terminator character
91 virtual char getTerminatorChar() noexcept = 0;
92
93public:
94 /// Virtual destructor
95 virtual ~ProcessorApi() {}
96};
97
98
99}; // end namespaces
100};
101#endif // end header latch
This partially abstract class defines a interface for operating on an input stream (example of a stre...
Definition Input.h:37
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This class defines the interface a TShell Command Processor.
Definition ProcessorApi.h:33
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 void requestStop() noexcept=0
This non-blocking method requests the Command Processor to stop.
virtual char getTerminatorChar() noexcept=0
Getter for terminator character.
virtual int poll() noexcept=0
This method is used to provide the command processor 'CPU cycles' to parse/process/execute commands.
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.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20