TSDuck v3.40-3963
MPEG Transport Stream Toolkit
|
Definition of TSP control commands syntax. More...
#include <tsTSPControlCommand.h>
Public Member Functions | |
TSPControlCommand (Report &report=(ts::CerrReport::Instance())) | |
Constructor. | |
void | addPredefinedCommands () |
Add the predefined commands help, quit and exit. | |
bool | analyzeCommand (const UString &command) |
Analyze a command line. | |
bool | analyzeCommand (const UString &name, const UStringVector &arguments) |
Analyze a command line. | |
Args * | command (const UString &name, const UString &description=UString(), const UString &syntax=UString(), int flags=0) |
Add the definition of a command to the interpreter, without command handler. | |
template<class HANDLER , typename std::enable_if< std::is_base_of< CommandLineHandler, HANDLER >::value, int >::type = 0> | |
Args * | command (HANDLER *handler, CommandStatus(HANDLER::*method)(const UString &, Args &), const UString &name, const UString &description=UString(), const UString &syntax=UString(), int flags=0) |
Add the definition of a command to the interpreter. | |
UString | getAllHelpText (Args::HelpFormat format, size_t line_width=79) const |
Get a formatted help text for all commands. | |
CommandStatus | processCommand (const UString &line, Report *redirect=nullptr) |
Analyze and process a command line. | |
CommandStatus | processCommand (const UString &name, const UStringVector &arguments, Report *redirect=nullptr) |
Analyze and process a command line. | |
CommandStatus | processCommandFile (const UString &file_name, bool exit_on_error=false, Report *redirect=nullptr) |
Analyze and process all commands from a text file. | |
CommandStatus | processCommandFiles (const UStringVector &file_names, bool exit_on_error=false, Report *redirect=nullptr) |
Analyze and process all commands from several text files. | |
CommandStatus | processCommands (UStringVector &lines, bool exit_on_error=false, Report *redirect=nullptr) |
Analyze and process all commands from a vector of text lines. | |
CommandStatus | processInteractive (bool exit_on_error, Report *redirect=nullptr) |
Analyze and process all commands from an interactive session. | |
CommandStatus | processInteractive (const UString &prompt=EditLine::DefaultPrompt(), const UString &next_prompt=EditLine::DefaultNextPrompt(), const UString &history_file=EditLine::DefaultHistoryFile(), size_t history_size=EditLine::DefaultHistorySize(), bool exit_on_error=false, Report *redirect=nullptr) |
Analyze and process all commands from an interactive session. | |
bool | processRedirections (bool on) |
Set command line redirection from files. | |
template<class HANDLER , typename std::enable_if< std::is_base_of< CommandLineHandler, HANDLER >::value, int >::type = 0> | |
void | setCommandLineHandler (HANDLER *handler, CommandStatus(HANDLER::*method)(const UString &, Args &), const UString &name=UString()) |
Set a new command line handler for one or all commands. | |
void | setShell (const UString &shell) |
Set the "shell" string for all commands. | |
Definition of TSP control commands syntax.
These commands are used with the tspcontrol utility to inspect or modify a running tsp command.
ts::TSPControlCommand::TSPControlCommand | ( | Report & | report = (ts::CerrReport::Instance()) | ) |
Constructor.
[in,out] | report | Reference to a report where all messages are displayed. The reference must remain valid as long as this object exists. |
|
inherited |
Set the "shell" string for all commands.
[in] | shell | Shell name string. |
|
inlineinherited |
Add the definition of a command to the interpreter, without command handler.
[in] | name | Command name. |
[in] | description | A short one-line description of the command. |
[in] | syntax | A short one-line syntax summary, eg. "[options] filename ...". |
[in] | flags | An or'ed mask of Args::Flags values. |
|
inlineinherited |
Add the definition of a command to the interpreter.
HANDLER | A subclass of CommandLineHandler. |
[in] | handler | Command handler object. A null pointer is allowed (unhandled command). |
[in] | method | Command handler method. A null pointer is allowed (unhandled command). |
[in] | name | Command name. |
[in] | description | A short one-line description of the command. |
[in] | syntax | A short one-line syntax summary, eg. "[options] filename ...". |
[in] | flags | An or'ed mask of Args::Flags values. |
|
inlineinherited |
Set a new command line handler for one or all commands.
HANDLER | A subclass of CommandLineHandler. |
[in] | handler | Command handler object. A null pointer is allowed (unhandled command). |
[in] | method | Command handler method. A null pointer is allowed (unhandled command). |
[in] | name | Command name. If empty (the default), handler is set on all commands. |
|
inherited |
Add the predefined commands help, quit and exit.
Useful for interactive interpreters.
|
inherited |
Set command line redirection from files.
[in] | on | If true, process command line arguments redirection. All lines with the form '@filename' are replaced by the content The initial default is false. |
|
inherited |
Analyze a command line.
[in] | command | Full command line, with command name and parameters. Parameters are separated with spaces. Special characters and spaces must be escaped or quoted in the parameters. |
|
inherited |
Analyze a command line.
[in] | name | Command name. |
[in] | arguments | Arguments from command line. |
|
inherited |
Analyze and process a command line.
[in] | line | Full command line, with command name and parameters. Parameters are separated with spaces. Special characters and spaces must be escaped or quoted in the parameters. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process a command line.
[in] | name | Command name. |
[in] | arguments | Arguments from command line. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process all commands from a vector of text lines.
[in,out] | lines | Lines of text. Lines starting with a '#' are considered as comments and removed. A line ending with a backslash means that the command continues on the next line. Such lines are reassembled. |
[in] | exit_on_error | If true, exit command session on first error. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process all commands from a text file.
Lines starting with a '#' are considered as comments and ignored. A line ending with a backslash means that the command continues on the next line.
[in] | file_name | File name. If empty or "-", execute an interactive session from the standard input. |
[in] | exit_on_error | If true, exit command session on first error. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process all commands from several text files.
Lines starting with a '#' are considered as comments and ignored. A line ending with a backslash means that the command continues on the next line.
[in] | file_names | Vector of file name. If one file name is empty or "-", execute an interactive session from the standard input. |
[in] | exit_on_error | If true, exit command session on first error. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process all commands from an interactive session.
[in] | prompt | Command line prompt. |
[in] | next_prompt | Command line prompt for continuation lines. |
[in] | history_file | File to load/save the history. If empty, no history is loaded or saved. |
[in] | history_size | Maximum number of history lines to save. |
[in] | exit_on_error | If true, exit command session on first error. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Analyze and process all commands from an interactive session.
Use all defaults for prompts and history.
[in] | exit_on_error | If true, exit command session on first error. |
[in] | redirect | If not null, temporarily redirect errors here. |
|
inherited |
Get a formatted help text for all commands.
[in] | format | Requested format of the help text. |
[in] | line_width | Maximum width of text lines. |