GM6000 Digital Heater Controller Branch: main
SDX-1330
Cmd.h
Go to the documentation of this file.
1#ifndef Driver_NV_TShell_NV_h
2#define Driver_NV_TShell_NV_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#include "Driver/NV/Api.h"
18
19
20///
21namespace Driver {
22///
23namespace NV {
24
25/** This class implements a TShell command that tests/directly-operates
26 on the NV media.
27
28 WARNING: When this command is used - then application can not rely
29 on the NV contents.
30 */
32{
33public:
34 /// The command verb/identifier
35 static constexpr const char* verb = "nv";
36
37 /// The command usage string
38 static constexpr const char* usage = "nv ERASE\n"
39 "nv read <startOffSet> <len>\n"
40 "nv write <startOffset> <bytes...>\n"
41 "nv test (aa|55|blank)";
42
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 = " Exercises and tests the NV media. The supported tests are:\n"
49 " 'aa' - Writes (and verifies) 0xAA to all of the media\n"
50 " '55' - Writes (and verifies) 0x55 to all of the media\n"
51 " 'blank' - Verify if the media is 'erased'";
52protected:
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 Driver::NV::Api& nvDriver,
65
66public:
67 /// See Cpl::TShell::Command
68 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
69
70protected:
71 /// Helper method
73
74 /// Helper method
76
77protected:
78 /// NV driver
80};
81
82} // end namespaces
83}
84#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 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
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
This class defines the interface for a platform independent Non-volatile storage driver.
Definition Api.h:35
This class implements a TShell command that tests/directly-operates on the NV media.
Definition Cmd.h:32
static constexpr const char * verb
The command verb/identifier.
Definition Cmd.h:35
static constexpr const char * usage
The command usage string.
Definition Cmd.h:38
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Cmd.h:57
Cpl::TShell::Command::Result_T writeAll(uint8_t valueToWrite, Cpl::TShell::Context_ &context, Cpl::Text::String &outtext)
Helper method.
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:48
Cpl::TShell::Command::Result_T execute(Cpl::TShell::Context_ &context, char *cmdString, Cpl::Io::Output &outfd) noexcept
See Cpl::TShell::Command.
Cpl::TShell::Command::Result_T readAll(uint8_t execptedValue, Cpl::TShell::Context_ &context, Cpl::Text::String &outtext)
Helper method.
const char * getUsage() const noexcept
See Cpl::TShell::Command.
Definition Cmd.h:54
Cmd(Cpl::Container::Map< Cpl::TShell::Command > &commandList, Driver::NV::Api &nvDriver, Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
Driver::NV::Api & m_nvDriver
NV driver.
Definition Cmd.h:79
namespace