GM6000 Digital Heater Controller Branch: main
SDX-1330
Command.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Command_h_
2#define Cpl_TShell_Command_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/Io/Output.h"
17#include "Cpl/TShell/Security.h"
18
19
20///
21namespace Cpl {
22///
23namespace TShell {
24
25/// Forward class reference to avoid circular header includes
26class Context_;
27
28
29/** This class defines the interface for a TShell command.
30 */
32{
33public:
34 /// Possible result codes when executing a command
35 enum Result_T {
36 eSUCCESS = 0, //!< Command executed successfully
37 eERROR_BAD_SYNTAX = 1, //!< The command string cannot be parsed
38 eERROR_INVALID_CMD = 2, //!< Not a valid/supported command (Note: Typically this is only returned by the Command Processor - not individual commands)
39 eERROR_IO = 3, //!< Command failed due to an error writing to the Output stream
40 eERROR_MISSING_ARGS = 4, //!< Command failed due to execute due to missing one or more required arguments
41 eERROR_EXTRA_ARGS = 5, //!< Command failed due to execute due to unexpected 'extra' arguments
42 eERROR_INVALID_ARGS = 6, //!< Command failed due to execute due to one or more arguments being invalid
43 eERROR_FAILED = 7 //!< Command failed to complete one or more of actions.
44 };
45
46
47
48public:
49 /** This method executes the command.
50 */
51 virtual Result_T execute( Context_& context, char* rawCmdString, Cpl::Io::Output& outfd ) noexcept = 0;
52
53
54public:
55 /// This method returns the command's verb string
56 virtual const char* getVerb() const noexcept = 0;
57
58
59 /// This method returns the command's usage string
60 virtual const char* getUsage() const noexcept = 0;
61
62
63 /** This method returns the command's detailed help string. Detailed
64 help is optional. If the command does not support detailed help,
65 then nullptr is returned.
66 */
67 virtual const char* getHelp() const noexcept = 0;
68
69
70 /** Returns the minimum required permission level needed to execute the
71 command.
72 */
73 virtual Security::Permission_T getMinPermissionRequired() const noexcept = 0;
74
75protected:
76 /// Constructor
77 Command() {};
78
79public:
80 /// Virtual destructor
81 virtual ~Command() {}
82
83};
84
85}; // end namespaces
86};
87#endif // end header latch
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
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 for a TShell command.
Definition Command.h:32
virtual Result_T execute(Context_ &context, char *rawCmdString, Cpl::Io::Output &outfd) noexcept=0
This method executes the command.
virtual Security::Permission_T getMinPermissionRequired() const noexcept=0
Returns the minimum required permission level needed to execute the command.
virtual const char * getUsage() const noexcept=0
This method returns the command's usage string.
virtual ~Command()
Virtual destructor.
Definition Command.h:81
virtual const char * getHelp() const noexcept=0
This method returns the command's detailed help string.
Result_T
Possible result codes when executing a command.
Definition Command.h:35
@ eERROR_MISSING_ARGS
Command failed due to execute due to missing one or more required arguments.
Definition Command.h:40
@ eERROR_INVALID_ARGS
Command failed due to execute due to one or more arguments being invalid.
Definition Command.h:42
@ eERROR_EXTRA_ARGS
Command failed due to execute due to unexpected 'extra' arguments.
Definition Command.h:41
@ eERROR_INVALID_CMD
Not a valid/supported command (Note: Typically this is only returned by the Command Processor - not i...
Definition Command.h:38
@ eERROR_IO
Command failed due to an error writing to the Output stream.
Definition Command.h:39
@ eSUCCESS
Command executed successfully.
Definition Command.h:36
@ eERROR_BAD_SYNTAX
The command string cannot be parsed.
Definition Command.h:37
@ eERROR_FAILED
Command failed to complete one or more of actions.
Definition Command.h:43
virtual const char * getVerb() const noexcept=0
This method returns the command's verb string.
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20