GM6000 Digital Heater Controller Branch: main
SDX-1330
Cmd.h
Go to the documentation of this file.
1#ifndef Cpl_MApp_Cmd_h
2#define Cpl_MApp_Cmd_h
3/*-----------------------------------------------------------------------------
4* COPYRIGHT_HEADER_TO_BE_FILLED_LATER
5*----------------------------------------------------------------------------*/
6/** @file */
7
8#include "colony_config.h"
10#include "Cpl/MApp/ManagerApi.h"
11
12
13/** Maximum number of MApp instance that can be queried/listed
14 */
15#ifndef OPTION_CPL_MAPP_TSHELL_MAX_INSTANCES
16#define OPTION_CPL_MAPP_TSHELL_MAX_INSTANCES 8
17#endif
18
19///
20namespace Cpl {
21///
22namespace MApp {
23
24/** The class implements a TShell command that interacts with the MApp Manager
25 to start, stop, and list available MApp instances
26 */
28{
29public:
30 /// The command verb/identifier
31 static constexpr const char* verb = "mapp";
32
33 /// The command usage string
34 static constexpr const char* usage = "mapp\n"
35 "mapp start <mapp> [<args...]\n"
36 "mapp stop <mapp>|ALL\n"
37 "mapp ls";
38
39 /** The command detailed help string (recommended that lines do not exceed 80 chars)
40 1 2 3 4 5 6 7 8
41 12345678901234567890123456789012345678901234567890123456789012345678901234567890
42 */
43 static constexpr const char* detailedHelp = " Asynchronously starts/stops individual MApps (micro applications). Issuing\n"
44 " the command without arguments displays the list of running MApps";
45
46public:
47 /// See Cpl::TShell::Command `
48 const char* getUsage() const noexcept { return usage; }
49
50 /// See Cpl::TShell::Command
51 const char* getHelp() const noexcept { return detailedHelp; }
52
53
54public:
55 /// Constructor
57
58
59public:
60 /// See Cpl::TShell::Command
61 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
62
63protected:
64 /// Handle to the MApp manager
66
67 /// Array for holding pointers to queried MApp instances
69};
70
71}; // end namespaces
72};
73#endif // end header latch
#define OPTION_CPL_MAPP_TSHELL_MAX_INSTANCES
Maximum number of MApp instance that can be queried/listed.
Definition Cmd.h:16
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
The class implements a TShell command that interacts with the MApp Manager to start,...
Definition Cmd.h:28
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
Cpl::MApp::ManagerApi & m_mappManager
Handle to the MApp manager.
Definition Cmd.h:65
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 Cmd.h:43
Cmd(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::MApp::ManagerApi &mappManager) noexcept
Constructor.
static constexpr const char * verb
The command verb/identifier.
Definition Cmd.h:31
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Cmd.h:48
static constexpr const char * usage
The command usage string.
Definition Cmd.h:34
Cpl::MApp::MAppApi * m_mappList[OPTION_CPL_MAPP_TSHELL_MAX_INSTANCES]
Array for holding pointers to queried MApp instances.
Definition Cmd.h:68
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Cmd.h:51
This abstract class defines the interface for a Micro Application (MApp).
Definition MAppApi.h:37
This abstract class defines the "manager" interface to for starting, stopping, etc.
Definition ManagerApi.h:26
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
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20