GM6000 Digital Heater Controller Branch: main
SDX-1330
Provision.h
Go to the documentation of this file.
1#ifndef Ajax_TShell_Provision_h
2#define Ajax_TShell_Provision_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"
19#include "Driver/Crypto/Hash.h"
20
21///
22namespace Ajax {
23///
24namespace TShell {
25
26
27
28/** This class implements a TShell command that is used to provision a GM6000
29 unit at production.
30
31 This class assumes that the following MP exists:
32 mp::serialNumber
33 mp::modelNumber
34 TODO: mp::XYZ - Algorithm stuffs....
35 */
37{
38public:
39 /// The command verb/identifier
40 static constexpr const char* verb = "prov";
41
42 /// The command usage string
43 static constexpr const char* usage = "prov <modelNumber> <serialNumber> <consolePwd> <h-outS> <h-maxY> <h-errS> <h-dErrS> <h-outK0> <h-outK1> <h-outK2> <h-outK3> <h-outK4> <fanLow> <fanMed> <fanHi> <maxCap>";
44
45 /** The command detailed help string (recommended that lines do not exceed 80 chars)
46 1 2 3 4 5 6 7 8
47 12345678901234567890123456789012345678901234567890123456789012345678901234567890
48 */
49 static constexpr const char* detailedHelp = " Provisions the GM6000 with its 'personality'";
50
51
52public:
53 /// See Cpl::TShell::Command `
54 const char* getUsage() const noexcept { return usage; }
55
56 /// See Cpl::TShell::Command
57 const char* getHelp() const noexcept { return detailedHelp; }
58
59
60public:
61 /// Constructor
63 Ajax::Main::PersonalityRecord& personalityRecord,
65 Driver::Crypto::Hash& sha512HashFunction,
67
68
69public:
70 /// See Cpl::TShell::Command
71 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
72
73protected:
74 /// Helper function
75 bool hashPassword( const char* plaintext,
76 Cpl::Text::String& workBufferMem,
77 Cpl::Text::String& workDigestMem,
78 Cpl::Text::String& outputBufferMemory ) noexcept;
79
80protected:
81 /// Persistent Storage Server
83
84 /// Personality record that I write to
86
87 /// Hash function to use. The expectation is this a SHA512 has function
89
90};
91
92} // end namespaces
93}
94#endif // end header latch
#define OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL
Default Permission level for all commands.
Definition Command.h:24
This concrete class implements the "Record" class for storing the 'Personality' settings.
Definition PersonalityRecord.h:40
This class implements a TShell command that is used to provision a GM6000 unit at production.
Definition Provision.h:37
static constexpr const char * usage
The command usage string.
Definition Provision.h:43
static constexpr const char * verb
The command verb/identifier.
Definition Provision.h:40
Provision(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Ajax::Main::PersonalityRecord &personalityRecord, Cpl::Persistent::RecordServer &recordServer, Driver::Crypto::Hash &sha512HashFunction, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
Cpl::Persistent::RecordServer & m_recordServer
Persistent Storage Server.
Definition Provision.h:82
Ajax::Main::PersonalityRecord & m_personalityRec
Personality record that I write to.
Definition Provision.h:85
Driver::Crypto::Hash & m_sha512
Hash function to use. The expectation is this a SHA512 has function.
Definition Provision.h:88
bool hashPassword(const char *plaintext, Cpl::Text::String &workBufferMem, Cpl::Text::String &workDigestMem, Cpl::Text::String &outputBufferMemory) noexcept
Helper function.
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Provision.h:57
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Provision.h:54
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 Provision.h:49
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 concrete class provides an Event driven Runnable object for executing the read/write operation t...
Definition RecordServer.h:28
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
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
This class defines an abstract interface for a Hashing Algorithms.
Definition Hash.h:34
The 'Ajax' namespace is the root name space all GM6000 application specific source code.