class CliCommand

The class for the CLI command. More...

 
LOGO
 Annotated List  Files  Globals  Hierarchy  Index  Top

Public Types

Public Methods


Detailed Description

typedef XorpCallback2<bool, const string&, string&>::RefPtr TypeMatchCb

TypeMatchCb

 CliCommand (CliCommand *init_parent_command, const string& init_command_name, const string& init_command_help)

CliCommand

Constructor for a given parent command, command name, and command help.

Parameters:

init_parent_commandthe parent CliCommand command.
init_command_namethe command name (this name should not include the command name of the parent command and its ancestors).
init_command_helpthe command help.
 ~CliCommand ()

~CliCommand

[virtual]

Destructor

void  set_allow_cd (bool v, const string& init_cd_prompt)

set_allow_cd

Enable/disable whether this command allows "change directory" to it.

Parameters:

vif true, enable "change directory", otherwise disable it.
init_cd_promptif v is true, the CLI prompt to display when "cd" to this command. If an empty string, the CLI prompt will not be changed.
int  create_default_cli_commands ()

create_default_cli_commands

Create the default CLI commands at each level of the command tree.

Returns: XORP_OK on success, otherwise XORP_ERROR.

int  add_pipes (string& error_msg)

add_pipes

Create and add the default CLI pipe commands.

Parameters:

error_msgthe error message (if error).

Returns: XORP_OK on success, otherwise XORP_ERROR.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, bool is_multilevel_command, string& error_msg)

add_command

Add a CLI command.

By default, we cannot "cd" to this command.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "show version pim". However, commands "show" and "show version" must have been installed first.
init_command_helpthe command help.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, const string& init_cd_prompt, bool is_multilevel_command, string& error_msg)

add_command

Add a CLI command we can "cd" to it.

By default, we can "cd" to this command.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "set pim bsr". However, commands "set" and "set pim" must have been installed first.
init_command_helpthe command help.
init_cd_promptif not an empty string, the CLI prompt when "cd" to this command.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, bool is_multilevel_command, const CLI_PROCESS_CALLBACK& init_cli_process_callback, string& error_msg)

add_command

Add a CLI command with a processing callback.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "show version pim". However, commands "show" and "show version" must have been installed first.
init_command_helpthe command help.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
init_cli_process_callbackthe callback to call when the command is entered for execution from the command-line.
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, bool is_multilevel_command, const CLI_PROCESS_CALLBACK& init_cli_process_callback, const CLI_INTERRUPT_CALLBACK& init_cli_interrupt_callback, string& error_msg)

add_command

Add a CLI command with a processing and an interrupt callbacks.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "show version pim". However, commands "show" and "show version" must have been installed first.
init_command_helpthe command help.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
init_cli_process_callbackthe callback to call when the command is entered for execution from the command-line.
init_cli_interrupt_callbackthe callback to call when the user has interrupted the command (e.g., by typing Ctrl-C).
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, bool is_multilevel_command, CLI_PROCESS_FUNC init_cli_process_func, string& error_msg)

add_command

Add a CLI command with a processing function.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "show version pim". However, commands "show" and "show version" must have been installed first.
init_command_helpthe command help.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
init_cli_process_functhe processing function to call when the command is entered for execution from the command-line.
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

CliCommandadd_command (const string& init_command_name, const string& init_command_help, bool is_multilevel_command, CLI_PROCESS_FUNC init_cli_process_func, CLI_INTERRUPT_FUNC init_cli_interrupt_func, string& error_msg)

add_command

Add a CLI command with a processing function and an interrupt handler.

Parameters:

init_command_namethe command name to add. If is_multilevel_command is true, then it may include more than one command levels in the middle. E.g., "show version pim". However, commands "show" and "show version" must have been installed first.
init_command_helpthe command help.
is_multilevel_commandif true, then init_command_name may include more than one command levels in the middle.
init_cli_process_functhe processing function to call when the command is entered for execution from the command-line.
init_cli_interrupt_functhe function to call when the user has interrupted the command (e.g., by typing Ctrl-C).
error_msgthe error message (if error).

Returns: the new child command on success, otherwise NULL.

int  add_command (CliCommand *child_command, string& error_msg)

