1 /* Handle lists of commands, their decoding and documentation, for GDB.
3 Copyright (c) 1986, 1989-1991, 1998, 2000-2002, 2004, 2007-2012 Free
4 Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "gdb_regex.h"
23 #include "gdb_string.h"
24 #include "completer.h"
27 #include "cli/cli-cmds.h"
28 #include "cli/cli-decode.h"
31 #include "tui/tui.h" /* For tui_active et al. */
34 #include "gdb_assert.h"
36 /* Prototypes for local functions. */
38 static void undef_cmd_error (char *, char *);
40 static struct cmd_list_element *delete_cmd (char *name,
41 struct cmd_list_element **list,
42 struct cmd_list_element **prehook,
43 struct cmd_list_element **prehookee,
44 struct cmd_list_element **posthook,
45 struct cmd_list_element **posthookee);
47 static struct cmd_list_element *find_cmd (char *command,
49 struct cmd_list_element *clist,
50 int ignore_help_classes,
53 static void help_all (struct ui_file *stream);
55 /* Look up a command whose 'prefixlist' is KEY. Return the command if found,
56 otherwise return NULL. */
58 static struct cmd_list_element *
59 lookup_cmd_for_prefixlist (struct cmd_list_element **key,
60 struct cmd_list_element *list)
62 struct cmd_list_element *p = NULL;
64 for (p = list; p != NULL; p = p->next)
66 struct cmd_list_element *q;
68 if (p->prefixlist == NULL)
70 else if (p->prefixlist == key)
73 q = lookup_cmd_for_prefixlist (key, *(p->prefixlist));
82 set_cmd_prefix (struct cmd_list_element *c, struct cmd_list_element **list)
84 struct cmd_list_element *p;
86 /* Check to see if *LIST contains any element other than C. */
87 for (p = *list; p != NULL; p = p->next)
93 /* *SET_LIST only contains SET. */
94 p = lookup_cmd_for_prefixlist (list, setlist);
96 c->prefix = p ? (p->cmd_pointer ? p->cmd_pointer : p) : p;
99 c->prefix = p->prefix;
103 print_help_for_command (struct cmd_list_element *c, char *prefix, int recurse,
104 struct ui_file *stream);
107 /* Set the callback function for the specified command. For each both
108 the commands callback and func() are set. The latter set to a
109 bounce function (unless cfunc / sfunc is NULL that is). */
112 do_cfunc (struct cmd_list_element *c, char *args, int from_tty)
114 c->function.cfunc (args, from_tty); /* Ok. */
118 set_cmd_cfunc (struct cmd_list_element *cmd, cmd_cfunc_ftype *cfunc)
123 cmd->func = do_cfunc;
124 cmd->function.cfunc = cfunc; /* Ok. */
128 do_sfunc (struct cmd_list_element *c, char *args, int from_tty)
130 c->function.sfunc (args, from_tty, c); /* Ok. */
134 set_cmd_sfunc (struct cmd_list_element *cmd, cmd_sfunc_ftype *sfunc)
139 cmd->func = do_sfunc;
140 cmd->function.sfunc = sfunc; /* Ok. */
144 cmd_cfunc_eq (struct cmd_list_element *cmd,
145 void (*cfunc) (char *args, int from_tty))
147 return cmd->func == do_cfunc && cmd->function.cfunc == cfunc;
151 set_cmd_context (struct cmd_list_element *cmd, void *context)
153 cmd->context = context;
157 get_cmd_context (struct cmd_list_element *cmd)
163 cmd_type (struct cmd_list_element *cmd)
169 set_cmd_completer (struct cmd_list_element *cmd, completer_ftype *completer)
171 cmd->completer = completer; /* Ok. */
174 /* Add element named NAME.
175 Space for NAME and DOC must be allocated by the caller.
176 CLASS is the top level category into which commands are broken down
178 FUN should be the function to execute the command;
179 it will get a character string as argument, with leading
180 and trailing blanks already eliminated.
182 DOC is a documentation string for the command.
183 Its first line should be a complete sentence.
184 It should start with ? for a command that is an abbreviation
185 or with * for a command that most users don't need to know about.
187 Add this command to command list *LIST.
189 Returns a pointer to the added command (not necessarily the head
192 struct cmd_list_element *
193 add_cmd (char *name, enum command_class class, void (*fun) (char *, int),
194 char *doc, struct cmd_list_element **list)
196 struct cmd_list_element *c
197 = (struct cmd_list_element *) xmalloc (sizeof (struct cmd_list_element));
198 struct cmd_list_element *p, *iter;
200 /* Turn each alias of the old command into an alias of the new
202 c->aliases = delete_cmd (name, list, &c->hook_pre, &c->hookee_pre,
203 &c->hook_post, &c->hookee_post);
204 for (iter = c->aliases; iter; iter = iter->alias_chain)
205 iter->cmd_pointer = c;
207 c->hook_pre->hookee_pre = c;
209 c->hookee_pre->hook_pre = c;
211 c->hook_post->hookee_post = c;
213 c->hookee_post->hook_post = c;
215 if (*list == NULL || strcmp ((*list)->name, name) >= 0)
223 while (p->next && strcmp (p->next->name, name) <= 0)
233 set_cmd_cfunc (c, fun);
234 set_cmd_context (c, NULL);
237 c->replacement = NULL;
238 c->pre_show_hook = NULL;
240 c->prefixlist = NULL;
241 c->prefixname = NULL;
242 c->allow_unknown = 0;
245 set_cmd_completer (c, make_symbol_completion_list_fn);
247 c->type = not_set_cmd;
249 c->var_type = var_boolean;
251 c->user_commands = NULL;
252 c->cmd_pointer = NULL;
253 c->alias_chain = NULL;
258 /* Deprecates a command CMD.
259 REPLACEMENT is the name of the command which should be used in
260 place of this command, or NULL if no such command exists.
262 This function does not check to see if command REPLACEMENT exists
263 since gdb may not have gotten around to adding REPLACEMENT when
264 this function is called.
266 Returns a pointer to the deprecated command. */
268 struct cmd_list_element *
269 deprecate_cmd (struct cmd_list_element *cmd, char *replacement)
271 cmd->flags |= (CMD_DEPRECATED | DEPRECATED_WARN_USER);
273 if (replacement != NULL)
274 cmd->replacement = replacement;
276 cmd->replacement = NULL;
281 struct cmd_list_element *
282 add_alias_cmd (char *name, char *oldname, enum command_class class,
283 int abbrev_flag, struct cmd_list_element **list)
285 /* Must do this since lookup_cmd tries to side-effect its first
288 struct cmd_list_element *old;
289 struct cmd_list_element *c;
291 copied_name = (char *) alloca (strlen (oldname) + 1);
292 strcpy (copied_name, oldname);
293 old = lookup_cmd (&copied_name, *list, "", 1, 1);
297 struct cmd_list_element *prehook, *prehookee, *posthook, *posthookee;
298 struct cmd_list_element *aliases = delete_cmd (name, list,
299 &prehook, &prehookee,
300 &posthook, &posthookee);
302 /* If this happens, it means a programmer error somewhere. */
303 gdb_assert (!aliases && !prehook && !prehookee
304 && !posthook && ! posthookee);
308 c = add_cmd (name, class, NULL, old->doc, list);
309 /* NOTE: Both FUNC and all the FUNCTIONs need to be copied. */
311 c->function = old->function;
312 c->prefixlist = old->prefixlist;
313 c->prefixname = old->prefixname;
314 c->allow_unknown = old->allow_unknown;
315 c->abbrev_flag = abbrev_flag;
316 c->cmd_pointer = old;
317 c->alias_chain = old->aliases;
320 set_cmd_prefix (c, list);
324 /* Like add_cmd but adds an element for a command prefix: a name that
325 should be followed by a subcommand to be looked up in another
326 command list. PREFIXLIST should be the address of the variable
327 containing that list. */
329 struct cmd_list_element *
330 add_prefix_cmd (char *name, enum command_class class,
331 void (*fun) (char *, int),
332 char *doc, struct cmd_list_element **prefixlist,
333 char *prefixname, int allow_unknown,
334 struct cmd_list_element **list)
336 struct cmd_list_element *c = add_cmd (name, class, fun, doc, list);
337 struct cmd_list_element *p;
339 c->prefixlist = prefixlist;
340 c->prefixname = prefixname;
341 c->allow_unknown = allow_unknown;
343 if (list == &cmdlist)
346 set_cmd_prefix (c, list);
348 /* Update the field 'prefix' of each cmd_list_element in *PREFIXLIST. */
349 for (p = *prefixlist; p != NULL; p = p->next)
355 /* Like add_prefix_cmd but sets the abbrev_flag on the new command. */
357 struct cmd_list_element *
358 add_abbrev_prefix_cmd (char *name, enum command_class class,
359 void (*fun) (char *, int), char *doc,
360 struct cmd_list_element **prefixlist, char *prefixname,
361 int allow_unknown, struct cmd_list_element **list)
363 struct cmd_list_element *c = add_cmd (name, class, fun, doc, list);
365 c->prefixlist = prefixlist;
366 c->prefixname = prefixname;
367 c->allow_unknown = allow_unknown;
372 /* This is an empty "cfunc". */
374 not_just_help_class_command (char *args, int from_tty)
378 /* This is an empty "sfunc". */
379 static void empty_sfunc (char *, int, struct cmd_list_element *);
382 empty_sfunc (char *args, int from_tty, struct cmd_list_element *c)
386 /* Add element named NAME to command list LIST (the list for set/show
387 or some sublist thereof).
388 TYPE is set_cmd or show_cmd.
389 CLASS is as in add_cmd.
390 VAR_TYPE is the kind of thing we are setting.
391 VAR is address of the variable being controlled by this command.
392 DOC is the documentation string. */
394 static struct cmd_list_element *
395 add_set_or_show_cmd (char *name,
397 enum command_class class,
401 struct cmd_list_element **list)
403 struct cmd_list_element *c = add_cmd (name, class, NULL, doc, list);
405 gdb_assert (type == set_cmd || type == show_cmd);
407 c->var_type = var_type;
409 /* This needs to be something besides NULL so that this isn't
410 treated as a help class. */
411 set_cmd_sfunc (c, empty_sfunc);
415 /* Add element named NAME to both the command SET_LIST and SHOW_LIST.
416 CLASS is as in add_cmd. VAR_TYPE is the kind of thing we are
417 setting. VAR is address of the variable being controlled by this
418 command. SET_FUNC and SHOW_FUNC are the callback functions (if
419 non-NULL). SET_DOC, SHOW_DOC and HELP_DOC are the documentation
420 strings. PRINT the format string to print the value. SET_RESULT
421 and SHOW_RESULT, if not NULL, are set to the resulting command
425 add_setshow_cmd_full (char *name,
426 enum command_class class,
427 var_types var_type, void *var,
428 const char *set_doc, const char *show_doc,
429 const char *help_doc,
430 cmd_sfunc_ftype *set_func,
431 show_value_ftype *show_func,
432 struct cmd_list_element **set_list,
433 struct cmd_list_element **show_list,
434 struct cmd_list_element **set_result,
435 struct cmd_list_element **show_result)
437 struct cmd_list_element *set;
438 struct cmd_list_element *show;
442 if (help_doc != NULL)
444 full_set_doc = xstrprintf ("%s\n%s", set_doc, help_doc);
445 full_show_doc = xstrprintf ("%s\n%s", show_doc, help_doc);
449 full_set_doc = xstrdup (set_doc);
450 full_show_doc = xstrdup (show_doc);
452 set = add_set_or_show_cmd (name, set_cmd, class, var_type, var,
453 full_set_doc, set_list);
454 if (set_func != NULL)
455 set_cmd_sfunc (set, set_func);
457 set_cmd_prefix (set, set_list);
459 show = add_set_or_show_cmd (name, show_cmd, class, var_type, var,
460 full_show_doc, show_list);
461 show->show_value_func = show_func;
463 if (set_result != NULL)
465 if (show_result != NULL)
469 /* Add element named NAME to command list LIST (the list for set or
470 some sublist thereof). CLASS is as in add_cmd. ENUMLIST is a list
471 of strings which may follow NAME. VAR is address of the variable
472 which will contain the matching string (from ENUMLIST). */
475 add_setshow_enum_cmd (char *name,
476 enum command_class class,
477 const char *const *enumlist,
480 const char *show_doc,
481 const char *help_doc,
482 cmd_sfunc_ftype *set_func,
483 show_value_ftype *show_func,
484 struct cmd_list_element **set_list,
485 struct cmd_list_element **show_list)
487 struct cmd_list_element *c;
489 add_setshow_cmd_full (name, class, var_enum, var,
490 set_doc, show_doc, help_doc,
497 const char * const auto_boolean_enums[] = { "on", "off", "auto", NULL };
499 /* Add an auto-boolean command named NAME to both the set and show
500 command list lists. CLASS is as in add_cmd. VAR is address of the
501 variable which will contain the value. DOC is the documentation
502 string. FUNC is the corresponding callback. */
504 add_setshow_auto_boolean_cmd (char *name,
505 enum command_class class,
506 enum auto_boolean *var,
507 const char *set_doc, const char *show_doc,
508 const char *help_doc,
509 cmd_sfunc_ftype *set_func,
510 show_value_ftype *show_func,
511 struct cmd_list_element **set_list,
512 struct cmd_list_element **show_list)
514 struct cmd_list_element *c;
516 add_setshow_cmd_full (name, class, var_auto_boolean, var,
517 set_doc, show_doc, help_doc,
521 c->enums = auto_boolean_enums;
524 /* Add element named NAME to both the set and show command LISTs (the
525 list for set/show or some sublist thereof). CLASS is as in
526 add_cmd. VAR is address of the variable which will contain the
527 value. SET_DOC and SHOW_DOC are the documentation strings. */
529 add_setshow_boolean_cmd (char *name, enum command_class class, int *var,
530 const char *set_doc, const char *show_doc,
531 const char *help_doc,
532 cmd_sfunc_ftype *set_func,
533 show_value_ftype *show_func,
534 struct cmd_list_element **set_list,
535 struct cmd_list_element **show_list)
537 static const char *boolean_enums[] = { "on", "off", NULL };
538 struct cmd_list_element *c;
540 add_setshow_cmd_full (name, class, var_boolean, var,
541 set_doc, show_doc, help_doc,
545 c->enums = boolean_enums;
548 /* Add element named NAME to both the set and show command LISTs (the
549 list for set/show or some sublist thereof). */
551 add_setshow_filename_cmd (char *name, enum command_class class,
553 const char *set_doc, const char *show_doc,
554 const char *help_doc,
555 cmd_sfunc_ftype *set_func,
556 show_value_ftype *show_func,
557 struct cmd_list_element **set_list,
558 struct cmd_list_element **show_list)
560 struct cmd_list_element *set_result;
562 add_setshow_cmd_full (name, class, var_filename, var,
563 set_doc, show_doc, help_doc,
567 set_cmd_completer (set_result, filename_completer);
570 /* Add element named NAME to both the set and show command LISTs (the
571 list for set/show or some sublist thereof). */
573 add_setshow_string_cmd (char *name, enum command_class class,
575 const char *set_doc, const char *show_doc,
576 const char *help_doc,
577 cmd_sfunc_ftype *set_func,
578 show_value_ftype *show_func,
579 struct cmd_list_element **set_list,
580 struct cmd_list_element **show_list)
582 add_setshow_cmd_full (name, class, var_string, var,
583 set_doc, show_doc, help_doc,
589 /* Add element named NAME to both the set and show command LISTs (the
590 list for set/show or some sublist thereof). */
592 add_setshow_string_noescape_cmd (char *name, enum command_class class,
594 const char *set_doc, const char *show_doc,
595 const char *help_doc,
596 cmd_sfunc_ftype *set_func,
597 show_value_ftype *show_func,
598 struct cmd_list_element **set_list,
599 struct cmd_list_element **show_list)
601 add_setshow_cmd_full (name, class, var_string_noescape, var,
602 set_doc, show_doc, help_doc,
608 /* Add element named NAME to both the set and show command LISTs (the
609 list for set/show or some sublist thereof). */
611 add_setshow_optional_filename_cmd (char *name, enum command_class class,
613 const char *set_doc, const char *show_doc,
614 const char *help_doc,
615 cmd_sfunc_ftype *set_func,
616 show_value_ftype *show_func,
617 struct cmd_list_element **set_list,
618 struct cmd_list_element **show_list)
620 struct cmd_list_element *set_result;
622 add_setshow_cmd_full (name, class, var_optional_filename, var,
623 set_doc, show_doc, help_doc,
628 set_cmd_completer (set_result, filename_completer);
632 /* Add element named NAME to both the set and show command LISTs (the
633 list for set/show or some sublist thereof). CLASS is as in
634 add_cmd. VAR is address of the variable which will contain the
635 value. SET_DOC and SHOW_DOC are the documentation strings. This
636 function is only used in Python API. Please don't use it elsewhere. */
638 add_setshow_integer_cmd (char *name, enum command_class class,
640 const char *set_doc, const char *show_doc,
641 const char *help_doc,
642 cmd_sfunc_ftype *set_func,
643 show_value_ftype *show_func,
644 struct cmd_list_element **set_list,
645 struct cmd_list_element **show_list)
647 add_setshow_cmd_full (name, class, var_integer, var,
648 set_doc, show_doc, help_doc,
654 /* Add element named NAME to both the set and show command LISTs (the
655 list for set/show or some sublist thereof). CLASS is as in
656 add_cmd. VAR is address of the variable which will contain the
657 value. SET_DOC and SHOW_DOC are the documentation strings. */
659 add_setshow_uinteger_cmd (char *name, enum command_class class,
661 const char *set_doc, const char *show_doc,
662 const char *help_doc,
663 cmd_sfunc_ftype *set_func,
664 show_value_ftype *show_func,
665 struct cmd_list_element **set_list,
666 struct cmd_list_element **show_list)
668 add_setshow_cmd_full (name, class, var_uinteger, var,
669 set_doc, show_doc, help_doc,
675 /* Add element named NAME to both the set and show command LISTs (the
676 list for set/show or some sublist thereof). CLASS is as in
677 add_cmd. VAR is address of the variable which will contain the
678 value. SET_DOC and SHOW_DOC are the documentation strings. */
680 add_setshow_zinteger_cmd (char *name, enum command_class class,
682 const char *set_doc, const char *show_doc,
683 const char *help_doc,
684 cmd_sfunc_ftype *set_func,
685 show_value_ftype *show_func,
686 struct cmd_list_element **set_list,
687 struct cmd_list_element **show_list)
689 add_setshow_cmd_full (name, class, var_zinteger, var,
690 set_doc, show_doc, help_doc,
697 add_setshow_zuinteger_unlimited_cmd (char *name,
698 enum command_class class,
701 const char *show_doc,
702 const char *help_doc,
703 cmd_sfunc_ftype *set_func,
704 show_value_ftype *show_func,
705 struct cmd_list_element **set_list,
706 struct cmd_list_element **show_list)
708 add_setshow_cmd_full (name, class, var_zuinteger_unlimited, var,
709 set_doc, show_doc, help_doc,
715 /* Add element named NAME to both the set and show command LISTs (the
716 list for set/show or some sublist thereof). CLASS is as in
717 add_cmd. VAR is address of the variable which will contain the
718 value. SET_DOC and SHOW_DOC are the documentation strings. */
720 add_setshow_zuinteger_cmd (char *name, enum command_class class,
722 const char *set_doc, const char *show_doc,
723 const char *help_doc,
724 cmd_sfunc_ftype *set_func,
725 show_value_ftype *show_func,
726 struct cmd_list_element **set_list,
727 struct cmd_list_element **show_list)
729 add_setshow_cmd_full (name, class, var_zuinteger, var,
730 set_doc, show_doc, help_doc,
736 /* Remove the command named NAME from the command list. Return the
737 list commands which were aliased to the deleted command. If the
738 command had no aliases, return NULL. The various *HOOKs are set to
739 the pre- and post-hook commands for the deleted command. If the
740 command does not have a hook, the corresponding out parameter is
743 static struct cmd_list_element *
744 delete_cmd (char *name, struct cmd_list_element **list,
745 struct cmd_list_element **prehook,
746 struct cmd_list_element **prehookee,
747 struct cmd_list_element **posthook,
748 struct cmd_list_element **posthookee)
750 struct cmd_list_element *iter;
751 struct cmd_list_element **previous_chain_ptr;
752 struct cmd_list_element *aliases = NULL;
758 previous_chain_ptr = list;
760 for (iter = *previous_chain_ptr; iter; iter = *previous_chain_ptr)
762 if (strcmp (iter->name, name) == 0)
765 iter->destroyer (iter, iter->context);
766 if (iter->hookee_pre)
767 iter->hookee_pre->hook_pre = 0;
768 *prehook = iter->hook_pre;
769 *prehookee = iter->hookee_pre;
770 if (iter->hookee_post)
771 iter->hookee_post->hook_post = 0;
772 *posthook = iter->hook_post;
773 *posthookee = iter->hookee_post;
775 /* Update the link. */
776 *previous_chain_ptr = iter->next;
778 aliases = iter->aliases;
780 /* If this command was an alias, remove it from the list of
782 if (iter->cmd_pointer)
784 struct cmd_list_element **prevp = &iter->cmd_pointer->aliases;
785 struct cmd_list_element *a = *prevp;
789 prevp = &a->alias_chain;
792 *prevp = iter->alias_chain;
797 /* We won't see another command with the same name. */
801 previous_chain_ptr = &iter->next;
807 /* Shorthands to the commands above. */
809 /* Add an element to the list of info subcommands. */
811 struct cmd_list_element *
812 add_info (char *name, void (*fun) (char *, int), char *doc)
814 return add_cmd (name, no_class, fun, doc, &infolist);
817 /* Add an alias to the list of info subcommands. */
819 struct cmd_list_element *
820 add_info_alias (char *name, char *oldname, int abbrev_flag)
822 return add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
825 /* Add an element to the list of commands. */
827 struct cmd_list_element *
828 add_com (char *name, enum command_class class, void (*fun) (char *, int),
831 return add_cmd (name, class, fun, doc, &cmdlist);
834 /* Add an alias or abbreviation command to the list of commands. */
836 struct cmd_list_element *
837 add_com_alias (char *name, char *oldname, enum command_class class,
840 return add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
843 /* Recursively walk the commandlist structures, and print out the
844 documentation of commands that match our regex in either their
845 name, or their documentation.
848 apropos_cmd (struct ui_file *stream,
849 struct cmd_list_element *commandlist,
850 struct re_pattern_buffer *regex, char *prefix)
852 struct cmd_list_element *c;
855 /* Walk through the commands. */
856 for (c=commandlist;c;c=c->next)
858 returnvalue = -1; /* Needed to avoid double printing. */
861 /* Try to match against the name. */
862 returnvalue = re_search (regex, c->name, strlen(c->name),
863 0, strlen (c->name), NULL);
864 if (returnvalue >= 0)
866 print_help_for_command (c, prefix,
867 0 /* don't recurse */, stream);
870 if (c->doc != NULL && returnvalue < 0)
872 /* Try to match against documentation. */
873 if (re_search(regex,c->doc,strlen(c->doc),0,strlen(c->doc),NULL) >=0)
875 print_help_for_command (c, prefix,
876 0 /* don't recurse */, stream);
879 /* Check if this command has subcommands and is not an
880 abbreviation. We skip listing subcommands of abbreviations
881 in order to avoid duplicates in the output. */
882 if (c->prefixlist != NULL && !c->abbrev_flag)
884 /* Recursively call ourselves on the subcommand list,
885 passing the right prefix in. */
886 apropos_cmd (stream,*c->prefixlist,regex,c->prefixname);
891 /* This command really has to deal with two things:
892 1) I want documentation on *this string* (usually called by
895 2) I want documentation on *this list* (usually called by giving a
896 command that requires subcommands. Also called by saying just
899 I am going to split this into two seperate comamnds, help_cmd and
903 help_cmd (char *command, struct ui_file *stream)
905 struct cmd_list_element *c;
906 extern struct cmd_list_element *cmdlist;
910 help_list (cmdlist, "", all_classes, stream);
914 if (strcmp (command, "all") == 0)
920 c = lookup_cmd (&command, cmdlist, "", 0, 0);
925 /* There are three cases here.
926 If c->prefixlist is nonzero, we have a prefix command.
927 Print its documentation, then list its subcommands.
929 If c->func is non NULL, we really have a command. Print its
930 documentation and return.
932 If c->func is NULL, we have a class name. Print its
933 documentation (as if it were a command) and then set class to the
934 number of this class so that the commands in the class will be
937 fputs_filtered (c->doc, stream);
938 fputs_filtered ("\n", stream);
940 if (c->prefixlist == 0 && c->func != NULL)
942 fprintf_filtered (stream, "\n");
944 /* If this is a prefix command, print it's subcommands. */
946 help_list (*c->prefixlist, c->prefixname, all_commands, stream);
948 /* If this is a class name, print all of the commands in the class. */
950 help_list (cmdlist, "", c->class, stream);
952 if (c->hook_pre || c->hook_post)
953 fprintf_filtered (stream,
954 "\nThis command has a hook (or hooks) defined:\n");
957 fprintf_filtered (stream,
958 "\tThis command is run after : %s (pre hook)\n",
961 fprintf_filtered (stream,
962 "\tThis command is run before : %s (post hook)\n",
967 * Get a specific kind of help on a command list.
970 * CMDTYPE is the prefix to use in the title string.
971 * CLASS is the class with which to list the nodes of this list (see
972 * documentation for help_cmd_list below), As usual, ALL_COMMANDS for
973 * everything, ALL_CLASSES for just classes, and non-negative for only things
974 * in a specific class.
975 * and STREAM is the output stream on which to print things.
976 * If you call this routine with a class >= 0, it recurses.
979 help_list (struct cmd_list_element *list, char *cmdtype,
980 enum command_class class, struct ui_file *stream)
983 char *cmdtype1, *cmdtype2;
985 /* If CMDTYPE is "foo ", CMDTYPE1 gets " foo" and CMDTYPE2 gets "foo sub".
987 len = strlen (cmdtype);
988 cmdtype1 = (char *) alloca (len + 1);
990 cmdtype2 = (char *) alloca (len + 4);
995 strncpy (cmdtype1 + 1, cmdtype, len - 1);
997 strncpy (cmdtype2, cmdtype, len - 1);
998 strcpy (cmdtype2 + len - 1, " sub");
1001 if (class == all_classes)
1002 fprintf_filtered (stream, "List of classes of %scommands:\n\n", cmdtype2);
1004 fprintf_filtered (stream, "List of %scommands:\n\n", cmdtype2);
1006 help_cmd_list (list, class, cmdtype, (int) class >= 0, stream);
1008 if (class == all_classes)
1010 fprintf_filtered (stream, "\n\
1011 Type \"help%s\" followed by a class name for a list of commands in ",
1014 fprintf_filtered (stream, "that class.");
1016 fprintf_filtered (stream, "\n\
1017 Type \"help all\" for the list of all commands.");
1020 fprintf_filtered (stream, "\nType \"help%s\" followed by %scommand name ",
1021 cmdtype1, cmdtype2);
1023 fputs_filtered ("for ", stream);
1025 fputs_filtered ("full ", stream);
1027 fputs_filtered ("documentation.\n", stream);
1028 fputs_filtered ("Type \"apropos word\" to search "
1029 "for commands related to \"word\".\n", stream);
1030 fputs_filtered ("Command name abbreviations are allowed if unambiguous.\n",
1035 help_all (struct ui_file *stream)
1037 struct cmd_list_element *c;
1038 extern struct cmd_list_element *cmdlist;
1039 int seen_unclassified = 0;
1041 for (c = cmdlist; c; c = c->next)
1045 /* If this is a class name, print all of the commands in the
1048 if (c->func == NULL)
1050 fprintf_filtered (stream, "\nCommand class: %s\n\n", c->name);
1051 help_cmd_list (cmdlist, c->class, "", 1, stream);
1055 /* While it's expected that all commands are in some class,
1056 as a safety measure, we'll print commands outside of any
1057 class at the end. */
1059 for (c = cmdlist; c; c = c->next)
1064 if (c->class == no_class)
1066 if (!seen_unclassified)
1068 fprintf_filtered (stream, "\nUnclassified commands\n\n");
1069 seen_unclassified = 1;
1071 print_help_for_command (c, "", 1, stream);
1077 /* Print only the first line of STR on STREAM. */
1079 print_doc_line (struct ui_file *stream, char *str)
1081 static char *line_buffer = 0;
1082 static int line_size;
1088 line_buffer = (char *) xmalloc (line_size);
1091 /* Keep printing '.' or ',' not followed by a whitespace for embedded strings
1094 while (*p && *p != '\n'
1095 && ((*p != '.' && *p != ',') || (p[1] && !isspace (p[1]))))
1097 if (p - str > line_size - 1)
1099 line_size = p - str + 1;
1100 xfree (line_buffer);
1101 line_buffer = (char *) xmalloc (line_size);
1103 strncpy (line_buffer, str, p - str);
1104 line_buffer[p - str] = '\0';
1105 if (islower (line_buffer[0]))
1106 line_buffer[0] = toupper (line_buffer[0]);
1107 fputs_filtered (line_buffer, stream);
1110 /* Print one-line help for command C.
1111 If RECURSE is non-zero, also print one-line descriptions
1112 of all prefixed subcommands. */
1114 print_help_for_command (struct cmd_list_element *c, char *prefix, int recurse,
1115 struct ui_file *stream)
1117 fprintf_filtered (stream, "%s%s -- ", prefix, c->name);
1118 print_doc_line (stream, c->doc);
1119 fputs_filtered ("\n", stream);
1122 && c->prefixlist != 0
1123 && c->abbrev_flag == 0)
1124 /* Subcommands of a prefix command typically have 'all_commands'
1125 as class. If we pass CLASS to recursive invocation,
1126 most often we won't see anything. */
1127 help_cmd_list (*c->prefixlist, all_commands, c->prefixname, 1, stream);
1131 * Implement a help command on command list LIST.
1132 * RECURSE should be non-zero if this should be done recursively on
1133 * all sublists of LIST.
1134 * PREFIX is the prefix to print before each command name.
1135 * STREAM is the stream upon which the output should be written.
1137 * A non-negative class number to list only commands in that
1139 * ALL_COMMANDS to list all commands in list.
1140 * ALL_CLASSES to list all classes in list.
1142 * Note that RECURSE will be active on *all* sublists, not just the
1143 * ones selected by the criteria above (ie. the selection mechanism
1144 * is at the low level, not the high-level).
1147 help_cmd_list (struct cmd_list_element *list, enum command_class class,
1148 char *prefix, int recurse, struct ui_file *stream)
1150 struct cmd_list_element *c;
1152 for (c = list; c; c = c->next)
1154 if (c->abbrev_flag == 0
1155 && (class == all_commands
1156 || (class == all_classes && c->func == NULL)
1157 || (class == c->class && c->func != NULL)))
1159 print_help_for_command (c, prefix, recurse, stream);
1161 else if (c->abbrev_flag == 0 && recurse
1162 && class == class_user && c->prefixlist != NULL)
1163 /* User-defined commands may be subcommands. */
1164 help_cmd_list (*c->prefixlist, class, c->prefixname,
1170 /* Search the input clist for 'command'. Return the command if
1171 found (or NULL if not), and return the number of commands
1174 static struct cmd_list_element *
1175 find_cmd (char *command, int len, struct cmd_list_element *clist,
1176 int ignore_help_classes, int *nfound)
1178 struct cmd_list_element *found, *c;
1180 found = (struct cmd_list_element *) NULL;
1182 for (c = clist; c; c = c->next)
1183 if (!strncmp (command, c->name, len)
1184 && (!ignore_help_classes || c->func))
1188 if (c->name[len] == '\0')
1198 find_command_name_length (const char *text)
1200 const char *p = text;
1202 /* Treating underscores as part of command words is important
1203 so that "set args_foo()" doesn't get interpreted as
1204 "set args _foo()". */
1205 /* Some characters are only used for TUI specific commands.
1206 However, they are always allowed for the sake of consistency.
1208 The XDB compatibility characters are only allowed when using the
1209 right mode because they clash with other GDB commands -
1210 specifically '/' is used as a suffix for print, examine and
1213 Note that this is larger than the character set allowed when
1214 creating user-defined commands. */
1216 /* Recognize '!' as a single character command so that, e.g., "!ls"
1217 works as expected. */
1221 while (isalnum (*p) || *p == '-' || *p == '_'
1222 /* Characters used by TUI specific commands. */
1223 || *p == '+' || *p == '<' || *p == '>' || *p == '$'
1224 /* Characters used for XDB compatibility. */
1225 || (xdb_commands && (*p == '/' || *p == '?')))
1231 /* Return TRUE if NAME is a valid user-defined command name.
1232 This is a stricter subset of all gdb commands,
1233 see find_command_name_length. */
1236 valid_user_defined_cmd_name_p (const char *name)
1243 /* Alas "42" is a legitimate user-defined command.
1244 In the interests of not breaking anything we preserve that. */
1246 for (p = name; *p != '\0'; ++p)
1259 /* This routine takes a line of TEXT and a CLIST in which to start the
1260 lookup. When it returns it will have incremented the text pointer past
1261 the section of text it matched, set *RESULT_LIST to point to the list in
1262 which the last word was matched, and will return a pointer to the cmd
1263 list element which the text matches. It will return NULL if no match at
1264 all was possible. It will return -1 (cast appropriately, ick) if ambigous
1265 matches are possible; in this case *RESULT_LIST will be set to point to
1266 the list in which there are ambiguous choices (and *TEXT will be set to
1267 the ambiguous text string).
1269 If the located command was an abbreviation, this routine returns the base
1270 command of the abbreviation.
1272 It does no error reporting whatsoever; control will always return
1273 to the superior routine.
1275 In the case of an ambiguous return (-1), *RESULT_LIST will be set to point
1276 at the prefix_command (ie. the best match) *or* (special case) will be NULL
1277 if no prefix command was ever found. For example, in the case of "info a",
1278 "info" matches without ambiguity, but "a" could be "args" or "address", so
1279 *RESULT_LIST is set to the cmd_list_element for "info". So in this case
1280 RESULT_LIST should not be interpeted as a pointer to the beginning of a
1281 list; it simply points to a specific command. In the case of an ambiguous
1282 return *TEXT is advanced past the last non-ambiguous prefix (e.g.
1283 "info t" can be "info types" or "info target"; upon return *TEXT has been
1284 advanced past "info ").
1286 If RESULT_LIST is NULL, don't set *RESULT_LIST (but don't otherwise
1287 affect the operation).
1289 This routine does *not* modify the text pointed to by TEXT.
1291 If IGNORE_HELP_CLASSES is nonzero, ignore any command list elements which
1292 are actually help classes rather than commands (i.e. the function field of
1293 the struct cmd_list_element is NULL). */
1295 struct cmd_list_element *
1296 lookup_cmd_1 (char **text, struct cmd_list_element *clist,
1297 struct cmd_list_element **result_list, int ignore_help_classes)
1300 int len, tmp, nfound;
1301 struct cmd_list_element *found, *c;
1304 while (**text == ' ' || **text == '\t')
1307 /* Identify the name of the command. */
1308 len = find_command_name_length (*text);
1310 /* If nothing but whitespace, return 0. */
1314 /* *text and p now bracket the first command word to lookup (and
1315 it's length is len). We copy this into a local temporary. */
1318 command = (char *) alloca (len + 1);
1319 memcpy (command, *text, len);
1320 command[len] = '\0';
1325 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
1327 /* We didn't find the command in the entered case, so lower case it
1328 and search again. */
1329 if (!found || nfound == 0)
1331 for (tmp = 0; tmp < len; tmp++)
1333 char x = command[tmp];
1335 command[tmp] = isupper (x) ? tolower (x) : x;
1337 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
1340 /* If nothing matches, we have a simple failure. */
1346 if (result_list != NULL)
1347 /* Will be modified in calling routine
1348 if we know what the prefix command is. */
1350 return CMD_LIST_AMBIGUOUS; /* Ambiguous. */
1353 /* We've matched something on this list. Move text pointer forward. */
1357 if (found->cmd_pointer)
1359 /* We drop the alias (abbreviation) in favor of the command it
1360 is pointing to. If the alias is deprecated, though, we need to
1361 warn the user about it before we drop it. Note that while we
1362 are warning about the alias, we may also warn about the command
1363 itself and we will adjust the appropriate DEPRECATED_WARN_USER
1366 if (found->flags & DEPRECATED_WARN_USER)
1367 deprecated_cmd_warning (&line);
1368 found = found->cmd_pointer;
1370 /* If we found a prefix command, keep looking. */
1372 if (found->prefixlist)
1374 c = lookup_cmd_1 (text, *found->prefixlist, result_list,
1375 ignore_help_classes);
1378 /* Didn't find anything; this is as far as we got. */
1379 if (result_list != NULL)
1380 *result_list = clist;
1383 else if (c == CMD_LIST_AMBIGUOUS)
1385 /* We've gotten this far properly, but the next step is
1386 ambiguous. We need to set the result list to the best
1387 we've found (if an inferior hasn't already set it). */
1388 if (result_list != NULL)
1390 /* This used to say *result_list = *found->prefixlist.
1391 If that was correct, need to modify the documentation
1392 at the top of this function to clarify what is
1393 supposed to be going on. */
1394 *result_list = found;
1405 if (result_list != NULL)
1406 *result_list = clist;
1411 /* All this hair to move the space to the front of cmdtype */
1414 undef_cmd_error (char *cmdtype, char *q)
1416 error (_("Undefined %scommand: \"%s\". Try \"help%s%.*s\"."),
1419 *cmdtype ? " " : "",
1420 (int) strlen (cmdtype) - 1,
1424 /* Look up the contents of *LINE as a command in the command list LIST.
1425 LIST is a chain of struct cmd_list_element's.
1426 If it is found, return the struct cmd_list_element for that command
1427 and update *LINE to point after the command name, at the first argument.
1428 If not found, call error if ALLOW_UNKNOWN is zero
1429 otherwise (or if error returns) return zero.
1430 Call error if specified command is ambiguous,
1431 unless ALLOW_UNKNOWN is negative.
1432 CMDTYPE precedes the word "command" in the error message.
1434 If INGNORE_HELP_CLASSES is nonzero, ignore any command list
1435 elements which are actually help classes rather than commands (i.e.
1436 the function field of the struct cmd_list_element is 0). */
1438 struct cmd_list_element *
1439 lookup_cmd (char **line, struct cmd_list_element *list, char *cmdtype,
1440 int allow_unknown, int ignore_help_classes)
1442 struct cmd_list_element *last_list = 0;
1443 struct cmd_list_element *c;
1445 /* Note: Do not remove trailing whitespace here because this
1446 would be wrong for complete_command. Jim Kingdon */
1449 error (_("Lack of needed %scommand"), cmdtype);
1451 c = lookup_cmd_1 (line, list, &last_list, ignore_help_classes);
1458 int len = find_command_name_length (*line);
1460 q = (char *) alloca (len + 1);
1461 strncpy (q, *line, len);
1463 undef_cmd_error (cmdtype, q);
1468 else if (c == CMD_LIST_AMBIGUOUS)
1470 /* Ambigous. Local values should be off prefixlist or called
1472 int local_allow_unknown = (last_list ? last_list->allow_unknown :
1474 char *local_cmdtype = last_list ? last_list->prefixname : cmdtype;
1475 struct cmd_list_element *local_list =
1476 (last_list ? *(last_list->prefixlist) : list);
1478 if (local_allow_unknown < 0)
1481 return last_list; /* Found something. */
1483 return 0; /* Found nothing. */
1487 /* Report as error. */
1492 ((*line)[amb_len] && (*line)[amb_len] != ' '
1493 && (*line)[amb_len] != '\t');
1498 for (c = local_list; c; c = c->next)
1499 if (!strncmp (*line, c->name, amb_len))
1501 if (strlen (ambbuf) + strlen (c->name) + 6
1502 < (int) sizeof ambbuf)
1504 if (strlen (ambbuf))
1505 strcat (ambbuf, ", ");
1506 strcat (ambbuf, c->name);
1510 strcat (ambbuf, "..");
1514 error (_("Ambiguous %scommand \"%s\": %s."), local_cmdtype,
1516 return 0; /* lint */
1521 /* We've got something. It may still not be what the caller
1522 wants (if this command *needs* a subcommand). */
1523 while (**line == ' ' || **line == '\t')
1526 if (c->prefixlist && **line && !c->allow_unknown)
1527 undef_cmd_error (c->prefixname, *line);
1529 /* Seems to be what he wants. Return it. */
1535 /* We are here presumably because an alias or command in *TEXT is
1536 deprecated and a warning message should be generated. This
1537 function decodes *TEXT and potentially generates a warning message
1540 Example for 'set endian big' which has a fictitious alias 'seb'.
1542 If alias wasn't used in *TEXT, and the command is deprecated:
1543 "warning: 'set endian big' is deprecated."
1545 If alias was used, and only the alias is deprecated:
1546 "warning: 'seb' an alias for the command 'set endian big' is deprecated."
1548 If alias was used and command is deprecated (regardless of whether
1549 the alias itself is deprecated:
1551 "warning: 'set endian big' (seb) is deprecated."
1553 After the message has been sent, clear the appropriate flags in the
1554 command and/or the alias so the user is no longer bothered.
1558 deprecated_cmd_warning (char **text)
1560 struct cmd_list_element *alias = NULL;
1561 struct cmd_list_element *prefix_cmd = NULL;
1562 struct cmd_list_element *cmd = NULL;
1564 if (!lookup_cmd_composition (*text, &alias, &prefix_cmd, &cmd))
1565 /* Return if text doesn't evaluate to a command. */
1568 if (!((alias ? (alias->flags & DEPRECATED_WARN_USER) : 0)
1569 || (cmd->flags & DEPRECATED_WARN_USER) ) )
1570 /* Return if nothing is deprecated. */
1573 printf_filtered ("Warning:");
1575 if (alias && !(cmd->flags & CMD_DEPRECATED))
1576 printf_filtered (" '%s', an alias for the", alias->name);
1578 printf_filtered (" command '");
1581 printf_filtered ("%s", prefix_cmd->prefixname);
1583 printf_filtered ("%s", cmd->name);
1585 if (alias && (cmd->flags & CMD_DEPRECATED))
1586 printf_filtered ("' (%s) is deprecated.\n", alias->name);
1588 printf_filtered ("' is deprecated.\n");
1591 /* If it is only the alias that is deprecated, we want to indicate
1592 the new alias, otherwise we'll indicate the new command. */
1594 if (alias && !(cmd->flags & CMD_DEPRECATED))
1596 if (alias->replacement)
1597 printf_filtered ("Use '%s'.\n\n", alias->replacement);
1599 printf_filtered ("No alternative known.\n\n");
1603 if (cmd->replacement)
1604 printf_filtered ("Use '%s'.\n\n", cmd->replacement);
1606 printf_filtered ("No alternative known.\n\n");
1609 /* We've warned you, now we'll keep quiet. */
1611 alias->flags &= ~DEPRECATED_WARN_USER;
1613 cmd->flags &= ~DEPRECATED_WARN_USER;
1617 /* Look up the contents of LINE as a command in the command list 'cmdlist'.
1618 Return 1 on success, 0 on failure.
1620 If LINE refers to an alias, *alias will point to that alias.
1622 If LINE is a postfix command (i.e. one that is preceded by a prefix
1623 command) set *prefix_cmd.
1625 Set *cmd to point to the command LINE indicates.
1627 If any of *alias, *prefix_cmd, or *cmd cannot be determined or do not
1628 exist, they are NULL when we return.
1632 lookup_cmd_composition (char *text,
1633 struct cmd_list_element **alias,
1634 struct cmd_list_element **prefix_cmd,
1635 struct cmd_list_element **cmd)
1638 int len, tmp, nfound;
1639 struct cmd_list_element *cur_list;
1640 struct cmd_list_element *prev_cmd;
1650 /* Go through as many command lists as we need to,
1651 to find the command TEXT refers to. */
1655 while (*text == ' ' || *text == '\t')
1658 /* Identify the name of the command. */
1659 len = find_command_name_length (text);
1661 /* If nothing but whitespace, return. */
1665 /* Text is the start of the first command word to lookup (and
1666 it's length is len). We copy this into a local temporary. */
1668 command = (char *) alloca (len + 1);
1669 memcpy (command, text, len);
1670 command[len] = '\0';
1675 *cmd = find_cmd (command, len, cur_list, 1, &nfound);
1677 /* We didn't find the command in the entered case, so lower case
1678 it and search again.
1680 if (!*cmd || nfound == 0)
1682 for (tmp = 0; tmp < len; tmp++)
1684 char x = command[tmp];
1686 command[tmp] = isupper (x) ? tolower (x) : x;
1688 *cmd = find_cmd (command, len, cur_list, 1, &nfound);
1691 if (*cmd == CMD_LIST_AMBIGUOUS)
1693 return 0; /* ambiguous */
1697 return 0; /* nothing found */
1700 if ((*cmd)->cmd_pointer)
1702 /* cmd was actually an alias, we note that an alias was
1703 used (by assigning *alais) and we set *cmd. */
1705 *cmd = (*cmd)->cmd_pointer;
1707 *prefix_cmd = prev_cmd;
1709 if ((*cmd)->prefixlist)
1710 cur_list = *(*cmd)->prefixlist;
1718 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
1720 /* Return a vector of char pointers which point to the different
1721 possible completions in LIST of TEXT.
1723 WORD points in the same buffer as TEXT, and completions should be
1724 returned relative to this position. For example, suppose TEXT is
1725 "foo" and we want to complete to "foobar". If WORD is "oo", return
1726 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
1729 complete_on_cmdlist (struct cmd_list_element *list, char *text, char *word)
1731 struct cmd_list_element *ptr;
1732 VEC (char_ptr) *matchlist = NULL;
1733 int textlen = strlen (text);
1735 int saw_deprecated_match = 0;
1737 /* We do one or two passes. In the first pass, we skip deprecated
1738 commands. If we see no matching commands in the first pass, and
1739 if we did happen to see a matching deprecated command, we do
1740 another loop to collect those. */
1741 for (pass = 0; matchlist == 0 && pass < 2; ++pass)
1743 for (ptr = list; ptr; ptr = ptr->next)
1744 if (!strncmp (ptr->name, text, textlen)
1745 && !ptr->abbrev_flag
1747 || ptr->prefixlist))
1753 if ((ptr->flags & CMD_DEPRECATED) != 0)
1755 saw_deprecated_match = 1;
1760 match = (char *) xmalloc (strlen (word) + strlen (ptr->name) + 1);
1762 strcpy (match, ptr->name);
1763 else if (word > text)
1765 /* Return some portion of ptr->name. */
1766 strcpy (match, ptr->name + (word - text));
1770 /* Return some of text plus ptr->name. */
1771 strncpy (match, word, text - word);
1772 match[text - word] = '\0';
1773 strcat (match, ptr->name);
1775 VEC_safe_push (char_ptr, matchlist, match);
1777 /* If we saw no matching deprecated commands in the first pass,
1779 if (!saw_deprecated_match)
1786 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
1788 /* Return a vector of char pointers which point to the different
1789 possible completions in CMD of TEXT.
1791 WORD points in the same buffer as TEXT, and completions should be
1792 returned relative to this position. For example, suppose TEXT is "foo"
1793 and we want to complete to "foobar". If WORD is "oo", return
1794 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
1797 complete_on_enum (const char *const *enumlist,
1801 VEC (char_ptr) *matchlist = NULL;
1802 int textlen = strlen (text);
1806 for (i = 0; (name = enumlist[i]) != NULL; i++)
1807 if (strncmp (name, text, textlen) == 0)
1811 match = (char *) xmalloc (strlen (word) + strlen (name) + 1);
1813 strcpy (match, name);
1814 else if (word > text)
1816 /* Return some portion of name. */
1817 strcpy (match, name + (word - text));
1821 /* Return some of text plus name. */
1822 strncpy (match, word, text - word);
1823 match[text - word] = '\0';
1824 strcat (match, name);
1826 VEC_safe_push (char_ptr, matchlist, match);
1833 /* Check function pointer. */
1835 cmd_func_p (struct cmd_list_element *cmd)
1837 return (cmd->func != NULL);
1841 /* Call the command function. */
1843 cmd_func (struct cmd_list_element *cmd, char *args, int from_tty)
1845 if (cmd_func_p (cmd))
1846 (*cmd->func) (cmd, args, from_tty);
1848 error (_("Invalid command"));