GM6000 Digital Heater Controller Branch: main
SDX-1330
Fs.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs_TShell_Fs_h
2#define Cpl_Io_File_Littlefs_TShell_Fs_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/** Number of bytes to display per line when using the 'dump' command */
21#ifndef OPTION_CPL_IO_FILE_LITTLEFS_TSHELL_BYTES_PER_LINE
22#define OPTION_CPL_IO_FILE_LITTLEFS_TSHELL_BYTES_PER_LINE 16
23#endif
24
25///
26namespace Cpl {
27///
28namespace Io {
29///
30namespace File {
31///
32namespace Littlefs {
33///
34namespace TShell {
35
36
37/** This class implements a TShell command for various file system commands for
38 a system that is using a Littlefs file system.
39 */
41{
42public:
43 /// The command usage string
44 static constexpr const char* verb = "fs";
45
46 /// The command usage string
47 static constexpr const char* usage = "fs ls <dir>\n"
48 "fs dump <file> [<offset> [<len>]]\n"
49 "fs ren <oldentry> <newentry>\n"
50 "fs rm <entry>\n"
51 "fs mkfile <file>\n"
52 "fs mkdir <dir>\n"
53 "fs vols";
54
55 /** The command detailed help string (recommended that lines do not exceed 80 chars)
56 1 2 3 4 5 6 7 8
57 12345678901234567890123456789012345678901234567890123456789012345678901234567890
58 */
59 static constexpr const char* detailedHelp = " Performs several file system actions.\n"
60 " ls - Lists the content of directory. For a single volume system, use '/'\n"
61 " for the root directory.\n"
62 " dump - Displays the content of the specified file. Optional starting file\n"
63 " offset and length can be specified.\n"
64 " mv - Moves/renames the specified entry. The new entry name MUST be on\n"
65 " the same volume.\n"
66 " rm - Removes the specified entry. If 'entry' is directory, it must be\n"
67 " empty.\n"
68 " mkfile - Creates a new file. The file will be empty.\n"
69 " mkdir - Creates a new directory.\n"
70 " vols - Lists the volumes in the file system\n"
71 "\n"
72 " NOTE: You can NOT rename, delete, etc. the volume root directory(s)";
73
74
75public:
76 /// See Cpl::TShell::Command `
77 const char* getUsage() const noexcept { return usage; }
78
79 /// See Cpl::TShell::Command
80 const char* getHelp() const noexcept { return detailedHelp; }
81
82
83public:
84 /// Constructor
86 unsigned numVolumes,
87 const char* volumeRootPaths[],
89
90
91public:
92 /// See Cpl::TShell::Command
93 Cpl::TShell::Command::Result_T execute( Cpl::TShell::Context_& context, char* cmdString, Cpl::Io::Output& outfd ) noexcept;
94
95protected:
96 /// Root paths for the volumes
97 const char** m_volPaths;
98
99 /// Number of volumes
100 unsigned m_numVols;
101
102};
103
104} // end namespaces
105}
106}
107}
108}
109#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 implements a TShell command for various file system commands for a system that is using a ...
Definition Fs.h:41
static constexpr const char * verb
The command usage string.
Definition Fs.h:44
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 * usage
The command usage string.
Definition Fs.h:47
unsigned m_numVols
Number of volumes.
Definition Fs.h:100
const char ** m_volPaths
Root paths for the volumes.
Definition Fs.h:97
Fs(Cpl::Container::Map< Cpl::TShell::Command > &commandList, unsigned numVolumes, const char *volumeRootPaths[], Cpl::TShell::Security::Permission_T minPermLevel=OPTION_TSHELL_CMD_COMMAND_DEFAULT_PERMISSION_LEVEL) noexcept
Constructor.
const char * getHelp() const noexcept
See Cpl::TShell::Command.
Definition Fs.h:80
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 Fs.h:59
const char * getUsage() const noexcept
See Cpl::TShell::Command `.
Definition Fs.h:77
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