GM6000 Digital Heater Controller Branch: main
SDX-1330
User.h
Go to the documentation of this file.
1#ifndef Cpl_TShell_Cmd_User_h
2#define Cpl_TShell_Cmd_User_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
19///
20namespace Cpl {
21///
22namespace TShell {
23///
24namespace Cmd {
25
26
27
28/** This class implements a Shell command
29 */
30class User : public Command
31{
32public:
33 /// The command verb/identifier
34 static constexpr const char* verb = "user";
35
36 /// The command usage string
37 static constexpr const char* usage = "user login <username> <password>\n"
38 "user logout";
39
40 /** The command detailed help string (recommended that lines do not exceed 80 chars)
41 1 2 3 4 5 6 7 8
42 12345678901234567890123456789012345678901234567890123456789012345678901234567890
43 */
44 static constexpr const char* detailedHelp = " Logs a user in and out of the shell.";
45
46
47public:
48 /// See Cpl::TShell::Command
49 const char* getUsage() const noexcept { return usage; }
50
51 /// See Cpl::TShell::Command
52 const char* getHelp() const noexcept { return detailedHelp; }
53
54
55public:
56 /// Constructor
58
59
60public:
61 /// See Cpl::TShell::Command
62 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
63
64protected:
65 /// Used to validate the user's credentials
67};
68
69}; // end namespaces
70};
71};
72#endif // end header latch
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
This partially concrete class implements infrastructure and/or common functionality for a Shell comma...
Definition Command.h:39
This class implements a Shell command.
Definition User.h:31
User(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Cpl::TShell::Security &validator) noexcept
Constructor.
static constexpr const char * verb
The command verb/identifier.
Definition User.h:34
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 * detailedHelp
The command detailed help string (recommended that lines do not exceed 80 chars) 1 2 3 4 5 6 7 8 1234...
Definition User.h:44
static constexpr const char * usage
The command usage string.
Definition User.h:37
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition User.h:52
Cpl::TShell::Security & m_validator
Used to validate the user's credentials.
Definition User.h:66
const char * getUsage() const noexcept
See Cpl::TShell::Command.
Definition User.h:49
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
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