GM6000 Digital Heater Controller Branch: main
SDX-1330
State.h
Go to the documentation of this file.
1#ifndef Ajax_TShell_State_h
2#define Ajax_TShell_State_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"
17
18///
19namespace Ajax
20{
21///
22namespace TShell
23{
24
25
26
27/** This class implements a TShell command that displays the current 'state'
28 of the unit
29
30 This class assumes that the following MP exists:
31 mp::onBoardIdt
32 mp::remoteIdt
33 mp::cmdHeaterPWM
34 mp::cmdFanPWM
35 mp::heatingMode
36 mp::fanMode
37 mp::heatingSetpoint
38 mp::sensorFailAlert
39 mp::failedSafeAlert
40
41 */
43{
44public:
45 /// The command verb/identifier
46 static constexpr const char* verb = "state";
47
48 /// The command usage string
49 static constexpr const char* usage = "state";
50
51 /** The command detailed help string (recommended that lines do not exceed 80 chars)
52 1 2 3 4 5 6 7 8
53 12345678901234567890123456789012345678901234567890123456789012345678901234567890
54 */
55 static constexpr const char* detailedHelp = " Display the overall state of the unit";
56
57
58public:
59 /// See Cpl::TShell::Command `
60 const char* getUsage() const noexcept { return usage; }
61
62 /// See Cpl::TShell::Command
63 const char* getHelp() const noexcept { return detailedHelp; }
64
65
66public:
67 /// Constructor
70
71
72public:
73 /// See Cpl::TShell::Command
74 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
75};
76
77} // end namespaces
78}
79#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This class implements a TShell command that displays the current 'state' of the unit.
Definition State.h:43
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition State.h:60
static constexpr const char * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition State.h:55
static constexpr const char * usage
The command usage string.
Definition State.h:49
State(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
static constexpr const char * verb
The command verb/identifier.
Definition State.h:46
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition State.h:63
This template class implements an Map using an AVL Binary tree (i.e.
Definition Map.h:34
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
Result_T
Possible result codes when executing a command.
Definition Command.h:35
This Private Namespace class defines a "Context" for a TShell command.
Definition Context_.h:32
Permission_T
Permissions levels.
Definition Security.h:34
The 'Ajax' namespace is the root name space all GM6000 application specific source code.