1#ifndef Cpl_TShell_Command_h_
2#define Cpl_TShell_Command_h_
56 virtual const char*
getVerb() const noexcept = 0;
60 virtual const
char*
getUsage() const noexcept = 0;
67 virtual const
char*
getHelp() const noexcept = 0;
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