gdb/command.h - gdb

Data types defined

Macros defined

Source code

  1. /* Header file for command creation.

  2.    Copyright (C) 1986-2015 Free Software Foundation, Inc.

  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 3 of the License, or
  6.    (at your option) any later version.

  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.

  11.    You should have received a copy of the GNU General Public License
  12.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  13. #if !defined (COMMAND_H)
  14. #define COMMAND_H 1

  15. #include "gdb_vecs.h"

  16. /* This file defines the public interface for any code wanting to
  17.    create commands.  */

  18. /* Command classes are top-level categories into which commands are
  19.    broken down for "help" purposes.

  20.    Notes on classes: class_alias is for alias commands which are not
  21.    abbreviations of the original command.  class-pseudo is for
  22.    commands which are not really commands nor help topics ("stop").  */

  23. enum command_class
  24. {
  25.   /* Special args to help_list */
  26.   class_deprecated = -3, all_classes = -2, all_commands = -1,
  27.   /* Classes of commands */
  28.   no_class = -1, class_run = 0, class_vars, class_stack, class_files,
  29.   class_support, class_info, class_breakpoint, class_trace,
  30.   class_alias, class_bookmark, class_obscure, class_maintenance,
  31.   class_pseudo, class_tui, class_user, class_xdb,
  32.   no_set_class        /* Used for "show" commands that have no corresponding
  33.                    "set" command.  */
  34. };

  35. /* FIXME: cagney/2002-03-17: Once cmd_type() has been removed, ``enum
  36.    cmd_types'' can be moved from "command.h" to "cli-decode.h".  */
  37. /* Not a set/show command.  Note that some commands which begin with
  38.    "set" or "show" might be in this category, if their syntax does
  39.    not fall into one of the following categories.  */
  40. typedef enum cmd_types
  41.   {
  42.     not_set_cmd,
  43.     set_cmd,
  44.     show_cmd
  45.   }
  46. cmd_types;

  47. /* Types of "set" or "show" command.  */
  48. typedef enum var_types
  49.   {
  50.     /* "on" or "off".  *VAR is an integer which is nonzero for on,
  51.        zero for off.  */
  52.     var_boolean,

  53.     /* "on" / "true" / "enable" or "off" / "false" / "disable" or
  54.        "auto.  *VAR is an ``enum auto_boolean''.  NOTE: In general a
  55.        custom show command will need to be implemented - one that for
  56.        "auto" prints both the "auto" and the current auto-selected
  57.        value.  */
  58.     var_auto_boolean,

  59.     /* Unsigned Integer.  *VAR is an unsigned int.  The user can type
  60.        0 to mean "unlimited", which is stored in *VAR as UINT_MAX.  */
  61.     var_uinteger,

  62.     /* Like var_uinteger but signed.  *VAR is an int.  The user can
  63.        type 0 to mean "unlimited", which is stored in *VAR as
  64.        INT_MAX.  The only remaining use of it is the Python API.
  65.        Don't use it elsewhere.  */
  66.     var_integer,

  67.     /* String which the user enters with escapes (e.g. the user types
  68.        \n and it is a real newline in the stored string).
  69.        *VAR is a malloc'd string, or NULL if the string is empty.  */
  70.     var_string,
  71.     /* String which stores what the user types verbatim.
  72.        *VAR is a malloc'd string, or NULL if the string is empty.  */
  73.     var_string_noescape,
  74.     /* String which stores a filename.  (*VAR) is a malloc'd string,
  75.        or "" if the string was empty.  */
  76.     var_optional_filename,
  77.     /* String which stores a filename.  (*VAR) is a malloc'd
  78.        string.  */
  79.     var_filename,
  80.     /* ZeroableInteger.  *VAR is an int.  Like var_integer except
  81.        that zero really means zero.  */
  82.     var_zinteger,
  83.     /* ZeroableUnsignedInteger.  *VAR is an unsigned int.  Zero really
  84.        means zero.  */
  85.     var_zuinteger,
  86.     /* ZeroableUnsignedInteger with unlimited value.  *VAR is an int,
  87.        but its range is [0, INT_MAX].  -1 stands for unlimited and
  88.        other negative numbers are not allowed.  */
  89.     var_zuinteger_unlimited,
  90.     /* Enumerated type.  Can only have one of the specified values.
  91.        *VAR is a char pointer to the name of the element that we
  92.        find.  */
  93.     var_enum
  94.   }
  95. var_types;

  96. /* This structure records one command'd definition.  */
  97. struct cmd_list_element;

  98. typedef void cmd_cfunc_ftype (char *args, int from_tty);

  99. /* Forward-declarations of the entry-points of cli/cli-decode.c.  */

  100. /* API to the manipulation of command lists.  */

  101. extern int valid_user_defined_cmd_name_p (const char *name);

  102. extern struct cmd_list_element *add_cmd (const char *, enum command_class,
  103.                                          cmd_cfunc_ftype *fun,
  104.                                          const char *,
  105.                                          struct cmd_list_element **);

  106. extern struct cmd_list_element *add_alias_cmd (const char *, const char *,
  107.                                                enum command_class, int,
  108.                                                struct cmd_list_element **);

  109. extern struct cmd_list_element *add_prefix_cmd (const char *, enum command_class,
  110.                                                 cmd_cfunc_ftype *fun,
  111.                                                 const char *,
  112.                                                 struct cmd_list_element **,
  113.                                                 const char *, int,
  114.                                                 struct cmd_list_element **);

  115. extern struct cmd_list_element *add_abbrev_prefix_cmd (const char *,
  116.                                                        enum command_class,
  117.                                                        cmd_cfunc_ftype *fun,
  118.                                                        const char *,
  119.                                                        struct cmd_list_element
  120.                                                        **, const char *, int,
  121.                                                        struct cmd_list_element
  122.                                                        **);

  123. /* Set the commands corresponding callback.  */

  124. extern void set_cmd_cfunc (struct cmd_list_element *cmd,
  125.                            cmd_cfunc_ftype *cfunc);

  126. typedef void cmd_sfunc_ftype (char *args, int from_tty,
  127.                               struct cmd_list_element *c);
  128. extern void set_cmd_sfunc (struct cmd_list_element *cmd,
  129.                            cmd_sfunc_ftype *sfunc);

  130. typedef VEC (char_ptr) *completer_ftype (struct cmd_list_element *,
  131.                                          const char *, const char *);

  132. typedef void completer_ftype_void (struct cmd_list_element *,
  133.                                    const char *, const char *);

  134. extern void set_cmd_completer (struct cmd_list_element *, completer_ftype *);

  135. /* Set the completer_handle_brkchars callback.  */

  136. extern void set_cmd_completer_handle_brkchars (struct cmd_list_element *,
  137.                                                completer_ftype_void *);

  138. /* HACK: cagney/2002-02-23: Code, mostly in tracepoints.c, grubs
  139.    around in cmd objects to test the value of the commands sfunc().  */
  140. extern int cmd_cfunc_eq (struct cmd_list_element *cmd,
  141.                          cmd_cfunc_ftype *cfun);

  142. /* Each command object has a local context attached to it.  */
  143. extern void set_cmd_context (struct cmd_list_element *cmd,
  144.                              void *context);
  145. extern void *get_cmd_context (struct cmd_list_element *cmd);


  146. /* Execute CMD's pre/post hook.  Throw an error if the command fails.
  147.    If already executing this pre/post hook, or there is no pre/post
  148.    hook, the call is silently ignored.  */
  149. extern void execute_cmd_pre_hook (struct cmd_list_element *cmd);
  150. extern void execute_cmd_post_hook (struct cmd_list_element *cmd);

  151. /* Return the type of the command.  */
  152. extern enum cmd_types cmd_type (struct cmd_list_element *cmd);

  153. /* Flag for an ambiguous cmd_list result.  */
  154. #define CMD_LIST_AMBIGUOUS ((struct cmd_list_element *) -1)

  155. extern struct cmd_list_element *lookup_cmd (const char **,
  156.                                             struct cmd_list_element *, char *,
  157.                                             int, int);

  158. extern struct cmd_list_element *lookup_cmd_1 (const char **,
  159.                                               struct cmd_list_element *,
  160.                                               struct cmd_list_element **,
  161.                                               int);

  162. extern struct cmd_list_element *deprecate_cmd (struct cmd_list_element *,
  163.                                                const char * );

  164. extern void deprecated_cmd_warning (const char *);

  165. extern int lookup_cmd_composition (const char *text,
  166.                                    struct cmd_list_element **alias,
  167.                                    struct cmd_list_element **prefix_cmd,
  168.                                    struct cmd_list_element **cmd);

  169. extern struct cmd_list_element *add_com (const char *, enum command_class,
  170.                                          cmd_cfunc_ftype *fun,
  171.                                          const char *);

  172. extern struct cmd_list_element *add_com_alias (const char *, const char *,
  173.                                                enum command_class, int);

  174. extern struct cmd_list_element *add_info (const char *,
  175.                                           cmd_cfunc_ftype *fun,
  176.                                           const char *);

  177. extern struct cmd_list_element *add_info_alias (const char *, const char *,
  178.                                                 int);

  179. extern VEC (char_ptr) *complete_on_cmdlist (struct cmd_list_element *,
  180.                                             const char *, const char *, int);

  181. extern VEC (char_ptr) *complete_on_enum (const char *const *enumlist,
  182.                                          const char *, const char *);

  183. /* Functions that implement commands about CLI commands.  */

  184. extern void help_list (struct cmd_list_element *, const char *,
  185.                        enum command_class, struct ui_file *);

  186. /* Method for show a set/show variable's VALUE on FILE.  If this
  187.    method isn't supplied deprecated_show_value_hack() is called (which
  188.    is not good).  */
  189. typedef void (show_value_ftype) (struct ui_file *file,
  190.                                  int from_tty,
  191.                                  struct cmd_list_element *cmd,
  192.                                  const char *value);
  193. /* NOTE: i18n: This function is not i18n friendly.  Callers should
  194.    instead print the value out directly.  */
  195. extern show_value_ftype deprecated_show_value_hack;

  196. extern void add_setshow_enum_cmd (const char *name,
  197.                                   enum command_class class,
  198.                                   const char *const *enumlist,
  199.                                   const char **var,
  200.                                   const char *set_doc,
  201.                                   const char *show_doc,
  202.                                   const char *help_doc,
  203.                                   cmd_sfunc_ftype *set_func,
  204.                                   show_value_ftype *show_func,
  205.                                   struct cmd_list_element **set_list,
  206.                                   struct cmd_list_element **show_list);

  207. extern void add_setshow_auto_boolean_cmd (const char *name,
  208.                                           enum command_class class,
  209.                                           enum auto_boolean *var,
  210.                                           const char *set_doc,
  211.                                           const char *show_doc,
  212.                                           const char *help_doc,
  213.                                           cmd_sfunc_ftype *set_func,
  214.                                           show_value_ftype *show_func,
  215.                                           struct cmd_list_element **set_list,
  216.                                           struct cmd_list_element **show_list);

  217. extern void add_setshow_boolean_cmd (const char *name,
  218.                                      enum command_class class,
  219.                                      int *var,
  220.                                      const char *set_doc, const char *show_doc,
  221.                                      const char *help_doc,
  222.                                      cmd_sfunc_ftype *set_func,
  223.                                      show_value_ftype *show_func,
  224.                                      struct cmd_list_element **set_list,
  225.                                      struct cmd_list_element **show_list);

  226. extern void add_setshow_filename_cmd (const char *name,
  227.                                       enum command_class class,
  228.                                       char **var,
  229.                                       const char *set_doc,
  230.                                       const char *show_doc,
  231.                                       const char *help_doc,
  232.                                       cmd_sfunc_ftype *set_func,
  233.                                       show_value_ftype *show_func,
  234.                                       struct cmd_list_element **set_list,
  235.                                       struct cmd_list_element **show_list);

  236. extern void add_setshow_string_cmd (const char *name,
  237.                                     enum command_class class,
  238.                                     char **var,
  239.                                     const char *set_doc,
  240.                                     const char *show_doc,
  241.                                     const char *help_doc,
  242.                                     cmd_sfunc_ftype *set_func,
  243.                                     show_value_ftype *show_func,
  244.                                     struct cmd_list_element **set_list,
  245.                                     struct cmd_list_element **show_list);

  246. extern struct cmd_list_element *add_setshow_string_noescape_cmd
  247.                       (const char *name,
  248.                        enum command_class class,
  249.                        char **var,
  250.                        const char *set_doc,
  251.                        const char *show_doc,
  252.                        const char *help_doc,
  253.                        cmd_sfunc_ftype *set_func,
  254.                        show_value_ftype *show_func,
  255.                        struct cmd_list_element **set_list,
  256.                        struct cmd_list_element **show_list);

  257. extern void add_setshow_optional_filename_cmd (const char *name,
  258.                                                enum command_class class,
  259.                                                char **var,
  260.                                                const char *set_doc,
  261.                                                const char *show_doc,
  262.                                                const char *help_doc,
  263.                                                cmd_sfunc_ftype *set_func,
  264.                                                show_value_ftype *show_func,
  265.                                                struct cmd_list_element **set_list,
  266.                                                struct cmd_list_element **show_list);

  267. extern void add_setshow_integer_cmd (const char *name,
  268.                                      enum command_class class,
  269.                                      int *var,
  270.                                      const char *set_doc,
  271.                                      const char *show_doc,
  272.                                      const char *help_doc,
  273.                                      cmd_sfunc_ftype *set_func,
  274.                                      show_value_ftype *show_func,
  275.                                      struct cmd_list_element **set_list,
  276.                                      struct cmd_list_element **show_list);

  277. extern void add_setshow_uinteger_cmd (const char *name,
  278.                                       enum command_class class,
  279.                                       unsigned int *var,
  280.                                       const char *set_doc,
  281.                                       const char *show_doc,
  282.                                       const char *help_doc,
  283.                                       cmd_sfunc_ftype *set_func,
  284.                                       show_value_ftype *show_func,
  285.                                       struct cmd_list_element **set_list,
  286.                                       struct cmd_list_element **show_list);

  287. extern void add_setshow_zinteger_cmd (const char *name,
  288.                                       enum command_class class,
  289.                                       int *var,
  290.                                       const char *set_doc,
  291.                                       const char *show_doc,
  292.                                       const char *help_doc,
  293.                                       cmd_sfunc_ftype *set_func,
  294.                                       show_value_ftype *show_func,
  295.                                       struct cmd_list_element **set_list,
  296.                                       struct cmd_list_element **show_list);

  297. extern void add_setshow_zuinteger_cmd (const char *name,
  298.                                        enum command_class class,
  299.                                        unsigned int *var,
  300.                                        const char *set_doc,
  301.                                        const char *show_doc,
  302.                                        const char *help_doc,
  303.                                        cmd_sfunc_ftype *set_func,
  304.                                        show_value_ftype *show_func,
  305.                                        struct cmd_list_element **set_list,
  306.                                        struct cmd_list_element **show_list);

  307. extern void
  308.   add_setshow_zuinteger_unlimited_cmd (const char *name,
  309.                                        enum command_class class,
  310.                                        int *var,
  311.                                        const char *set_doc,
  312.                                        const char *show_doc,
  313.                                        const char *help_doc,
  314.                                        cmd_sfunc_ftype *set_func,
  315.                                        show_value_ftype *show_func,
  316.                                        struct cmd_list_element **set_list,
  317.                                        struct cmd_list_element **show_list);

  318. /* Do a "show" command for each thing on a command list.  */

  319. extern void cmd_show_list (struct cmd_list_element *, int, const char *);

  320. /* Used everywhere whenever at least one parameter is required and
  321.    none is specified.  */

  322. extern void error_no_arg (const char *) ATTRIBUTE_NORETURN;

  323. extern void dont_repeat (void);

  324. extern struct cleanup *prevent_dont_repeat (void);

  325. /* Used to mark commands that don't do anything.  If we just leave the
  326.    function field NULL, the command is interpreted as a help topic, or
  327.    as a class of commands.  */

  328. extern void not_just_help_class_command (char *, int);

  329. /* Check function pointer.  */
  330. extern int cmd_func_p (struct cmd_list_element *cmd);

  331. /* Call the command function.  */
  332. extern void cmd_func (struct cmd_list_element *cmd,
  333.                       char *args, int from_tty);

  334. #endif /* !defined (COMMAND_H) */