1999-04-16 03:35:26 +02:00
|
|
|
|
/* Handle lists of commands, their decoding and documentation, for GDB.
|
2002-01-17 23:15:18 +01:00
|
|
|
|
|
2008-01-01 23:53:26 +01:00
|
|
|
|
Copyright (c) 1986, 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2004, 2007,
|
2011-01-01 16:34:07 +01:00
|
|
|
|
2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include <ctype.h>
|
2001-09-01 23:38:05 +02:00
|
|
|
|
#include "gdb_regex.h"
|
2002-07-30 Andrew Cagney <ac131313@redhat.com>
* symtab.h: Replace #include "gdb_obstack.h" with opaque
declaration.
* cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
* gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
* avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
* arch-utils.c, cli/cli-setshow.c: Unconditionally include
"gdb_string.h".
* Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
(gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
(cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
(avr-tdep.o, mon960-rom.o): Ditto.
(aout_stabs_gnu_h): Define.
(symtab_h): Remove $(gdb_obstack_h).
2002-07-30 15:45:15 +02:00
|
|
|
|
#include "gdb_string.h"
|
2005-02-17 18:11:04 +01:00
|
|
|
|
#include "completer.h"
|
2000-02-03 05:14:45 +01:00
|
|
|
|
#include "ui-out.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
#include "cli/cli-cmds.h"
|
|
|
|
|
#include "cli/cli-decode.h"
|
1999-08-24 00:40:00 +02:00
|
|
|
|
|
2004-02-10 Andrew Cagney <cagney@redhat.com>
* defs.h: Do not include "tui.h".
* gdb_curses.h: New file.
* tui/tui-hooks.h: New file.
* tui/tui.h (tui_update_all_exec_infos): Delete declaration.
(tui_install_hooks, tui_remove_hooks): Delete declarations.
(tui_initialize_io): Delete declaration.
(tui_initialize_readline: Delete redundant declaration.
(struct tui_point): Delete definition.
* tui/tui-data.h (struct tui_point): Define.
* cli/cli-decode.c [TUI]: Include "tui/tui.h".
* utils.c: Include "tui/tui.h".
* tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
* printcmd.c [TUI]: Include "tui/tui.h".
* cli/cli-cmds.c [TUI]: Include "tui/tui.h".
* tui/tui-command.c: Include "gdb_curses.h".
* tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
* tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
* tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
* tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
* tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
* Makefile.in: Update all dependencies.
(tui_hooks_h, gdb_curses_h): Define.
(SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
2004-02-10 20:08:19 +01:00
|
|
|
|
#ifdef TUI
|
2010-12-29 03:11:04 +01:00
|
|
|
|
#include "tui/tui.h" /* For tui_active et al. */
|
2004-02-10 Andrew Cagney <cagney@redhat.com>
* defs.h: Do not include "tui.h".
* gdb_curses.h: New file.
* tui/tui-hooks.h: New file.
* tui/tui.h (tui_update_all_exec_infos): Delete declaration.
(tui_install_hooks, tui_remove_hooks): Delete declarations.
(tui_initialize_io): Delete declaration.
(tui_initialize_readline: Delete redundant declaration.
(struct tui_point): Delete definition.
* tui/tui-data.h (struct tui_point): Define.
* cli/cli-decode.c [TUI]: Include "tui/tui.h".
* utils.c: Include "tui/tui.h".
* tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
* printcmd.c [TUI]: Include "tui/tui.h".
* cli/cli-cmds.c [TUI]: Include "tui/tui.h".
* tui/tui-command.c: Include "gdb_curses.h".
* tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
* tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
* tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
* tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
* tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
* Makefile.in: Update all dependencies.
(tui_hooks_h, gdb_curses_h): Define.
(SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
2004-02-10 20:08:19 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-03-24 01:24:35 +01:00
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Prototypes for local functions. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
static void undef_cmd_error (char *, char *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
static struct cmd_list_element *delete_cmd (char *name,
|
2008-12-12 18:58:48 +01:00
|
|
|
|
struct cmd_list_element **list,
|
|
|
|
|
struct cmd_list_element **prehook,
|
|
|
|
|
struct cmd_list_element **prehookee,
|
|
|
|
|
struct cmd_list_element **posthook,
|
|
|
|
|
struct cmd_list_element **posthookee);
|
2008-12-10 02:05:16 +01:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
static struct cmd_list_element *find_cmd (char *command,
|
|
|
|
|
int len,
|
|
|
|
|
struct cmd_list_element *clist,
|
|
|
|
|
int ignore_help_classes,
|
|
|
|
|
int *nfound);
|
2000-03-24 00:21:27 +01:00
|
|
|
|
|
2000-04-21 07:21:55 +02:00
|
|
|
|
static void help_all (struct ui_file *stream);
|
2006-10-31 12:45:41 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_help_for_command (struct cmd_list_element *c, char *prefix, int recurse,
|
|
|
|
|
struct ui_file *stream);
|
|
|
|
|
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
/* Set the callback function for the specified command. For each both
|
|
|
|
|
the commands callback and func() are set. The latter set to a
|
|
|
|
|
bounce function (unless cfunc / sfunc is NULL that is). */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
do_cfunc (struct cmd_list_element *c, char *args, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
c->function.cfunc (args, from_tty); /* Ok. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-06-15 21:54:26 +02:00
|
|
|
|
set_cmd_cfunc (struct cmd_list_element *cmd, cmd_cfunc_ftype *cfunc)
|
2002-02-05 05:37:23 +01:00
|
|
|
|
{
|
|
|
|
|
if (cfunc == NULL)
|
|
|
|
|
cmd->func = NULL;
|
|
|
|
|
else
|
|
|
|
|
cmd->func = do_cfunc;
|
|
|
|
|
cmd->function.cfunc = cfunc; /* Ok. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
do_sfunc (struct cmd_list_element *c, char *args, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
c->function.sfunc (args, from_tty, c); /* Ok. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-06-15 21:54:26 +02:00
|
|
|
|
set_cmd_sfunc (struct cmd_list_element *cmd, cmd_sfunc_ftype *sfunc)
|
2002-02-05 05:37:23 +01:00
|
|
|
|
{
|
|
|
|
|
if (sfunc == NULL)
|
|
|
|
|
cmd->func = NULL;
|
|
|
|
|
else
|
|
|
|
|
cmd->func = do_sfunc;
|
|
|
|
|
cmd->function.sfunc = sfunc; /* Ok. */
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-23 21:12:13 +01:00
|
|
|
|
int
|
|
|
|
|
cmd_cfunc_eq (struct cmd_list_element *cmd,
|
|
|
|
|
void (*cfunc) (char *args, int from_tty))
|
|
|
|
|
{
|
|
|
|
|
return cmd->func == do_cfunc && cmd->function.cfunc == cfunc;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-19 03:19:17 +01:00
|
|
|
|
void
|
|
|
|
|
set_cmd_context (struct cmd_list_element *cmd, void *context)
|
|
|
|
|
{
|
|
|
|
|
cmd->context = context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
get_cmd_context (struct cmd_list_element *cmd)
|
|
|
|
|
{
|
|
|
|
|
return cmd->context;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-18 03:26:32 +01:00
|
|
|
|
enum cmd_types
|
|
|
|
|
cmd_type (struct cmd_list_element *cmd)
|
|
|
|
|
{
|
|
|
|
|
return cmd->type;
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-06 07:28:35 +01:00
|
|
|
|
void
|
|
|
|
|
set_cmd_completer (struct cmd_list_element *cmd,
|
2009-02-06 22:33:59 +01:00
|
|
|
|
char **(*completer) (struct cmd_list_element *self,
|
|
|
|
|
char *text, char *word))
|
2002-03-06 07:28:35 +01:00
|
|
|
|
{
|
|
|
|
|
cmd->completer = completer; /* Ok. */
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Add element named NAME.
|
|
|
|
|
CLASS is the top level category into which commands are broken down
|
|
|
|
|
for "help" purposes.
|
|
|
|
|
FUN should be the function to execute the command;
|
|
|
|
|
it will get a character string as argument, with leading
|
|
|
|
|
and trailing blanks already eliminated.
|
|
|
|
|
|
|
|
|
|
DOC is a documentation string for the command.
|
|
|
|
|
Its first line should be a complete sentence.
|
|
|
|
|
It should start with ? for a command that is an abbreviation
|
|
|
|
|
or with * for a command that most users don't need to know about.
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
Add this command to command list *LIST.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Returns a pointer to the added command (not necessarily the head
|
2010-12-29 03:11:04 +01:00
|
|
|
|
of *LIST). */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
2000-08-08 02:17:39 +02:00
|
|
|
|
add_cmd (char *name, enum command_class class, void (*fun) (char *, int),
|
|
|
|
|
char *doc, struct cmd_list_element **list)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *c
|
2010-05-17 21:28:12 +02:00
|
|
|
|
= (struct cmd_list_element *) xmalloc (sizeof (struct cmd_list_element));
|
2008-12-10 02:05:16 +01:00
|
|
|
|
struct cmd_list_element *p, *iter;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
/* Turn each alias of the old command into an alias of the new
|
|
|
|
|
command. */
|
2008-12-12 18:58:48 +01:00
|
|
|
|
c->aliases = delete_cmd (name, list, &c->hook_pre, &c->hookee_pre,
|
|
|
|
|
&c->hook_post, &c->hookee_post);
|
2008-12-10 02:05:16 +01:00
|
|
|
|
for (iter = c->aliases; iter; iter = iter->alias_chain)
|
|
|
|
|
iter->cmd_pointer = c;
|
2008-12-12 18:58:48 +01:00
|
|
|
|
if (c->hook_pre)
|
|
|
|
|
c->hook_pre->hookee_pre = c;
|
|
|
|
|
if (c->hookee_pre)
|
|
|
|
|
c->hookee_pre->hook_pre = c;
|
|
|
|
|
if (c->hook_post)
|
|
|
|
|
c->hook_post->hookee_post = c;
|
|
|
|
|
if (c->hookee_post)
|
|
|
|
|
c->hookee_post->hook_post = c;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-01-19 09:01:47 +01:00
|
|
|
|
if (*list == NULL || strcmp ((*list)->name, name) >= 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
c->next = *list;
|
|
|
|
|
*list = c;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
p = *list;
|
2001-01-19 09:01:47 +01:00
|
|
|
|
while (p->next && strcmp (p->next->name, name) <= 0)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
p = p->next;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->next = p->next;
|
|
|
|
|
p->next = c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c->name = name;
|
|
|
|
|
c->class = class;
|
2002-02-05 05:37:23 +01:00
|
|
|
|
set_cmd_cfunc (c, fun);
|
2002-03-19 03:19:17 +01:00
|
|
|
|
set_cmd_context (c, NULL);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->doc = doc;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
c->flags = 0;
|
|
|
|
|
c->replacement = NULL;
|
2001-12-20 19:35:30 +01:00
|
|
|
|
c->pre_show_hook = NULL;
|
2000-11-06 23:44:34 +01:00
|
|
|
|
c->hook_in = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->prefixlist = NULL;
|
|
|
|
|
c->prefixname = NULL;
|
|
|
|
|
c->allow_unknown = 0;
|
|
|
|
|
c->abbrev_flag = 0;
|
2009-02-06 22:33:59 +01:00
|
|
|
|
set_cmd_completer (c, make_symbol_completion_list_fn);
|
|
|
|
|
c->destroyer = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->type = not_set_cmd;
|
|
|
|
|
c->var = NULL;
|
|
|
|
|
c->var_type = var_boolean;
|
|
|
|
|
c->enums = NULL;
|
|
|
|
|
c->user_commands = NULL;
|
|
|
|
|
c->cmd_pointer = NULL;
|
2008-12-10 02:05:16 +01:00
|
|
|
|
c->alias_chain = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
/* Deprecates a command CMD.
|
2010-12-29 03:11:04 +01:00
|
|
|
|
REPLACEMENT is the name of the command which should be used in
|
|
|
|
|
place of this command, or NULL if no such command exists.
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
This function does not check to see if command REPLACEMENT exists
|
2010-12-29 03:11:04 +01:00
|
|
|
|
since gdb may not have gotten around to adding REPLACEMENT when
|
|
|
|
|
this function is called.
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
Returns a pointer to the deprecated command. */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
deprecate_cmd (struct cmd_list_element *cmd, char *replacement)
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
{
|
|
|
|
|
cmd->flags |= (CMD_DEPRECATED | DEPRECATED_WARN_USER);
|
|
|
|
|
|
|
|
|
|
if (replacement != NULL)
|
|
|
|
|
cmd->replacement = replacement;
|
|
|
|
|
else
|
|
|
|
|
cmd->replacement = NULL;
|
|
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
struct cmd_list_element *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
add_alias_cmd (char *name, char *oldname, enum command_class class,
|
|
|
|
|
int abbrev_flag, struct cmd_list_element **list)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Must do this since lookup_cmd tries to side-effect its first
|
|
|
|
|
arg. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
char *copied_name;
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *old;
|
|
|
|
|
struct cmd_list_element *c;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
copied_name = (char *) alloca (strlen (oldname) + 1);
|
|
|
|
|
strcpy (copied_name, oldname);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
old = lookup_cmd (&copied_name, *list, "", 1, 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (old == 0)
|
|
|
|
|
{
|
2008-12-12 18:58:48 +01:00
|
|
|
|
struct cmd_list_element *prehook, *prehookee, *posthook, *posthookee;
|
|
|
|
|
struct cmd_list_element *aliases = delete_cmd (name, list,
|
|
|
|
|
&prehook, &prehookee,
|
|
|
|
|
&posthook, &posthookee);
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
/* If this happens, it means a programmer error somewhere. */
|
2009-06-08 17:45:39 +02:00
|
|
|
|
gdb_assert (!aliases && !prehook && !prehookee
|
2008-12-12 18:58:48 +01:00
|
|
|
|
&& !posthook && ! posthookee);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
c = add_cmd (name, class, NULL, old->doc, list);
|
|
|
|
|
/* NOTE: Both FUNC and all the FUNCTIONs need to be copied. */
|
|
|
|
|
c->func = old->func;
|
|
|
|
|
c->function = old->function;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->prefixlist = old->prefixlist;
|
|
|
|
|
c->prefixname = old->prefixname;
|
|
|
|
|
c->allow_unknown = old->allow_unknown;
|
|
|
|
|
c->abbrev_flag = abbrev_flag;
|
|
|
|
|
c->cmd_pointer = old;
|
2008-12-10 02:05:16 +01:00
|
|
|
|
c->alias_chain = old->aliases;
|
|
|
|
|
old->aliases = c;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Like add_cmd but adds an element for a command prefix: a name that
|
|
|
|
|
should be followed by a subcommand to be looked up in another
|
|
|
|
|
command list. PREFIXLIST should be the address of the variable
|
|
|
|
|
containing that list. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
2011-01-06 01:57:05 +01:00
|
|
|
|
add_prefix_cmd (char *name, enum command_class class,
|
|
|
|
|
void (*fun) (char *, int),
|
2000-08-08 02:17:39 +02:00
|
|
|
|
char *doc, struct cmd_list_element **prefixlist,
|
|
|
|
|
char *prefixname, int allow_unknown,
|
|
|
|
|
struct cmd_list_element **list)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *c = add_cmd (name, class, fun, doc, list);
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->prefixlist = prefixlist;
|
|
|
|
|
c->prefixname = prefixname;
|
|
|
|
|
c->allow_unknown = allow_unknown;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Like add_prefix_cmd but sets the abbrev_flag on the new command. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
struct cmd_list_element *
|
2000-08-08 02:17:39 +02:00
|
|
|
|
add_abbrev_prefix_cmd (char *name, enum command_class class,
|
|
|
|
|
void (*fun) (char *, int), char *doc,
|
|
|
|
|
struct cmd_list_element **prefixlist, char *prefixname,
|
|
|
|
|
int allow_unknown, struct cmd_list_element **list)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *c = add_cmd (name, class, fun, doc, list);
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->prefixlist = prefixlist;
|
|
|
|
|
c->prefixname = prefixname;
|
|
|
|
|
c->allow_unknown = allow_unknown;
|
|
|
|
|
c->abbrev_flag = 1;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is an empty "cfunc". */
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
not_just_help_class_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is an empty "sfunc". */
|
2000-05-28 03:12:42 +02:00
|
|
|
|
static void empty_sfunc (char *, int, struct cmd_list_element *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
empty_sfunc (char *args, int from_tty, struct cmd_list_element *c)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-24 01:24:35 +01:00
|
|
|
|
/* Add element named NAME to command list LIST (the list for set/show
|
1999-04-16 03:35:26 +02:00
|
|
|
|
or some sublist thereof).
|
2002-03-24 01:24:35 +01:00
|
|
|
|
TYPE is set_cmd or show_cmd.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CLASS is as in add_cmd.
|
|
|
|
|
VAR_TYPE is the kind of thing we are setting.
|
|
|
|
|
VAR is address of the variable being controlled by this command.
|
|
|
|
|
DOC is the documentation string. */
|
|
|
|
|
|
2002-03-24 01:24:35 +01:00
|
|
|
|
static struct cmd_list_element *
|
|
|
|
|
add_set_or_show_cmd (char *name,
|
|
|
|
|
enum cmd_types type,
|
|
|
|
|
enum command_class class,
|
|
|
|
|
var_types var_type,
|
|
|
|
|
void *var,
|
|
|
|
|
char *doc,
|
|
|
|
|
struct cmd_list_element **list)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2002-02-02 01:56:37 +01:00
|
|
|
|
struct cmd_list_element *c = add_cmd (name, class, NULL, doc, list);
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2002-03-24 01:24:35 +01:00
|
|
|
|
gdb_assert (type == set_cmd || type == show_cmd);
|
|
|
|
|
c->type = type;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c->var_type = var_type;
|
|
|
|
|
c->var = var;
|
2002-02-02 01:56:37 +01:00
|
|
|
|
/* This needs to be something besides NULL so that this isn't
|
1999-04-16 03:35:26 +02:00
|
|
|
|
treated as a help class. */
|
2002-02-05 05:37:23 +01:00
|
|
|
|
set_cmd_sfunc (c, empty_sfunc);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-15 23:07:59 +02:00
|
|
|
|
/* Add element named NAME to both the command SET_LIST and SHOW_LIST.
|
|
|
|
|
CLASS is as in add_cmd. VAR_TYPE is the kind of thing we are
|
|
|
|
|
setting. VAR is address of the variable being controlled by this
|
|
|
|
|
command. SET_FUNC and SHOW_FUNC are the callback functions (if
|
2004-07-28 19:26:27 +02:00
|
|
|
|
non-NULL). SET_DOC, SHOW_DOC and HELP_DOC are the documentation
|
|
|
|
|
strings. PRINT the format string to print the value. SET_RESULT
|
|
|
|
|
and SHOW_RESULT, if not NULL, are set to the resulting command
|
|
|
|
|
structures. */
|
2002-06-15 23:07:59 +02:00
|
|
|
|
|
2004-07-28 21:42:01 +02:00
|
|
|
|
static void
|
2002-06-26 22:58:17 +02:00
|
|
|
|
add_setshow_cmd_full (char *name,
|
|
|
|
|
enum command_class class,
|
|
|
|
|
var_types var_type, void *var,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2002-06-26 22:58:17 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list,
|
|
|
|
|
struct cmd_list_element **set_result,
|
|
|
|
|
struct cmd_list_element **show_result)
|
2002-06-15 23:07:59 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *set;
|
|
|
|
|
struct cmd_list_element *show;
|
2004-07-30 19:55:47 +02:00
|
|
|
|
char *full_set_doc;
|
|
|
|
|
char *full_show_doc;
|
|
|
|
|
|
|
|
|
|
if (help_doc != NULL)
|
|
|
|
|
{
|
|
|
|
|
full_set_doc = xstrprintf ("%s\n%s", set_doc, help_doc);
|
|
|
|
|
full_show_doc = xstrprintf ("%s\n%s", show_doc, help_doc);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
full_set_doc = xstrdup (set_doc);
|
|
|
|
|
full_show_doc = xstrdup (show_doc);
|
|
|
|
|
}
|
2002-06-15 23:07:59 +02:00
|
|
|
|
set = add_set_or_show_cmd (name, set_cmd, class, var_type, var,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
full_set_doc, set_list);
|
2002-06-15 23:07:59 +02:00
|
|
|
|
if (set_func != NULL)
|
|
|
|
|
set_cmd_sfunc (set, set_func);
|
|
|
|
|
show = add_set_or_show_cmd (name, show_cmd, class, var_type, var,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
full_show_doc, show_list);
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show->show_value_func = show_func;
|
2002-06-26 22:58:17 +02:00
|
|
|
|
|
|
|
|
|
if (set_result != NULL)
|
|
|
|
|
*set_result = set;
|
|
|
|
|
if (show_result != NULL)
|
|
|
|
|
*show_result = show;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-30 19:10:14 +02:00
|
|
|
|
/* Add element named NAME to command list LIST (the list for set or
|
|
|
|
|
some sublist thereof). CLASS is as in add_cmd. ENUMLIST is a list
|
|
|
|
|
of strings which may follow NAME. VAR is address of the variable
|
|
|
|
|
which will contain the matching string (from ENUMLIST). */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
add_setshow_enum_cmd (char *name,
|
|
|
|
|
enum command_class class,
|
|
|
|
|
const char *enumlist[],
|
|
|
|
|
const char **var,
|
|
|
|
|
const char *set_doc,
|
|
|
|
|
const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2004-10-30 19:10:14 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
2005-02-10 00:15:01 +01:00
|
|
|
|
struct cmd_list_element **show_list)
|
2004-10-30 19:10:14 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *c;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2004-10-30 19:10:14 +02:00
|
|
|
|
add_setshow_cmd_full (name, class, var_enum, var,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2004-10-30 19:10:14 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2005-02-10 00:15:01 +01:00
|
|
|
|
&c, NULL);
|
2004-10-30 19:10:14 +02:00
|
|
|
|
c->enums = enumlist;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-16 00:05:33 +02:00
|
|
|
|
/* Add an auto-boolean command named NAME to both the set and show
|
|
|
|
|
command list lists. CLASS is as in add_cmd. VAR is address of the
|
|
|
|
|
variable which will contain the value. DOC is the documentation
|
|
|
|
|
string. FUNC is the corresponding callback. */
|
|
|
|
|
void
|
|
|
|
|
add_setshow_auto_boolean_cmd (char *name,
|
|
|
|
|
enum command_class class,
|
|
|
|
|
enum auto_boolean *var,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2002-06-16 00:05:33 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2002-06-16 00:05:33 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
2000-06-23 10:12:27 +02:00
|
|
|
|
{
|
|
|
|
|
static const char *auto_boolean_enums[] = { "on", "off", "auto", NULL };
|
|
|
|
|
struct cmd_list_element *c;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2002-06-26 22:58:17 +02:00
|
|
|
|
add_setshow_cmd_full (name, class, var_auto_boolean, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2004-07-28 19:26:27 +02:00
|
|
|
|
set_func, show_func,
|
2002-06-26 22:58:17 +02:00
|
|
|
|
set_list, show_list,
|
|
|
|
|
&c, NULL);
|
2000-06-23 10:12:27 +02:00
|
|
|
|
c->enums = auto_boolean_enums;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-15 23:07:59 +02:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). CLASS is as in
|
|
|
|
|
add_cmd. VAR is address of the variable which will contain the
|
2004-05-07 23:36:34 +02:00
|
|
|
|
value. SET_DOC and SHOW_DOC are the documentation strings. */
|
2002-06-15 23:07:59 +02:00
|
|
|
|
void
|
2004-07-28 19:26:27 +02:00
|
|
|
|
add_setshow_boolean_cmd (char *name, enum command_class class, int *var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2002-06-15 23:07:59 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2002-06-15 23:07:59 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
2001-09-30 18:16:16 +02:00
|
|
|
|
{
|
|
|
|
|
static const char *boolean_enums[] = { "on", "off", NULL };
|
|
|
|
|
struct cmd_list_element *c;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2002-06-26 22:58:17 +02:00
|
|
|
|
add_setshow_cmd_full (name, class, var_boolean, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2002-06-26 22:58:17 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
|
|
|
|
&c, NULL);
|
2001-09-30 18:16:16 +02:00
|
|
|
|
c->enums = boolean_enums;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-28 21:42:01 +02:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). */
|
|
|
|
|
void
|
|
|
|
|
add_setshow_filename_cmd (char *name, enum command_class class,
|
|
|
|
|
char **var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2004-07-28 21:42:01 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2004-07-28 21:42:01 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
2005-02-17 18:11:04 +01:00
|
|
|
|
struct cmd_list_element *set_result;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2004-07-28 21:42:01 +02:00
|
|
|
|
add_setshow_cmd_full (name, class, var_filename, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2004-07-28 21:42:01 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2005-02-17 18:11:04 +01:00
|
|
|
|
&set_result, NULL);
|
|
|
|
|
set_cmd_completer (set_result, filename_completer);
|
2004-07-28 21:42:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
list for set/show or some sublist thereof). */
|
|
|
|
|
void
|
2004-07-28 21:42:01 +02:00
|
|
|
|
add_setshow_string_cmd (char *name, enum command_class class,
|
2005-12-06 23:13:14 +01:00
|
|
|
|
char **var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
|
|
|
|
show_value_ftype *show_func,
|
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
2004-07-28 21:42:01 +02:00
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_string, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2004-07-28 21:42:01 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2004-07-28 21:42:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 16:00:36 +01:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
list for set/show or some sublist thereof). */
|
|
|
|
|
void
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 16:00:36 +01:00
|
|
|
|
add_setshow_string_noescape_cmd (char *name, enum command_class class,
|
|
|
|
|
char **var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
|
|
|
|
show_value_ftype *show_func,
|
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_string_noescape, var,
|
|
|
|
|
set_doc, show_doc, help_doc,
|
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 16:00:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-02-21 04:25:56 +01:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). */
|
|
|
|
|
void
|
|
|
|
|
add_setshow_optional_filename_cmd (char *name, enum command_class class,
|
|
|
|
|
char **var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
|
|
|
|
show_value_ftype *show_func,
|
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
2008-07-05 00:30:19 +02:00
|
|
|
|
struct cmd_list_element *set_result;
|
|
|
|
|
|
2005-02-21 04:25:56 +01:00
|
|
|
|
add_setshow_cmd_full (name, class, var_optional_filename, var,
|
|
|
|
|
set_doc, show_doc, help_doc,
|
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2008-07-05 00:30:19 +02:00
|
|
|
|
&set_result, NULL);
|
|
|
|
|
|
|
|
|
|
set_cmd_completer (set_result, filename_completer);
|
|
|
|
|
|
2005-02-21 04:25:56 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-02-18 21:57:16 +01:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). CLASS is as in
|
|
|
|
|
add_cmd. VAR is address of the variable which will contain the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
value. SET_DOC and SHOW_DOC are the documentation strings. */
|
|
|
|
|
void
|
2005-02-18 21:57:16 +01:00
|
|
|
|
add_setshow_integer_cmd (char *name, enum command_class class,
|
2005-05-26 22:49:03 +02:00
|
|
|
|
int *var,
|
2005-12-06 23:13:14 +01:00
|
|
|
|
const char *set_doc, const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
|
|
|
|
show_value_ftype *show_func,
|
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
2005-02-18 21:57:16 +01:00
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_integer, var,
|
|
|
|
|
set_doc, show_doc, help_doc,
|
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2005-02-18 21:57:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2003-08-09 17:10:09 +02:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). CLASS is as in
|
|
|
|
|
add_cmd. VAR is address of the variable which will contain the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
value. SET_DOC and SHOW_DOC are the documentation strings. */
|
|
|
|
|
void
|
2004-07-28 19:26:27 +02:00
|
|
|
|
add_setshow_uinteger_cmd (char *name, enum command_class class,
|
|
|
|
|
unsigned int *var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2003-08-09 17:10:09 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2003-08-09 17:10:09 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_uinteger, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2003-08-09 17:10:09 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2003-08-09 17:10:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-05-07 15:35:52 +02:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). CLASS is as in
|
|
|
|
|
add_cmd. VAR is address of the variable which will contain the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
value. SET_DOC and SHOW_DOC are the documentation strings. */
|
|
|
|
|
void
|
2004-07-28 19:26:27 +02:00
|
|
|
|
add_setshow_zinteger_cmd (char *name, enum command_class class,
|
|
|
|
|
int *var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
2005-02-10 18:32:53 +01:00
|
|
|
|
const char *help_doc,
|
2004-05-07 15:35:52 +02:00
|
|
|
|
cmd_sfunc_ftype *set_func,
|
2005-02-16 18:20:59 +01:00
|
|
|
|
show_value_ftype *show_func,
|
2004-05-07 15:35:52 +02:00
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_zinteger, var,
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
|
set_doc, show_doc, help_doc,
|
2004-05-07 15:35:52 +02:00
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2004-05-07 15:35:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-23 19:47:46 +01:00
|
|
|
|
/* Add element named NAME to both the set and show command LISTs (the
|
|
|
|
|
list for set/show or some sublist thereof). CLASS is as in
|
|
|
|
|
add_cmd. VAR is address of the variable which will contain the
|
2009-08-13 16:56:19 +02:00
|
|
|
|
value. SET_DOC and SHOW_DOC are the documentation strings. */
|
|
|
|
|
void
|
2009-01-23 19:47:46 +01:00
|
|
|
|
add_setshow_zuinteger_cmd (char *name, enum command_class class,
|
|
|
|
|
unsigned int *var,
|
|
|
|
|
const char *set_doc, const char *show_doc,
|
|
|
|
|
const char *help_doc,
|
|
|
|
|
cmd_sfunc_ftype *set_func,
|
|
|
|
|
show_value_ftype *show_func,
|
|
|
|
|
struct cmd_list_element **set_list,
|
|
|
|
|
struct cmd_list_element **show_list)
|
|
|
|
|
{
|
|
|
|
|
add_setshow_cmd_full (name, class, var_zuinteger, var,
|
|
|
|
|
set_doc, show_doc, help_doc,
|
|
|
|
|
set_func, show_func,
|
|
|
|
|
set_list, show_list,
|
2009-08-13 16:56:19 +02:00
|
|
|
|
NULL, NULL);
|
2009-01-23 19:47:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
/* Remove the command named NAME from the command list. Return the
|
|
|
|
|
list commands which were aliased to the deleted command. If the
|
2008-12-12 18:58:48 +01:00
|
|
|
|
command had no aliases, return NULL. The various *HOOKs are set to
|
|
|
|
|
the pre- and post-hook commands for the deleted command. If the
|
|
|
|
|
command does not have a hook, the corresponding out parameter is
|
|
|
|
|
set to NULL. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
static struct cmd_list_element *
|
2008-12-12 18:58:48 +01:00
|
|
|
|
delete_cmd (char *name, struct cmd_list_element **list,
|
|
|
|
|
struct cmd_list_element **prehook,
|
|
|
|
|
struct cmd_list_element **prehookee,
|
|
|
|
|
struct cmd_list_element **posthook,
|
|
|
|
|
struct cmd_list_element **posthookee)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2008-12-10 02:05:16 +01:00
|
|
|
|
struct cmd_list_element *iter;
|
|
|
|
|
struct cmd_list_element **previous_chain_ptr;
|
|
|
|
|
struct cmd_list_element *aliases = NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2008-12-12 18:58:48 +01:00
|
|
|
|
*prehook = NULL;
|
|
|
|
|
*prehookee = NULL;
|
|
|
|
|
*posthook = NULL;
|
|
|
|
|
*posthookee = NULL;
|
2008-12-10 02:05:16 +01:00
|
|
|
|
previous_chain_ptr = list;
|
|
|
|
|
|
|
|
|
|
for (iter = *previous_chain_ptr; iter; iter = *previous_chain_ptr)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2008-12-10 02:05:16 +01:00
|
|
|
|
if (strcmp (iter->name, name) == 0)
|
|
|
|
|
{
|
2009-02-06 22:33:59 +01:00
|
|
|
|
if (iter->destroyer)
|
|
|
|
|
iter->destroyer (iter, iter->context);
|
2008-12-10 02:05:16 +01:00
|
|
|
|
if (iter->hookee_pre)
|
|
|
|
|
iter->hookee_pre->hook_pre = 0;
|
2008-12-12 18:58:48 +01:00
|
|
|
|
*prehook = iter->hook_pre;
|
|
|
|
|
*prehookee = iter->hookee_pre;
|
2008-12-10 02:05:16 +01:00
|
|
|
|
if (iter->hookee_post)
|
|
|
|
|
iter->hookee_post->hook_post = 0;
|
2008-12-12 18:58:48 +01:00
|
|
|
|
*posthook = iter->hook_post;
|
|
|
|
|
*posthookee = iter->hookee_post;
|
2008-12-10 02:05:16 +01:00
|
|
|
|
|
|
|
|
|
/* Update the link. */
|
|
|
|
|
*previous_chain_ptr = iter->next;
|
|
|
|
|
|
|
|
|
|
aliases = iter->aliases;
|
|
|
|
|
|
|
|
|
|
/* If this command was an alias, remove it from the list of
|
|
|
|
|
aliases. */
|
|
|
|
|
if (iter->cmd_pointer)
|
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element **prevp = &iter->cmd_pointer->aliases;
|
|
|
|
|
struct cmd_list_element *a = *prevp;
|
|
|
|
|
|
|
|
|
|
while (a != iter)
|
|
|
|
|
{
|
|
|
|
|
prevp = &a->alias_chain;
|
|
|
|
|
a = *prevp;
|
|
|
|
|
}
|
|
|
|
|
*prevp = iter->alias_chain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xfree (iter);
|
|
|
|
|
|
|
|
|
|
/* We won't see another command with the same name. */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
previous_chain_ptr = &iter->next;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2008-12-10 02:05:16 +01:00
|
|
|
|
return aliases;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Shorthands to the commands above. */
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
|
|
|
|
|
/* Add an element to the list of info subcommands. */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
|
|
|
|
add_info (char *name, void (*fun) (char *, int), char *doc)
|
|
|
|
|
{
|
|
|
|
|
return add_cmd (name, no_class, fun, doc, &infolist);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add an alias to the list of info subcommands. */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
|
|
|
|
add_info_alias (char *name, char *oldname, int abbrev_flag)
|
|
|
|
|
{
|
|
|
|
|
return add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add an element to the list of commands. */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
|
|
|
|
add_com (char *name, enum command_class class, void (*fun) (char *, int),
|
|
|
|
|
char *doc)
|
|
|
|
|
{
|
|
|
|
|
return add_cmd (name, class, fun, doc, &cmdlist);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add an alias or abbreviation command to the list of commands. */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
|
|
|
|
add_com_alias (char *name, char *oldname, enum command_class class,
|
|
|
|
|
int abbrev_flag)
|
|
|
|
|
{
|
|
|
|
|
return add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-24 00:21:27 +01:00
|
|
|
|
/* Recursively walk the commandlist structures, and print out the
|
|
|
|
|
documentation of commands that match our regex in either their
|
|
|
|
|
name, or their documentation.
|
|
|
|
|
*/
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
void
|
2010-12-29 03:11:04 +01:00
|
|
|
|
apropos_cmd (struct ui_file *stream,
|
|
|
|
|
struct cmd_list_element *commandlist,
|
2010-05-17 21:28:12 +02:00
|
|
|
|
struct re_pattern_buffer *regex, char *prefix)
|
2000-03-24 00:21:27 +01:00
|
|
|
|
{
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *c;
|
2009-06-19 17:47:09 +02:00
|
|
|
|
int returnvalue;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Walk through the commands. */
|
2000-03-24 00:21:27 +01:00
|
|
|
|
for (c=commandlist;c;c=c->next)
|
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
returnvalue = -1; /* Needed to avoid double printing. */
|
2000-03-24 00:21:27 +01:00
|
|
|
|
if (c->name != NULL)
|
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Try to match against the name. */
|
2010-05-17 21:28:12 +02:00
|
|
|
|
returnvalue = re_search (regex, c->name, strlen(c->name),
|
|
|
|
|
0, strlen (c->name), NULL);
|
2000-03-24 00:21:27 +01:00
|
|
|
|
if (returnvalue >= 0)
|
|
|
|
|
{
|
2006-10-31 12:45:41 +01:00
|
|
|
|
print_help_for_command (c, prefix,
|
|
|
|
|
0 /* don't recurse */, stream);
|
2000-03-24 00:21:27 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-06-19 17:47:09 +02:00
|
|
|
|
if (c->doc != NULL && returnvalue < 0)
|
2000-03-24 00:21:27 +01:00
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Try to match against documentation. */
|
2000-03-24 00:21:27 +01:00
|
|
|
|
if (re_search(regex,c->doc,strlen(c->doc),0,strlen(c->doc),NULL) >=0)
|
|
|
|
|
{
|
2006-10-31 12:45:41 +01:00
|
|
|
|
print_help_for_command (c, prefix,
|
|
|
|
|
0 /* don't recurse */, stream);
|
2000-03-24 00:21:27 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Check if this command has subcommands and is not an
|
|
|
|
|
abbreviation. We skip listing subcommands of abbreviations
|
|
|
|
|
in order to avoid duplicates in the output. */
|
2009-06-19 17:49:35 +02:00
|
|
|
|
if (c->prefixlist != NULL && !c->abbrev_flag)
|
2000-03-24 00:21:27 +01:00
|
|
|
|
{
|
|
|
|
|
/* Recursively call ourselves on the subcommand list,
|
2010-12-29 03:11:04 +01:00
|
|
|
|
passing the right prefix in. */
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
apropos_cmd (stream,*c->prefixlist,regex,c->prefixname);
|
2000-03-24 00:21:27 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* This command really has to deal with two things:
|
2010-12-29 03:11:04 +01:00
|
|
|
|
1) I want documentation on *this string* (usually called by
|
|
|
|
|
"help commandname").
|
|
|
|
|
|
|
|
|
|
2) I want documentation on *this list* (usually called by giving a
|
|
|
|
|
command that requires subcommands. Also called by saying just
|
|
|
|
|
"help".)
|
|
|
|
|
|
|
|
|
|
I am going to split this into two seperate comamnds, help_cmd and
|
|
|
|
|
help_list. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
help_cmd (char *command, struct ui_file *stream)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *c;
|
|
|
|
|
extern struct cmd_list_element *cmdlist;
|
|
|
|
|
|
|
|
|
|
if (!command)
|
|
|
|
|
{
|
|
|
|
|
help_list (cmdlist, "", all_classes, stream);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-21 01:51:01 +02:00
|
|
|
|
if (strcmp (command, "all") == 0)
|
|
|
|
|
{
|
|
|
|
|
help_all (stream);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
c = lookup_cmd (&command, cmdlist, "", 0, 0);
|
|
|
|
|
|
|
|
|
|
if (c == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* There are three cases here.
|
|
|
|
|
If c->prefixlist is nonzero, we have a prefix command.
|
|
|
|
|
Print its documentation, then list its subcommands.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
If c->func is non NULL, we really have a command. Print its
|
|
|
|
|
documentation and return.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
If c->func is NULL, we have a class name. Print its
|
|
|
|
|
documentation (as if it were a command) and then set class to the
|
|
|
|
|
number of this class so that the commands in the class will be
|
|
|
|
|
listed. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
fputs_filtered (c->doc, stream);
|
|
|
|
|
fputs_filtered ("\n", stream);
|
|
|
|
|
|
2002-02-05 05:37:23 +01:00
|
|
|
|
if (c->prefixlist == 0 && c->func != NULL)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return;
|
|
|
|
|
fprintf_filtered (stream, "\n");
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* If this is a prefix command, print it's subcommands. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (c->prefixlist)
|
|
|
|
|
help_list (*c->prefixlist, c->prefixname, all_commands, stream);
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* If this is a class name, print all of the commands in the class. */
|
2002-02-05 05:37:23 +01:00
|
|
|
|
if (c->func == NULL)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
help_list (cmdlist, "", c->class, stream);
|
|
|
|
|
|
2000-11-06 23:44:34 +01:00
|
|
|
|
if (c->hook_pre || c->hook_post)
|
|
|
|
|
fprintf_filtered (stream,
|
|
|
|
|
"\nThis command has a hook (or hooks) defined:\n");
|
|
|
|
|
|
|
|
|
|
if (c->hook_pre)
|
2008-08-30 01:52:34 +02:00
|
|
|
|
fprintf_filtered (stream,
|
2008-08-30 03:54:11 +02:00
|
|
|
|
"\tThis command is run after : %s (pre hook)\n",
|
2000-11-06 23:44:34 +01:00
|
|
|
|
c->hook_pre->name);
|
|
|
|
|
if (c->hook_post)
|
2008-08-30 01:52:34 +02:00
|
|
|
|
fprintf_filtered (stream,
|
2008-08-30 03:54:11 +02:00
|
|
|
|
"\tThis command is run before : %s (post hook)\n",
|
2000-11-06 23:44:34 +01:00
|
|
|
|
c->hook_post->name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get a specific kind of help on a command list.
|
|
|
|
|
*
|
|
|
|
|
* LIST is the list.
|
|
|
|
|
* CMDTYPE is the prefix to use in the title string.
|
|
|
|
|
* CLASS is the class with which to list the nodes of this list (see
|
|
|
|
|
* documentation for help_cmd_list below), As usual, ALL_COMMANDS for
|
|
|
|
|
* everything, ALL_CLASSES for just classes, and non-negative for only things
|
|
|
|
|
* in a specific class.
|
|
|
|
|
* and STREAM is the output stream on which to print things.
|
|
|
|
|
* If you call this routine with a class >= 0, it recurses.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
help_list (struct cmd_list_element *list, char *cmdtype,
|
|
|
|
|
enum command_class class, struct ui_file *stream)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int len;
|
|
|
|
|
char *cmdtype1, *cmdtype2;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* If CMDTYPE is "foo ", CMDTYPE1 gets " foo" and CMDTYPE2 gets "foo sub".
|
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
len = strlen (cmdtype);
|
|
|
|
|
cmdtype1 = (char *) alloca (len + 1);
|
|
|
|
|
cmdtype1[0] = 0;
|
|
|
|
|
cmdtype2 = (char *) alloca (len + 4);
|
|
|
|
|
cmdtype2[0] = 0;
|
|
|
|
|
if (len)
|
|
|
|
|
{
|
|
|
|
|
cmdtype1[0] = ' ';
|
|
|
|
|
strncpy (cmdtype1 + 1, cmdtype, len - 1);
|
|
|
|
|
cmdtype1[len] = 0;
|
|
|
|
|
strncpy (cmdtype2, cmdtype, len - 1);
|
|
|
|
|
strcpy (cmdtype2 + len - 1, " sub");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (class == all_classes)
|
|
|
|
|
fprintf_filtered (stream, "List of classes of %scommands:\n\n", cmdtype2);
|
|
|
|
|
else
|
|
|
|
|
fprintf_filtered (stream, "List of %scommands:\n\n", cmdtype2);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
help_cmd_list (list, class, cmdtype, (int) class >= 0, stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (class == all_classes)
|
2002-04-13 00:44:18 +02:00
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (stream, "\n\
|
|
|
|
|
Type \"help%s\" followed by a class name for a list of commands in ",
|
|
|
|
|
cmdtype1);
|
|
|
|
|
wrap_here ("");
|
|
|
|
|
fprintf_filtered (stream, "that class.");
|
2006-10-31 12:45:41 +01:00
|
|
|
|
|
|
|
|
|
fprintf_filtered (stream, "\n\
|
|
|
|
|
Type \"help all\" for the list of all commands.");
|
2002-04-13 00:44:18 +02:00
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2002-04-13 00:44:18 +02:00
|
|
|
|
fprintf_filtered (stream, "\nType \"help%s\" followed by %scommand name ",
|
1999-07-07 22:19:36 +02:00
|
|
|
|
cmdtype1, cmdtype2);
|
2002-04-13 00:44:18 +02:00
|
|
|
|
wrap_here ("");
|
|
|
|
|
fputs_filtered ("for ", stream);
|
|
|
|
|
wrap_here ("");
|
|
|
|
|
fputs_filtered ("full ", stream);
|
|
|
|
|
wrap_here ("");
|
|
|
|
|
fputs_filtered ("documentation.\n", stream);
|
2006-10-31 12:45:41 +01:00
|
|
|
|
fputs_filtered ("Type \"apropos word\" to search "
|
2010-12-29 03:11:04 +01:00
|
|
|
|
"for commands related to \"word\".\n", stream);
|
2002-04-13 00:44:18 +02:00
|
|
|
|
fputs_filtered ("Command name abbreviations are allowed if unambiguous.\n",
|
|
|
|
|
stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2000-04-21 01:51:01 +02:00
|
|
|
|
static void
|
2000-04-21 07:21:55 +02:00
|
|
|
|
help_all (struct ui_file *stream)
|
2000-04-21 01:51:01 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *c;
|
|
|
|
|
extern struct cmd_list_element *cmdlist;
|
2006-10-31 12:45:41 +01:00
|
|
|
|
int seen_unclassified = 0;
|
2000-04-21 01:51:01 +02:00
|
|
|
|
|
|
|
|
|
for (c = cmdlist; c; c = c->next)
|
|
|
|
|
{
|
|
|
|
|
if (c->abbrev_flag)
|
|
|
|
|
continue;
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* If this is a class name, print all of the commands in the
|
|
|
|
|
class. */
|
2006-10-31 12:45:41 +01:00
|
|
|
|
|
|
|
|
|
if (c->func == NULL)
|
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (stream, "\nCommand class: %s\n\n", c->name);
|
|
|
|
|
help_cmd_list (cmdlist, c->class, "", 1, stream);
|
|
|
|
|
}
|
2000-04-21 01:51:01 +02:00
|
|
|
|
}
|
2006-10-31 12:45:41 +01:00
|
|
|
|
|
|
|
|
|
/* While it's expected that all commands are in some class,
|
|
|
|
|
as a safety measure, we'll print commands outside of any
|
|
|
|
|
class at the end. */
|
|
|
|
|
|
|
|
|
|
for (c = cmdlist; c; c = c->next)
|
|
|
|
|
{
|
|
|
|
|
if (c->abbrev_flag)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (c->class == no_class)
|
|
|
|
|
{
|
|
|
|
|
if (!seen_unclassified)
|
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (stream, "\nUnclassified commands\n\n");
|
|
|
|
|
seen_unclassified = 1;
|
|
|
|
|
}
|
|
|
|
|
print_help_for_command (c, "", 1, stream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-21 01:51:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Print only the first line of STR on STREAM. */
|
2000-12-01 Fernando Nasser <fnasser@redhat.com>
* cli/cli-decode.c: New file. Handle lists of commands, their decoding
and documentation.
(add_cmd, deprecate_cmd, add_abbrev_cmd, add_alias_cmd, add_prefix_cmd,
add_abbrev_prefix_cmd, not_just_help_class_command, empty_sfunc,
add_set_cmd, add_set_enum_cmd, add_set_auto_boolean_cmd,
add_show_from_set, delete_cmd, apropos_cmd, help_cmd, help_list,
help_all, print_doc_line, help_cmd_list, find_cmd, lookup_cmd_1,
undef_cmd_error, lookup_cmd, deprecated_cmd_warning,
lookup_cmd_composition, complete_on_cmdlist, complete_on_enum):
Moved here from command.c.
(add_info, add_info_alias, add_com, add_com_alias): Moved here from
top.c.
* cli/cli-decode.h: Definitions/declarations for the above.
* cli/cli-cmds.c: New file. GDB CLI commands.
(error_no_arg, info_command, show_command, help_command, show_version,
quit_command, pwd_command, cd_command, echo_command, shell_escape,
make_command, show_user, set_debug, show_debug, init_cmd_lists):
Moved here from top.c.
(apropos_command): Moved here from command.c.
(complete_command, source_command): Moved here (part) from top.c.
(is_complete_command): New function. Checks if a command is the
"complete" command.
(init_cli_cmds): New function. Add commands to the CLI (from code
previously in top.c.
* cli/cli-cmds.h: Definitions/declarations for the above.
* cli/cli-script.c: New file. GDB CLI command scripting.
(build_command_line, get_command_line, print_command_lines,
print_command_line, execute_user_command, execute_control_command,
while_command, if_command, arg_cleanup, setup_user_args, locate_arg,
insert_args, realloc_body_list, read_next_line,
recurse_read_control_structure, read_command_lines, free_command_lines,
do_free_command_lines_cleanup, make_cleanup_free_command_lines,
validate_comname, user_defined_command, define_command,
document_command, source_cleanup_lines, do_fclose_cleanup,
show_user_1): Moved here from top.c.
(script_from_file): New function. Implements execution of a script
contained in a file (part of code for the source_command() that used
to exist in top.c).
* cli/cli-script.h: Definitions/declarations for the above.
* cli/cli-setshow.c: New file. Handle set and show GDB CLI commands.
(parse_auto_binary_operation, parse_binary_operation,
do_setshow_command, cmd_show_list): Moved here from command.c.
* cli/cli-setshow.h: Definitions/declarations for the above.
* top.c: Remove all CLI code, except the command loop.
(gdb_init): Call init_cli_cmds().
* command.c: Remove obsolete file.
* command.h: Mark as DEPRECATED.
* gdbcmd.h: Ditto.
* call-cmds.h: Ditto.
* Makefile.in (SFILES): Remove command.c.
(COMMON_OBS): Remove command.o.
(command.o): Remove obsolete target.
(cli_decode_h, cli_cmds_h, cli_script_h, cli_setshow_h): New macros.
Refer to CLI header files.
(cli-decode.o, cli-cmds.o, cli-setshow.o, cli-script.o): New targets.
(SUBDIR_CLI_OBS, SUBDIR_CLI_SRCS, SUBDIR_CLI_DEPS, SUBDIR_CLI_INITS,
SUBDIR_CLI_LDFLAGS, SUBDIR_CLI_CFLAGS, SUBDIR_CLI_ALL, SUBDIR_CLI_CLEAN,
SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): New macros for new cli
subdirectory.
* configure.in (enable_gdbcli): New option. Include the CLI in the
executable (cannot be disabled yet).
(CONFIG_OBS, CONFIG_DEPS, CONFIG_SRCS, CONFIG_INITS, ENABLE_CFLAGS,
CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Add
the corresponding SUBDIR_CLI_* macros if CLI requested.
* configure: Regenerate.
2000-12-01 19:01:38 +01:00
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
print_doc_line (struct ui_file *stream, char *str)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
static char *line_buffer = 0;
|
|
|
|
|
static int line_size;
|
2003-09-20 19:50:28 +02:00
|
|
|
|
char *p;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (!line_buffer)
|
|
|
|
|
{
|
|
|
|
|
line_size = 80;
|
|
|
|
|
line_buffer = (char *) xmalloc (line_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = str;
|
|
|
|
|
while (*p && *p != '\n' && *p != '.' && *p != ',')
|
|
|
|
|
p++;
|
|
|
|
|
if (p - str > line_size - 1)
|
|
|
|
|
{
|
|
|
|
|
line_size = p - str + 1;
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (line_buffer);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
line_buffer = (char *) xmalloc (line_size);
|
|
|
|
|
}
|
|
|
|
|
strncpy (line_buffer, str, p - str);
|
|
|
|
|
line_buffer[p - str] = '\0';
|
|
|
|
|
if (islower (line_buffer[0]))
|
|
|
|
|
line_buffer[0] = toupper (line_buffer[0]);
|
2000-02-03 05:14:45 +01:00
|
|
|
|
ui_out_text (uiout, line_buffer);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2006-10-31 12:45:41 +01:00
|
|
|
|
/* Print one-line help for command C.
|
|
|
|
|
If RECURSE is non-zero, also print one-line descriptions
|
2010-12-29 03:11:04 +01:00
|
|
|
|
of all prefixed subcommands. */
|
2006-10-31 12:45:41 +01:00
|
|
|
|
static void
|
|
|
|
|
print_help_for_command (struct cmd_list_element *c, char *prefix, int recurse,
|
|
|
|
|
struct ui_file *stream)
|
|
|
|
|
{
|
|
|
|
|
fprintf_filtered (stream, "%s%s -- ", prefix, c->name);
|
|
|
|
|
print_doc_line (stream, c->doc);
|
|
|
|
|
fputs_filtered ("\n", stream);
|
|
|
|
|
|
|
|
|
|
if (recurse
|
|
|
|
|
&& c->prefixlist != 0
|
|
|
|
|
&& c->abbrev_flag == 0)
|
|
|
|
|
/* Subcommands of a prefix command typically have 'all_commands'
|
|
|
|
|
as class. If we pass CLASS to recursive invocation,
|
2010-12-29 03:11:04 +01:00
|
|
|
|
most often we won't see anything. */
|
2006-10-31 12:45:41 +01:00
|
|
|
|
help_cmd_list (*c->prefixlist, all_commands, c->prefixname, 1, stream);
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/*
|
|
|
|
|
* Implement a help command on command list LIST.
|
|
|
|
|
* RECURSE should be non-zero if this should be done recursively on
|
|
|
|
|
* all sublists of LIST.
|
|
|
|
|
* PREFIX is the prefix to print before each command name.
|
|
|
|
|
* STREAM is the stream upon which the output should be written.
|
|
|
|
|
* CLASS should be:
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* A non-negative class number to list only commands in that
|
1999-04-16 03:35:26 +02:00
|
|
|
|
* class.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
* ALL_COMMANDS to list all commands in list.
|
|
|
|
|
* ALL_CLASSES to list all classes in list.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*
|
|
|
|
|
* Note that RECURSE will be active on *all* sublists, not just the
|
|
|
|
|
* ones selected by the criteria above (ie. the selection mechanism
|
|
|
|
|
* is at the low level, not the high-level).
|
|
|
|
|
*/
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
help_cmd_list (struct cmd_list_element *list, enum command_class class,
|
|
|
|
|
char *prefix, int recurse, struct ui_file *stream)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2003-09-20 19:50:28 +02:00
|
|
|
|
struct cmd_list_element *c;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
for (c = list; c; c = c->next)
|
2006-10-31 12:45:41 +01:00
|
|
|
|
{
|
2009-10-07 00:47:20 +02:00
|
|
|
|
if (c->abbrev_flag == 0
|
|
|
|
|
&& (class == all_commands
|
|
|
|
|
|| (class == all_classes && c->func == NULL)
|
|
|
|
|
|| (class == c->class && c->func != NULL)))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2006-10-31 12:45:41 +01:00
|
|
|
|
print_help_for_command (c, prefix, recurse, stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
2009-01-14 21:40:09 +01:00
|
|
|
|
else if (c->abbrev_flag == 0 && recurse
|
|
|
|
|
&& class == class_user && c->prefixlist != NULL)
|
|
|
|
|
/* User-defined commands may be subcommands. */
|
2010-12-29 03:11:04 +01:00
|
|
|
|
help_cmd_list (*c->prefixlist, class, c->prefixname,
|
|
|
|
|
recurse, stream);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Search the input clist for 'command'. Return the command if
|
|
|
|
|
found (or NULL if not), and return the number of commands
|
2010-12-29 03:11:04 +01:00
|
|
|
|
found in nfound. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static struct cmd_list_element *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
find_cmd (char *command, int len, struct cmd_list_element *clist,
|
|
|
|
|
int ignore_help_classes, int *nfound)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *found, *c;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
found = (struct cmd_list_element *) NULL;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*nfound = 0;
|
|
|
|
|
for (c = clist; c; c = c->next)
|
|
|
|
|
if (!strncmp (command, c->name, len)
|
2002-02-05 05:37:23 +01:00
|
|
|
|
&& (!ignore_help_classes || c->func))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
found = c;
|
|
|
|
|
(*nfound)++;
|
|
|
|
|
if (c->name[len] == '\0')
|
|
|
|
|
{
|
|
|
|
|
*nfound = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
return found;
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-25 12:45:49 +01:00
|
|
|
|
static int
|
|
|
|
|
find_command_name_length (const char *text)
|
|
|
|
|
{
|
|
|
|
|
const char *p = text;
|
|
|
|
|
|
|
|
|
|
/* Treating underscores as part of command words is important
|
|
|
|
|
so that "set args_foo()" doesn't get interpreted as
|
|
|
|
|
"set args _foo()". */
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Some characters are only used for TUI specific commands.
|
|
|
|
|
However, they are always allowed for the sake of consistency.
|
|
|
|
|
|
|
|
|
|
The XDB compatibility characters are only allowed when using the
|
|
|
|
|
right mode because they clash with other GDB commands -
|
|
|
|
|
specifically '/' is used as a suffix for print, examine and
|
|
|
|
|
display.
|
|
|
|
|
|
|
|
|
|
Note that this is larger than the character set allowed when
|
|
|
|
|
creating user-defined commands. */
|
|
|
|
|
|
2009-10-07 00:47:20 +02:00
|
|
|
|
while (isalnum (*p) || *p == '-' || *p == '_'
|
2005-11-25 12:45:49 +01:00
|
|
|
|
/* Characters used by TUI specific commands. */
|
2009-10-07 00:47:20 +02:00
|
|
|
|
|| *p == '+' || *p == '<' || *p == '>' || *p == '$'
|
2005-11-25 12:45:49 +01:00
|
|
|
|
/* Characters used for XDB compatibility. */
|
2009-10-07 00:47:20 +02:00
|
|
|
|
|| (xdb_commands && (*p == '!' || *p == '/' || *p == '?')))
|
2005-11-25 12:45:49 +01:00
|
|
|
|
p++;
|
|
|
|
|
|
|
|
|
|
return p - text;
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* This routine takes a line of TEXT and a CLIST in which to start the
|
|
|
|
|
lookup. When it returns it will have incremented the text pointer past
|
|
|
|
|
the section of text it matched, set *RESULT_LIST to point to the list in
|
|
|
|
|
which the last word was matched, and will return a pointer to the cmd
|
|
|
|
|
list element which the text matches. It will return NULL if no match at
|
|
|
|
|
all was possible. It will return -1 (cast appropriately, ick) if ambigous
|
|
|
|
|
matches are possible; in this case *RESULT_LIST will be set to point to
|
|
|
|
|
the list in which there are ambiguous choices (and *TEXT will be set to
|
|
|
|
|
the ambiguous text string).
|
|
|
|
|
|
|
|
|
|
If the located command was an abbreviation, this routine returns the base
|
|
|
|
|
command of the abbreviation.
|
|
|
|
|
|
|
|
|
|
It does no error reporting whatsoever; control will always return
|
|
|
|
|
to the superior routine.
|
|
|
|
|
|
|
|
|
|
In the case of an ambiguous return (-1), *RESULT_LIST will be set to point
|
|
|
|
|
at the prefix_command (ie. the best match) *or* (special case) will be NULL
|
|
|
|
|
if no prefix command was ever found. For example, in the case of "info a",
|
|
|
|
|
"info" matches without ambiguity, but "a" could be "args" or "address", so
|
|
|
|
|
*RESULT_LIST is set to the cmd_list_element for "info". So in this case
|
|
|
|
|
RESULT_LIST should not be interpeted as a pointer to the beginning of a
|
|
|
|
|
list; it simply points to a specific command. In the case of an ambiguous
|
|
|
|
|
return *TEXT is advanced past the last non-ambiguous prefix (e.g.
|
|
|
|
|
"info t" can be "info types" or "info target"; upon return *TEXT has been
|
|
|
|
|
advanced past "info ").
|
|
|
|
|
|
|
|
|
|
If RESULT_LIST is NULL, don't set *RESULT_LIST (but don't otherwise
|
|
|
|
|
affect the operation).
|
|
|
|
|
|
|
|
|
|
This routine does *not* modify the text pointed to by TEXT.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
If IGNORE_HELP_CLASSES is nonzero, ignore any command list elements which
|
|
|
|
|
are actually help classes rather than commands (i.e. the function field of
|
|
|
|
|
the struct cmd_list_element is NULL). */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
lookup_cmd_1 (char **text, struct cmd_list_element *clist,
|
|
|
|
|
struct cmd_list_element **result_list, int ignore_help_classes)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2005-11-25 12:45:49 +01:00
|
|
|
|
char *command;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
int len, tmp, nfound;
|
|
|
|
|
struct cmd_list_element *found, *c;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
char *line = *text;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
while (**text == ' ' || **text == '\t')
|
|
|
|
|
(*text)++;
|
|
|
|
|
|
2005-11-25 12:45:49 +01:00
|
|
|
|
/* Identify the name of the command. */
|
|
|
|
|
len = find_command_name_length (*text);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* If nothing but whitespace, return 0. */
|
2005-11-25 12:45:49 +01:00
|
|
|
|
if (len == 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* *text and p now bracket the first command word to lookup (and
|
2010-12-29 03:11:04 +01:00
|
|
|
|
it's length is len). We copy this into a local temporary. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
command = (char *) alloca (len + 1);
|
2008-07-30 03:10:17 +02:00
|
|
|
|
memcpy (command, *text, len);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
command[len] = '\0';
|
|
|
|
|
|
|
|
|
|
/* Look it up. */
|
|
|
|
|
found = 0;
|
|
|
|
|
nfound = 0;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We didn't find the command in the entered case, so lower case it
|
|
|
|
|
and search again. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (!found || nfound == 0)
|
|
|
|
|
{
|
|
|
|
|
for (tmp = 0; tmp < len; tmp++)
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
char x = command[tmp];
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
command[tmp] = isupper (x) ? tolower (x) : x;
|
|
|
|
|
}
|
|
|
|
|
found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If nothing matches, we have a simple failure. */
|
|
|
|
|
if (nfound == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (nfound > 1)
|
|
|
|
|
{
|
|
|
|
|
if (result_list != NULL)
|
|
|
|
|
/* Will be modified in calling routine
|
|
|
|
|
if we know what the prefix command is. */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
*result_list = 0;
|
2011-03-12 23:59:24 +01:00
|
|
|
|
return CMD_LIST_AMBIGUOUS; /* Ambiguous. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We've matched something on this list. Move text pointer forward. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2005-11-25 12:45:49 +01:00
|
|
|
|
*text += len;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (found->cmd_pointer)
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We drop the alias (abbreviation) in favor of the command it
|
|
|
|
|
is pointing to. If the alias is deprecated, though, we need to
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
warn the user about it before we drop it. Note that while we
|
|
|
|
|
are warning about the alias, we may also warn about the command
|
|
|
|
|
itself and we will adjust the appropriate DEPRECATED_WARN_USER
|
2010-12-29 03:11:04 +01:00
|
|
|
|
flags. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
if (found->flags & DEPRECATED_WARN_USER)
|
2008-05-04 01:24:17 +02:00
|
|
|
|
deprecated_cmd_warning (&line);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
found = found->cmd_pointer;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* If we found a prefix command, keep looking. */
|
|
|
|
|
|
|
|
|
|
if (found->prefixlist)
|
|
|
|
|
{
|
|
|
|
|
c = lookup_cmd_1 (text, *found->prefixlist, result_list,
|
|
|
|
|
ignore_help_classes);
|
|
|
|
|
if (!c)
|
|
|
|
|
{
|
|
|
|
|
/* Didn't find anything; this is as far as we got. */
|
|
|
|
|
if (result_list != NULL)
|
|
|
|
|
*result_list = clist;
|
|
|
|
|
return found;
|
|
|
|
|
}
|
2011-03-12 23:59:24 +01:00
|
|
|
|
else if (c == CMD_LIST_AMBIGUOUS)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We've gotten this far properly, but the next step is
|
|
|
|
|
ambiguous. We need to set the result list to the best
|
1999-04-16 03:35:26 +02:00
|
|
|
|
we've found (if an inferior hasn't already set it). */
|
|
|
|
|
if (result_list != NULL)
|
|
|
|
|
if (!*result_list)
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* This used to say *result_list = *found->prefixlist.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
If that was correct, need to modify the documentation
|
2010-12-29 03:11:04 +01:00
|
|
|
|
at the top of this function to clarify what is
|
|
|
|
|
supposed to be going on. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*result_list = found;
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We matched! */
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (result_list != NULL)
|
|
|
|
|
*result_list = clist;
|
|
|
|
|
return found;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* All this hair to move the space to the front of cmdtype */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
undef_cmd_error (char *cmdtype, char *q)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Undefined %scommand: \"%s\". Try \"help%s%.*s\"."),
|
1999-07-07 22:19:36 +02:00
|
|
|
|
cmdtype,
|
|
|
|
|
q,
|
|
|
|
|
*cmdtype ? " " : "",
|
2002-03-23 18:38:13 +01:00
|
|
|
|
(int) strlen (cmdtype) - 1,
|
1999-07-07 22:19:36 +02:00
|
|
|
|
cmdtype);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Look up the contents of *LINE as a command in the command list LIST.
|
|
|
|
|
LIST is a chain of struct cmd_list_element's.
|
|
|
|
|
If it is found, return the struct cmd_list_element for that command
|
|
|
|
|
and update *LINE to point after the command name, at the first argument.
|
|
|
|
|
If not found, call error if ALLOW_UNKNOWN is zero
|
|
|
|
|
otherwise (or if error returns) return zero.
|
|
|
|
|
Call error if specified command is ambiguous,
|
|
|
|
|
unless ALLOW_UNKNOWN is negative.
|
|
|
|
|
CMDTYPE precedes the word "command" in the error message.
|
|
|
|
|
|
|
|
|
|
If INGNORE_HELP_CLASSES is nonzero, ignore any command list
|
|
|
|
|
elements which are actually help classes rather than commands (i.e.
|
|
|
|
|
the function field of the struct cmd_list_element is 0). */
|
|
|
|
|
|
|
|
|
|
struct cmd_list_element *
|
2000-07-30 03:48:28 +02:00
|
|
|
|
lookup_cmd (char **line, struct cmd_list_element *list, char *cmdtype,
|
|
|
|
|
int allow_unknown, int ignore_help_classes)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *last_list = 0;
|
2007-08-01 22:26:31 +02:00
|
|
|
|
struct cmd_list_element *c;
|
2000-12-07 00:27:41 +01:00
|
|
|
|
|
|
|
|
|
/* Note: Do not remove trailing whitespace here because this
|
|
|
|
|
would be wrong for complete_command. Jim Kingdon */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2007-08-01 22:26:31 +02:00
|
|
|
|
if (!*line)
|
|
|
|
|
error (_("Lack of needed %scommand"), cmdtype);
|
|
|
|
|
|
|
|
|
|
c = lookup_cmd_1 (line, list, &last_list, ignore_help_classes);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (!c)
|
|
|
|
|
{
|
|
|
|
|
if (!allow_unknown)
|
|
|
|
|
{
|
2007-08-01 22:26:31 +02:00
|
|
|
|
char *q;
|
|
|
|
|
int len = find_command_name_length (*line);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2007-08-01 22:26:31 +02:00
|
|
|
|
q = (char *) alloca (len + 1);
|
|
|
|
|
strncpy (q, *line, len);
|
|
|
|
|
q[len] = '\0';
|
|
|
|
|
undef_cmd_error (cmdtype, q);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2011-03-12 23:59:24 +01:00
|
|
|
|
else if (c == CMD_LIST_AMBIGUOUS)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
/* Ambigous. Local values should be off prefixlist or called
|
1999-07-07 22:19:36 +02:00
|
|
|
|
values. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
int local_allow_unknown = (last_list ? last_list->allow_unknown :
|
|
|
|
|
allow_unknown);
|
|
|
|
|
char *local_cmdtype = last_list ? last_list->prefixname : cmdtype;
|
|
|
|
|
struct cmd_list_element *local_list =
|
2010-05-17 21:28:12 +02:00
|
|
|
|
(last_list ? *(last_list->prefixlist) : list);
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
if (local_allow_unknown < 0)
|
|
|
|
|
{
|
|
|
|
|
if (last_list)
|
|
|
|
|
return last_list; /* Found something. */
|
|
|
|
|
else
|
|
|
|
|
return 0; /* Found nothing. */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Report as error. */
|
|
|
|
|
int amb_len;
|
|
|
|
|
char ambbuf[100];
|
|
|
|
|
|
|
|
|
|
for (amb_len = 0;
|
|
|
|
|
((*line)[amb_len] && (*line)[amb_len] != ' '
|
|
|
|
|
&& (*line)[amb_len] != '\t');
|
|
|
|
|
amb_len++)
|
|
|
|
|
;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
ambbuf[0] = 0;
|
|
|
|
|
for (c = local_list; c; c = c->next)
|
|
|
|
|
if (!strncmp (*line, c->name, amb_len))
|
|
|
|
|
{
|
2011-01-06 01:57:05 +01:00
|
|
|
|
if (strlen (ambbuf) + strlen (c->name) + 6
|
|
|
|
|
< (int) sizeof ambbuf)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
if (strlen (ambbuf))
|
|
|
|
|
strcat (ambbuf, ", ");
|
|
|
|
|
strcat (ambbuf, c->name);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
strcat (ambbuf, "..");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Ambiguous %scommand \"%s\": %s."), local_cmdtype,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
*line, ambbuf);
|
|
|
|
|
return 0; /* lint */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We've got something. It may still not be what the caller
|
|
|
|
|
wants (if this command *needs* a subcommand). */
|
|
|
|
|
while (**line == ' ' || **line == '\t')
|
|
|
|
|
(*line)++;
|
|
|
|
|
|
|
|
|
|
if (c->prefixlist && **line && !c->allow_unknown)
|
|
|
|
|
undef_cmd_error (c->prefixname, *line);
|
|
|
|
|
|
|
|
|
|
/* Seems to be what he wants. Return it. */
|
|
|
|
|
return c;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We are here presumably because an alias or command in *TEXT is
|
|
|
|
|
deprecated and a warning message should be generated. This
|
|
|
|
|
function decodes *TEXT and potentially generates a warning message
|
|
|
|
|
as outlined below.
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
Example for 'set endian big' which has a fictitious alias 'seb'.
|
|
|
|
|
|
|
|
|
|
If alias wasn't used in *TEXT, and the command is deprecated:
|
|
|
|
|
"warning: 'set endian big' is deprecated."
|
|
|
|
|
|
|
|
|
|
If alias was used, and only the alias is deprecated:
|
|
|
|
|
"warning: 'seb' an alias for the command 'set endian big' is deprecated."
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
If alias was used and command is deprecated (regardless of whether
|
|
|
|
|
the alias itself is deprecated:
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
"warning: 'set endian big' (seb) is deprecated."
|
|
|
|
|
|
|
|
|
|
After the message has been sent, clear the appropriate flags in the
|
|
|
|
|
command and/or the alias so the user is no longer bothered.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
deprecated_cmd_warning (char **text)
|
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *alias = NULL;
|
|
|
|
|
struct cmd_list_element *prefix_cmd = NULL;
|
|
|
|
|
struct cmd_list_element *cmd = NULL;
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
if (!lookup_cmd_composition (*text, &alias, &prefix_cmd, &cmd))
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Return if text doesn't evaluate to a command. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!((alias ? (alias->flags & DEPRECATED_WARN_USER) : 0)
|
|
|
|
|
|| (cmd->flags & DEPRECATED_WARN_USER) ) )
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Return if nothing is deprecated. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
printf_filtered ("Warning:");
|
|
|
|
|
|
|
|
|
|
if (alias && !(cmd->flags & CMD_DEPRECATED))
|
|
|
|
|
printf_filtered (" '%s', an alias for the", alias->name);
|
|
|
|
|
|
|
|
|
|
printf_filtered (" command '");
|
|
|
|
|
|
|
|
|
|
if (prefix_cmd)
|
|
|
|
|
printf_filtered ("%s", prefix_cmd->prefixname);
|
|
|
|
|
|
|
|
|
|
printf_filtered ("%s", cmd->name);
|
|
|
|
|
|
|
|
|
|
if (alias && (cmd->flags & CMD_DEPRECATED))
|
|
|
|
|
printf_filtered ("' (%s) is deprecated.\n", alias->name);
|
|
|
|
|
else
|
|
|
|
|
printf_filtered ("' is deprecated.\n");
|
|
|
|
|
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* If it is only the alias that is deprecated, we want to indicate
|
|
|
|
|
the new alias, otherwise we'll indicate the new command. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
if (alias && !(cmd->flags & CMD_DEPRECATED))
|
|
|
|
|
{
|
|
|
|
|
if (alias->replacement)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
printf_filtered ("Use '%s'.\n\n", alias->replacement);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
else
|
2010-05-17 21:28:12 +02:00
|
|
|
|
printf_filtered ("No alternative known.\n\n");
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (cmd->replacement)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
printf_filtered ("Use '%s'.\n\n", cmd->replacement);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
else
|
2010-05-17 21:28:12 +02:00
|
|
|
|
printf_filtered ("No alternative known.\n\n");
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We've warned you, now we'll keep quiet. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
if (alias)
|
|
|
|
|
alias->flags &= ~DEPRECATED_WARN_USER;
|
|
|
|
|
|
|
|
|
|
cmd->flags &= ~DEPRECATED_WARN_USER;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Look up the contents of LINE as a command in the command list 'cmdlist'.
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
Return 1 on success, 0 on failure.
|
|
|
|
|
|
|
|
|
|
If LINE refers to an alias, *alias will point to that alias.
|
|
|
|
|
|
|
|
|
|
If LINE is a postfix command (i.e. one that is preceeded by a prefix
|
|
|
|
|
command) set *prefix_cmd.
|
|
|
|
|
|
|
|
|
|
Set *cmd to point to the command LINE indicates.
|
|
|
|
|
|
|
|
|
|
If any of *alias, *prefix_cmd, or *cmd cannot be determined or do not
|
|
|
|
|
exist, they are NULL when we return.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
lookup_cmd_composition (char *text,
|
|
|
|
|
struct cmd_list_element **alias,
|
|
|
|
|
struct cmd_list_element **prefix_cmd,
|
|
|
|
|
struct cmd_list_element **cmd)
|
|
|
|
|
{
|
2005-11-25 12:45:49 +01:00
|
|
|
|
char *command;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
int len, tmp, nfound;
|
|
|
|
|
struct cmd_list_element *cur_list;
|
|
|
|
|
struct cmd_list_element *prev_cmd;
|
2010-05-17 21:28:12 +02:00
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
*alias = NULL;
|
|
|
|
|
*prefix_cmd = NULL;
|
|
|
|
|
*cmd = NULL;
|
|
|
|
|
|
|
|
|
|
cur_list = cmdlist;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
2011-04-19 20:04:11 +02:00
|
|
|
|
/* Go through as many command lists as we need to,
|
2010-12-29 03:11:04 +01:00
|
|
|
|
to find the command TEXT refers to. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
prev_cmd = *cmd;
|
|
|
|
|
|
|
|
|
|
while (*text == ' ' || *text == '\t')
|
2010-05-17 21:28:12 +02:00
|
|
|
|
(text)++;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
2005-11-25 12:45:49 +01:00
|
|
|
|
/* Identify the name of the command. */
|
|
|
|
|
len = find_command_name_length (text);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
/* If nothing but whitespace, return. */
|
2005-11-25 12:45:49 +01:00
|
|
|
|
if (len == 0)
|
|
|
|
|
return 0;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
2010-05-17 21:28:12 +02:00
|
|
|
|
/* Text is the start of the first command word to lookup (and
|
|
|
|
|
it's length is len). We copy this into a local temporary. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
command = (char *) alloca (len + 1);
|
2008-07-30 03:10:17 +02:00
|
|
|
|
memcpy (command, text, len);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
command[len] = '\0';
|
|
|
|
|
|
|
|
|
|
/* Look it up. */
|
|
|
|
|
*cmd = 0;
|
|
|
|
|
nfound = 0;
|
|
|
|
|
*cmd = find_cmd (command, len, cur_list, 1, &nfound);
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* We didn't find the command in the entered case, so lower case
|
|
|
|
|
it and search again.
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
*/
|
|
|
|
|
if (!*cmd || nfound == 0)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
{
|
|
|
|
|
for (tmp = 0; tmp < len; tmp++)
|
|
|
|
|
{
|
|
|
|
|
char x = command[tmp];
|
|
|
|
|
|
|
|
|
|
command[tmp] = isupper (x) ? tolower (x) : x;
|
|
|
|
|
}
|
|
|
|
|
*cmd = find_cmd (command, len, cur_list, 1, &nfound);
|
|
|
|
|
}
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
2011-03-12 23:59:24 +01:00
|
|
|
|
if (*cmd == CMD_LIST_AMBIGUOUS)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
{
|
|
|
|
|
return 0; /* ambiguous */
|
|
|
|
|
}
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
|
|
if (*cmd == NULL)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
return 0; /* nothing found */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
else
|
2010-05-17 21:28:12 +02:00
|
|
|
|
{
|
|
|
|
|
if ((*cmd)->cmd_pointer)
|
|
|
|
|
{
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* cmd was actually an alias, we note that an alias was
|
|
|
|
|
used (by assigning *alais) and we set *cmd. */
|
2010-05-17 21:28:12 +02:00
|
|
|
|
*alias = *cmd;
|
|
|
|
|
*cmd = (*cmd)->cmd_pointer;
|
|
|
|
|
}
|
|
|
|
|
*prefix_cmd = prev_cmd;
|
|
|
|
|
}
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
if ((*cmd)->prefixlist)
|
2010-05-17 21:28:12 +02:00
|
|
|
|
cur_list = *(*cmd)->prefixlist;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
else
|
2010-05-17 21:28:12 +02:00
|
|
|
|
return 1;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
2005-11-25 12:45:49 +01:00
|
|
|
|
text += len;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Helper function for SYMBOL_COMPLETION_FUNCTION. */
|
|
|
|
|
|
|
|
|
|
/* Return a vector of char pointers which point to the different
|
2010-12-29 03:11:04 +01:00
|
|
|
|
possible completions in LIST of TEXT.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
WORD points in the same buffer as TEXT, and completions should be
|
2010-12-29 03:11:04 +01:00
|
|
|
|
returned relative to this position. For example, suppose TEXT is
|
|
|
|
|
"foo" and we want to complete to "foobar". If WORD is "oo", return
|
1999-04-16 03:35:26 +02:00
|
|
|
|
"oobar"; if WORD is "baz/foo", return "baz/foobar". */
|
|
|
|
|
|
|
|
|
|
char **
|
2000-07-30 03:48:28 +02:00
|
|
|
|
complete_on_cmdlist (struct cmd_list_element *list, char *text, char *word)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct cmd_list_element *ptr;
|
|
|
|
|
char **matchlist;
|
|
|
|
|
int sizeof_matchlist;
|
|
|
|
|
int matches;
|
|
|
|
|
int textlen = strlen (text);
|
2010-04-26 20:37:14 +02:00
|
|
|
|
int pass;
|
|
|
|
|
int saw_deprecated_match = 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
sizeof_matchlist = 10;
|
|
|
|
|
matchlist = (char **) xmalloc (sizeof_matchlist * sizeof (char *));
|
|
|
|
|
matches = 0;
|
|
|
|
|
|
2010-04-26 20:37:14 +02:00
|
|
|
|
/* We do one or two passes. In the first pass, we skip deprecated
|
|
|
|
|
commands. If we see no matching commands in the first pass, and
|
|
|
|
|
if we did happen to see a matching deprecated command, we do
|
|
|
|
|
another loop to collect those. */
|
|
|
|
|
for (pass = 0; matches == 0 && pass < 2; ++pass)
|
|
|
|
|
{
|
|
|
|
|
for (ptr = list; ptr; ptr = ptr->next)
|
|
|
|
|
if (!strncmp (ptr->name, text, textlen)
|
|
|
|
|
&& !ptr->abbrev_flag
|
|
|
|
|
&& (ptr->func
|
|
|
|
|
|| ptr->prefixlist))
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2010-04-26 20:37:14 +02:00
|
|
|
|
if (pass == 0)
|
|
|
|
|
{
|
|
|
|
|
if ((ptr->flags & CMD_DEPRECATED) != 0)
|
|
|
|
|
{
|
|
|
|
|
saw_deprecated_match = 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2010-04-26 20:37:14 +02:00
|
|
|
|
if (matches == sizeof_matchlist)
|
|
|
|
|
{
|
|
|
|
|
sizeof_matchlist *= 2;
|
|
|
|
|
matchlist = (char **) xrealloc ((char *) matchlist,
|
|
|
|
|
(sizeof_matchlist
|
|
|
|
|
* sizeof (char *)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
matchlist[matches] = (char *)
|
|
|
|
|
xmalloc (strlen (word) + strlen (ptr->name) + 1);
|
|
|
|
|
if (word == text)
|
|
|
|
|
strcpy (matchlist[matches], ptr->name);
|
|
|
|
|
else if (word > text)
|
|
|
|
|
{
|
|
|
|
|
/* Return some portion of ptr->name. */
|
|
|
|
|
strcpy (matchlist[matches], ptr->name + (word - text));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Return some of text plus ptr->name. */
|
|
|
|
|
strncpy (matchlist[matches], word, text - word);
|
|
|
|
|
matchlist[matches][text - word] = '\0';
|
|
|
|
|
strcat (matchlist[matches], ptr->name);
|
|
|
|
|
}
|
|
|
|
|
++matches;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
2010-04-26 20:37:14 +02:00
|
|
|
|
/* If we saw no matching deprecated commands in the first pass,
|
|
|
|
|
just bail out. */
|
|
|
|
|
if (!saw_deprecated_match)
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (matches == 0)
|
|
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (matchlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
matchlist = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
matchlist = (char **) xrealloc ((char *) matchlist, ((matches + 1)
|
|
|
|
|
* sizeof (char *)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
matchlist[matches] = (char *) 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return matchlist;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Helper function for SYMBOL_COMPLETION_FUNCTION. */
|
|
|
|
|
|
|
|
|
|
/* Return a vector of char pointers which point to the different
|
2010-12-29 03:11:04 +01:00
|
|
|
|
possible completions in CMD of TEXT.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
WORD points in the same buffer as TEXT, and completions should be
|
|
|
|
|
returned relative to this position. For example, suppose TEXT is "foo"
|
|
|
|
|
and we want to complete to "foobar". If WORD is "oo", return
|
|
|
|
|
"oobar"; if WORD is "baz/foo", return "baz/foobar". */
|
|
|
|
|
|
|
|
|
|
char **
|
2000-06-08 02:52:56 +02:00
|
|
|
|
complete_on_enum (const char *enumlist[],
|
|
|
|
|
char *text,
|
|
|
|
|
char *word)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
char **matchlist;
|
|
|
|
|
int sizeof_matchlist;
|
|
|
|
|
int matches;
|
|
|
|
|
int textlen = strlen (text);
|
|
|
|
|
int i;
|
2000-06-08 02:52:56 +02:00
|
|
|
|
const char *name;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
sizeof_matchlist = 10;
|
|
|
|
|
matchlist = (char **) xmalloc (sizeof_matchlist * sizeof (char *));
|
|
|
|
|
matches = 0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; (name = enumlist[i]) != NULL; i++)
|
|
|
|
|
if (strncmp (name, text, textlen) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (matches == sizeof_matchlist)
|
|
|
|
|
{
|
|
|
|
|
sizeof_matchlist *= 2;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
matchlist = (char **) xrealloc ((char *) matchlist,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
(sizeof_matchlist
|
|
|
|
|
* sizeof (char *)));
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
matchlist[matches] = (char *)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
xmalloc (strlen (word) + strlen (name) + 1);
|
|
|
|
|
if (word == text)
|
|
|
|
|
strcpy (matchlist[matches], name);
|
|
|
|
|
else if (word > text)
|
|
|
|
|
{
|
|
|
|
|
/* Return some portion of name. */
|
|
|
|
|
strcpy (matchlist[matches], name + (word - text));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Return some of text plus name. */
|
|
|
|
|
strncpy (matchlist[matches], word, text - word);
|
|
|
|
|
matchlist[matches][text - word] = '\0';
|
|
|
|
|
strcat (matchlist[matches], name);
|
|
|
|
|
}
|
|
|
|
|
++matches;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (matches == 0)
|
|
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
|
xfree (matchlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
matchlist = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
matchlist = (char **) xrealloc ((char *) matchlist, ((matches + 1)
|
2011-01-06 01:57:05 +01:00
|
|
|
|
* sizeof (char *)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
matchlist[matches] = (char *) 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return matchlist;
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-03 19:35:21 +02:00
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Check function pointer. */
|
2002-07-03 19:35:21 +02:00
|
|
|
|
int
|
|
|
|
|
cmd_func_p (struct cmd_list_element *cmd)
|
|
|
|
|
{
|
|
|
|
|
return (cmd->func != NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-12-29 03:11:04 +01:00
|
|
|
|
/* Call the command function. */
|
2002-07-03 19:35:21 +02:00
|
|
|
|
void
|
|
|
|
|
cmd_func (struct cmd_list_element *cmd, char *args, int from_tty)
|
|
|
|
|
{
|
|
|
|
|
if (cmd_func_p (cmd))
|
|
|
|
|
(*cmd->func) (cmd, args, from_tty);
|
|
|
|
|
else
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
|
error (_("Invalid command"));
|
2002-07-03 19:35:21 +02:00
|
|
|
|
}
|