X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fcli%2Fcli-script.h;h=736ebb3a7bd30d2e26db8b49a23f73ffd30d9cbf;hb=e94802301b37de0e75e9329a96b0e70d38e5ead9;hp=9567f6e9a0b900bbd380d5005109ee7a2f87237d;hpb=7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/cli/cli-script.h b/gdb/cli/cli-script.h index 9567f6e9a0..736ebb3a7b 100644 --- a/gdb/cli/cli-script.h +++ b/gdb/cli/cli-script.h @@ -1,6 +1,5 @@ /* Header file for GDB CLI command implementation library. - Copyright (c) 2000, 2002, 2007, 2008, 2009, 2010, 2011 - Free Software Foundation, Inc. + Copyright (C) 2000-2018 Free Software Foundation, Inc. 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 @@ -19,49 +18,151 @@ #define CLI_SCRIPT_H 1 struct ui_file; -struct command_line; struct cmd_list_element; +/* * Control types for commands. */ + +enum misc_command_type +{ + ok_command, + end_command, + else_command, + nop_command +}; + +enum command_control_type +{ + simple_control, + break_control, + continue_control, + while_control, + if_control, + commands_control, + python_control, + compile_control, + guile_control, + while_stepping_control, + define_control, + invalid_control +}; + +struct command_line; + +extern void free_command_lines (struct command_line **); + +/* A deleter for command_line that calls free_command_lines. */ + +struct command_lines_deleter +{ + void operator() (command_line *cmd_lines) const + { + free_command_lines (&cmd_lines); + } +}; + +/* A reference-counted struct command_line. */ +typedef std::shared_ptr counted_command_line; + +/* * Structure for saved commands lines (for breakpoints, defined + commands, etc). */ + +struct command_line +{ + explicit command_line (command_control_type type_, char *line_ = nullptr) + : line (line_), + control_type (type_) + { + memset (&control_u, 0, sizeof (control_u)); + } + + DISABLE_COPY_AND_ASSIGN (command_line); + + struct command_line *next = nullptr; + char *line; + enum command_control_type control_type; + union + { + struct + { + enum compile_i_scope_types scope; + void *scope_data; + } + compile; + } + control_u; + /* * For composite commands, the nested lists of commands. For + example, for "if" command this will contain the then branch and + the else branch, if that is available. */ + counted_command_line body_list_0; + counted_command_line body_list_1; + +private: + + friend void free_command_lines (struct command_line **); + + ~command_line () + { + xfree (line); + } +}; + +extern counted_command_line read_command_lines + (const char *, int, int, gdb::function_view); +extern counted_command_line read_command_lines_1 + (gdb::function_view, int, + gdb::function_view); + + /* Exported to cli/cli-cmds.c */ extern void script_from_file (FILE *stream, const char *file); -extern void document_command (char *, int); +extern void show_user_1 (struct cmd_list_element *c, + const char *prefix, + const char *name, + struct ui_file *stream); -extern void define_command (char *, int); +/* Execute the commands in CMDLINES. */ -extern void while_command (char *arg, int from_tty); +extern void execute_control_commands (struct command_line *cmdlines, + int from_tty); -extern void if_command (char *arg, int from_tty); +/* Run execute_control_commands for COMMANDS. Capture its output into + the returned string, do not display it to the screen. BATCH_FLAG + will be temporarily set to true. */ -extern void show_user_1 (struct cmd_list_element *c, char *prefix, - char *name, struct ui_file *stream); +extern std::string execute_control_commands_to_string + (struct command_line *commands, int from_tty); /* Exported to gdb/breakpoint.c */ extern enum command_control_type - execute_control_command (struct command_line *cmd); + execute_control_command (struct command_line *cmd, + int from_tty = 0); extern enum command_control_type execute_control_command_untraced (struct command_line *cmd); -extern struct command_line *get_command_line (enum command_control_type, - char *); +extern counted_command_line get_command_line (enum command_control_type, + const char *); extern void print_command_lines (struct ui_out *, struct command_line *, unsigned int); -extern struct command_line * copy_command_lines (struct command_line *cmds); - -struct cleanup *make_cleanup_free_command_lines (struct command_line **arg); - /* Exported to gdb/infrun.c */ -extern void execute_user_command (struct cmd_list_element *c, char *args); +extern void execute_user_command (struct cmd_list_element *c, const char *args); + +/* If we're in a user-defined command, replace any $argc/$argN + reference found in LINE with the arguments that were passed to the + command. Otherwise, treat $argc/$argN as normal convenience + variables. */ +extern std::string insert_user_defined_cmd_args (const char *line); /* Exported to top.c */ -extern void print_command_trace (const char *cmd); +extern void print_command_trace (const char *cmd, ...) + ATTRIBUTE_PRINTF (1, 2); /* Exported to event-top.c */