add_command

Add a child CLI command.

Parameters:

child_commandthe child command to add.
error_msgthe error message (if error).

Returns: XORP_OK on success, otherwise XORP_ERROR.

int  delete_command (CliCommand *child_command)

delete_command

Delete a child command and all sub-commands below it.

Parameters:

child_commandthe child command to delete.

Returns: XORP_OK on success, otherwise XORP_ERROR.

int  delete_command (const string& delete_command_name)

delete_command

Delete a child command and all sub-commands below it.

Parameters:

delete_command_namethe name of the child command to delete. The name can be the full path-name for that command.

Returns: XORP_OK on success, otherwise XORP_ERROR.

void  delete_all_commands ()

delete_all_commands

Recursively delete all children of this command.

void  set_can_pipe (bool v)

set_can_pipe

Set whether the output of this command can be piped.

Parameters:

vif true, then the the output of this command can be piped.
bool  default_nomore_mode ()

default_nomore_mode

[const]

Test if "no-more" (i.e., unpaged) is the default output mode.

Returns: true if "no-more" (i.e., unpaged) is the default output mode, otherwise false.

void  set_default_nomore_mode (bool v)

set_default_nomore_mode

Set the default paging mode.

Parameters:

vif true, then "no-more" (i.e., unpaged) is the default output mode.
bool  is_command_argument ()

is_command_argument

[const]

Test if the command actually represents a command argument.

Returns: true if the command actually represents a command argument.

void  set_is_command_argument (bool v)

set_is_command_argument

Set a flag whether the command actually represents a command argument.

Parameters:

vtrue if the command represents a command argument, otherwise false.
bool  is_argument_expected ()

is_argument_expected

[const]

Test if the command expects an argument.

Returns: true if the command expects an argument, otherwise false.

void  set_is_argument_expected (bool v)

set_is_argument_expected

Set a flag whether the command expects an argument.

Parameters:

vtrue if the command expectes an argument, otherwise false.
const TypeMatchCb&  type_match_cb ()

type_match_cb

[const]

Get the callback for type matching.

Returns: the callback for type matching.

void  set_type_match_cb (const TypeMatchCb& cb)

set_type_match_cb

Set the callback for type matching.

Parameters:

cbthe callback for type matching.
bool  has_type_match_cb ()

has_type_match_cb

[const]

Test if there is a callback for type matching.

Returns: true if there is a callback for type matching, otherwise false.

const vector<string>&  global_name ()

global_name

[const]

Get the global name of this command (i.e., the full name starting from the root).

Returns: the global (full) name of this command.

void  set_global_name (const vector<string>& v)

set_global_name

Set the global name for this command.

Parameters:

vthe global name value to set.
const string&  server_name ()

server_name

[const]

Get the server (i.e., processor) name for this command.

Returns: the server name for this command.

void  set_server_name (const string& v)

set_server_name

Set the server (i.e., processor) name for this command.

Parameters:

vthe server name value to set.
void  set_dynamic_children_callback (DYNAMIC_CHILDREN_CALLBACK v)

set_dynamic_children_callback

Set the callback for dynamic generation of children commands.

Parameters:

vthe callback for dynamic generation of children commands.
void  set_dynamic_process_callback (const CLI_PROCESS_CALLBACK& v)

set_dynamic_process_callback

Set the callback for command processing for a dynamically generated child command.

Parameters:

vthe callback for command processing.
void  set_dynamic_interrupt_callback (const CLI_INTERRUPT_CALLBACK& v)

set_dynamic_interrupt_callback

Set the callback for command interrupt for a dynamically generated child command.

Parameters:

vthe callback for command processing.
void  set_cli_process_callback (const CLI_PROCESS_CALLBACK& v)

set_cli_process_callback

Set the callback for command processing.

Parameters:

vthe callback for command processing.
void  set_cli_interrupt_callback (const CLI_INTERRUPT_CALLBACK& v)

set_cli_interrupt_callback

Set the callback for command interrupt.

Parameters:

vthe callback for command processing.

Generated by: bms on anglepoise.lon.incunabulum.net on Wed Jul 23 10:05:47 2008, using kdoc 2.0a54+XORP.