1#ifndef Cpl_Io_File_Littlefs_TShell_Fs_h
2#define Cpl_Io_File_Littlefs_TShell_Fs_h
15#include "colony_config.h"
21#ifndef OPTION_CPL_IO_FILE_LITTLEFS_TSHELL_BYTES_PER_LINE
22#define OPTION_CPL_IO_FILE_LITTLEFS_TSHELL_BYTES_PER_LINE 16
44 static constexpr const char*
verb =
"fs";
47 static constexpr const char*
usage =
"fs ls <dir>\n"
48 "fs dump <file> [<offset> [<len>]]\n"
49 "fs ren <oldentry> <newentry>\n"
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"
66 " rm - Removes the specified entry. If 'entry' is directory, it must be\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"
72 " NOTE: You can NOT rename, delete, etc. the volume root directory(s)";
87 const char* volumeRootPaths[],
#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