GM6000 Digital Heater Controller Branch: main
SDX-1330
Command.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Cmd_Command_h_
2#define Cpl_TShell_Cmd_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
15#include "colony_config.h"
16#include "Cpl/TShell/Command.h"
17#include "Cpl/TShell/Context_.h"
18#include "Cpl/Container/Map.h"
19#include "Cpl/Text/String.h"
20
21/** Default Permission level for all commands
22 */
23#ifndef OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
24#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL Cpl::TShell::Security::ePUBLIC
25#endif
26
27
28///
29namespace Cpl {
30///
31namespace TShell {
32///
33namespace Cmd {
34
35/** This partially concrete class implements infrastructure and/or common
36 functionality for a Shell command.
37 */
39{
40protected:
41 /// Result when processing a conditional statement
43 eFALSE, //!< The conditional statement evaluated to false
44 eTRUE, //!< The conditional statement evaluated to true
45 eERROR //!< Error occurring during the evaluation of the conditional
46 };
47
48protected:
49 /// Command
51
52 /// Minimum required user permission need to execute me
54
55protected:
56 /// Constructor
58 const char* verb,
60
61
62public:
63 /// See Cpl::TShell::Command
64 const char* getVerb() const noexcept;
65
66 /// See Cpl::TShell::Command
67 Security::Permission_T getMinPermissionRequired() const noexcept;
68
69protected:
70 /// See Cpl::Container::Key
71 const Cpl::Container::Key& getKey() const noexcept;
72
73
74
75};
76
77}; // end namespaces
78};
79};
80#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This class provides a 'Key' wrapper for a C string literal.
Definition Key.h:177
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Cpl::Container::KeyLiteralString m_mapKey
Command.
Definition Command.h:50
Security::Permission_T getMinPermissionRequired() const noexcept
See Cpl::TShell::Command.
const Cpl::Container::Key & getKey() const noexcept
See Cpl::Container::Key.
Command(Cpl::Container::Map< Cpl::TShell::Command > &commandList, const char *verb, Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
const char * getVerb() const noexcept
See Cpl::TShell::Command.
Security::Permission_T m_minPermissionLevel
Minimum required user permission need to execute me.
Definition Command.h:53
CondResult_T
Result when processing a conditional statement.
Definition Command.h:42
@ eFALSE
The conditional statement evaluated to false.
Definition Command.h:43
@ eTRUE
The conditional statement evaluated to true.
Definition Command.h:44
@ eERROR
Error occurring during the evaluation of the conditional.
Definition Command.h:45
This class defines the interface for a TShell command.
Definition Command.h:32
This abstract defines the interface for validating a 'user login' for TShell.
Definition Security.h:31
Permission_T
Permissions levels.
Definition Security.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20