GM6000 Digital Heater Controller Branch: main
SDX-1330
Dm.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_TShell_Dm_h
2#define Cpl_Dm_TShell_Dm_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"
18
19
20///
21namespace Cpl {
22///
23namespace Dm {
24///
25namespace TShell {
26
27
28
29/** This class implements a TShell command. Note: Up to 10 different
30 instance of this command can be instantiated - but each instance MUST
31 have a different database number. The database number specified by
32 specifying the actual command name, e.g. 'dm0' is database number 0,
33 'dm1' is database number 1, etc.
34 */
36{
37public:
38 /// The command usage string
39 static constexpr const char* usage = "dm ls [<filter>]\n"
40 "dm write {<mp-json>}\n"
41 "dm read <mpname>\n"
42 "dm touch <mpname>";
43
44 /** The command detailed help string (recommended that lines do not exceed 80 chars)
45 1 2 3 4 5 6 7 8
46 12345678901234567890123456789012345678901234567890123456789012345678901234567890
47 */
48 static constexpr const char* detailedHelp = " Lists, updates, and displays Model Points contained in the Model Database.\n"
49 " When 'ls' is used a list of model point names is returned. The <filter>\n"
50 " argument will only list points that contain <filter>. Updating a Model Point\n"
51 " is done by specifying a JSON object. See the concrete class definition of the\n"
52 " Model Point being updated for the JSON format. When displaying a Model Point\n"
53 " <mpname> is the string name of the Model Point instance to be displayed.";
54
55
56protected:
57 /// Model Point Database to access
59
60 /// Dynamic
61public:
62 /// See Cpl::TShell::Command `
63 const char* getUsage() const noexcept { return usage; }
64
65 /// See Cpl::TShell::Command
66 const char* getHelp() const noexcept { return detailedHelp; }
67
68
69public:
70 /// Constructor
72 Cpl::Dm::ModelDatabaseApi& modelDatabase,
73 const char* cmdNameAndDatabaseNumber="dm",
75
76
77public:
78 /// See Cpl::TShell::Command
79 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
80
81};
82
83}; // end namespaces
84};
85};
86#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This class defines the basic operations that can be performed on a Model Base.
Definition ModelDatabaseApi.h:32
This class implements a TShell command.
Definition Dm.h:36
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 Dm.h:48
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Dm.h:66
const char * getUsage() const noexcept
Dynamic.
Definition Dm.h:63
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
Cpl::Dm::ModelDatabaseApi & m_database
Model Point Database to access.
Definition Dm.h:58
Dm(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::Dm::ModelDatabaseApi &modelDatabase, const char *cmdNameAndDatabaseNumber="dm", Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
static constexpr const char * usage
The command usage string.
Definition Dm.h:39
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 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20