Ensure class_alias is only used for user-defined aliases.
[deliverable/binutils-gdb.git] / gdb / cli / cli-decode.c
1 /* Handle lists of commands, their decoding and documentation, for GDB.
2
3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18 #include "defs.h"
19 #include "symtab.h"
20 #include <ctype.h>
21 #include "gdb_regex.h"
22 #include "completer.h"
23 #include "ui-out.h"
24 #include "cli/cli-cmds.h"
25 #include "cli/cli-decode.h"
26 #include "cli/cli-style.h"
27 #include "gdbsupport/gdb_optional.h"
28
29 /* Prototypes for local functions. */
30
31 static void undef_cmd_error (const char *, const char *);
32
33 static struct cmd_list_element *delete_cmd (const char *name,
34 struct cmd_list_element **list,
35 struct cmd_list_element **prehook,
36 struct cmd_list_element **prehookee,
37 struct cmd_list_element **posthook,
38 struct cmd_list_element **posthookee);
39
40 static struct cmd_list_element *find_cmd (const char *command,
41 int len,
42 struct cmd_list_element *clist,
43 int ignore_help_classes,
44 int *nfound);
45
46 static void help_cmd_list (struct cmd_list_element *list,
47 enum command_class theclass,
48 bool recurse,
49 struct ui_file *stream);
50
51 static void help_all (struct ui_file *stream);
52
53 /* Look up a command whose 'prefixlist' is KEY. Return the command if found,
54 otherwise return NULL. */
55
56 static struct cmd_list_element *
57 lookup_cmd_for_prefixlist (struct cmd_list_element **key,
58 struct cmd_list_element *list)
59 {
60 struct cmd_list_element *p = NULL;
61
62 for (p = list; p != NULL; p = p->next)
63 {
64 struct cmd_list_element *q;
65
66 if (p->prefixlist == NULL)
67 continue;
68 else if (p->prefixlist == key)
69 {
70 /* If we found an alias, we must return the aliased
71 command. */
72 return p->cmd_pointer ? p->cmd_pointer : p;
73 }
74
75 q = lookup_cmd_for_prefixlist (key, *(p->prefixlist));
76 if (q != NULL)
77 return q;
78 }
79
80 return NULL;
81 }
82
83 static void
84 print_help_for_command (struct cmd_list_element *c,
85 bool recurse, struct ui_file *stream);
86
87 \f
88 /* Set the callback function for the specified command. For each both
89 the commands callback and func() are set. The latter set to a
90 bounce function (unless cfunc / sfunc is NULL that is). */
91
92 static void
93 do_const_cfunc (struct cmd_list_element *c, const char *args, int from_tty)
94 {
95 c->function.const_cfunc (args, from_tty);
96 }
97
98 static void
99 set_cmd_cfunc (struct cmd_list_element *cmd, cmd_const_cfunc_ftype *cfunc)
100 {
101 if (cfunc == NULL)
102 cmd->func = NULL;
103 else
104 cmd->func = do_const_cfunc;
105 cmd->function.const_cfunc = cfunc;
106 }
107
108 static void
109 do_sfunc (struct cmd_list_element *c, const char *args, int from_tty)
110 {
111 c->function.sfunc (args, from_tty, c);
112 }
113
114 void
115 set_cmd_sfunc (struct cmd_list_element *cmd, cmd_const_sfunc_ftype *sfunc)
116 {
117 if (sfunc == NULL)
118 cmd->func = NULL;
119 else
120 cmd->func = do_sfunc;
121 cmd->function.sfunc = sfunc;
122 }
123
124 int
125 cmd_cfunc_eq (struct cmd_list_element *cmd, cmd_const_cfunc_ftype *cfunc)
126 {
127 return cmd->func == do_const_cfunc && cmd->function.const_cfunc == cfunc;
128 }
129
130 void
131 set_cmd_context (struct cmd_list_element *cmd, void *context)
132 {
133 cmd->context = context;
134 }
135
136 void *
137 get_cmd_context (struct cmd_list_element *cmd)
138 {
139 return cmd->context;
140 }
141
142 enum cmd_types
143 cmd_type (struct cmd_list_element *cmd)
144 {
145 return cmd->type;
146 }
147
148 void
149 set_cmd_completer (struct cmd_list_element *cmd, completer_ftype *completer)
150 {
151 cmd->completer = completer; /* Ok. */
152 }
153
154 /* See definition in commands.h. */
155
156 void
157 set_cmd_completer_handle_brkchars (struct cmd_list_element *cmd,
158 completer_handle_brkchars_ftype *func)
159 {
160 cmd->completer_handle_brkchars = func;
161 }
162
163 /* Add element named NAME.
164 Space for NAME and DOC must be allocated by the caller.
165 CLASS is the top level category into which commands are broken down
166 for "help" purposes.
167 FUN should be the function to execute the command;
168 it will get a character string as argument, with leading
169 and trailing blanks already eliminated.
170
171 DOC is a documentation string for the command.
172 Its first line should be a complete sentence.
173 It should start with ? for a command that is an abbreviation
174 or with * for a command that most users don't need to know about.
175
176 Add this command to command list *LIST.
177
178 Returns a pointer to the added command (not necessarily the head
179 of *LIST). */
180
181 static struct cmd_list_element *
182 do_add_cmd (const char *name, enum command_class theclass,
183 const char *doc, struct cmd_list_element **list)
184 {
185 struct cmd_list_element *c = new struct cmd_list_element (name, theclass,
186 doc);
187 struct cmd_list_element *p, *iter;
188
189 /* Turn each alias of the old command into an alias of the new
190 command. */
191 c->aliases = delete_cmd (name, list, &c->hook_pre, &c->hookee_pre,
192 &c->hook_post, &c->hookee_post);
193 for (iter = c->aliases; iter; iter = iter->alias_chain)
194 iter->cmd_pointer = c;
195 if (c->hook_pre)
196 c->hook_pre->hookee_pre = c;
197 if (c->hookee_pre)
198 c->hookee_pre->hook_pre = c;
199 if (c->hook_post)
200 c->hook_post->hookee_post = c;
201 if (c->hookee_post)
202 c->hookee_post->hook_post = c;
203
204 if (*list == NULL || strcmp ((*list)->name, name) >= 0)
205 {
206 c->next = *list;
207 *list = c;
208 }
209 else
210 {
211 p = *list;
212 while (p->next && strcmp (p->next->name, name) <= 0)
213 {
214 p = p->next;
215 }
216 c->next = p->next;
217 p->next = c;
218 }
219
220 /* Search the prefix cmd of C, and assigns it to C->prefix.
221 See also add_prefix_cmd and update_prefix_field_of_prefixed_commands. */
222 struct cmd_list_element *prefixcmd = lookup_cmd_for_prefixlist (list,
223 cmdlist);
224 c->prefix = prefixcmd;
225
226
227 return c;
228 }
229
230 struct cmd_list_element *
231 add_cmd (const char *name, enum command_class theclass,
232 const char *doc, struct cmd_list_element **list)
233 {
234 cmd_list_element *result = do_add_cmd (name, theclass, doc, list);
235 result->func = NULL;
236 result->function.const_cfunc = NULL;
237 return result;
238 }
239
240 struct cmd_list_element *
241 add_cmd (const char *name, enum command_class theclass,
242 cmd_const_cfunc_ftype *fun,
243 const char *doc, struct cmd_list_element **list)
244 {
245 cmd_list_element *result = do_add_cmd (name, theclass, doc, list);
246 set_cmd_cfunc (result, fun);
247 return result;
248 }
249
250 /* Add an element with a suppress notification to the LIST of commands. */
251
252 struct cmd_list_element *
253 add_cmd_suppress_notification (const char *name, enum command_class theclass,
254 cmd_const_cfunc_ftype *fun, const char *doc,
255 struct cmd_list_element **list,
256 int *suppress_notification)
257 {
258 struct cmd_list_element *element;
259
260 element = add_cmd (name, theclass, fun, doc, list);
261 element->suppress_notification = suppress_notification;
262
263 return element;
264 }
265
266
267 /* Deprecates a command CMD.
268 REPLACEMENT is the name of the command which should be used in
269 place of this command, or NULL if no such command exists.
270
271 This function does not check to see if command REPLACEMENT exists
272 since gdb may not have gotten around to adding REPLACEMENT when
273 this function is called.
274
275 Returns a pointer to the deprecated command. */
276
277 struct cmd_list_element *
278 deprecate_cmd (struct cmd_list_element *cmd, const char *replacement)
279 {
280 cmd->cmd_deprecated = 1;
281 cmd->deprecated_warn_user = 1;
282
283 if (replacement != NULL)
284 cmd->replacement = replacement;
285 else
286 cmd->replacement = NULL;
287
288 return cmd;
289 }
290
291 struct cmd_list_element *
292 add_alias_cmd (const char *name, cmd_list_element *old,
293 enum command_class theclass, int abbrev_flag,
294 struct cmd_list_element **list)
295 {
296 if (old == 0)
297 {
298 struct cmd_list_element *prehook, *prehookee, *posthook, *posthookee;
299 struct cmd_list_element *aliases = delete_cmd (name, list,
300 &prehook, &prehookee,
301 &posthook, &posthookee);
302
303 /* If this happens, it means a programmer error somewhere. */
304 gdb_assert (!aliases && !prehook && !prehookee
305 && !posthook && ! posthookee);
306 return 0;
307 }
308
309 struct cmd_list_element *c = add_cmd (name, theclass, old->doc, list);
310
311 /* If OLD->DOC can be freed, we should make another copy. */
312 if (old->doc_allocated)
313 {
314 c->doc = xstrdup (old->doc);
315 c->doc_allocated = 1;
316 }
317 /* NOTE: Both FUNC and all the FUNCTIONs need to be copied. */
318 c->func = old->func;
319 c->function = old->function;
320 c->prefixlist = old->prefixlist;
321 c->prefixname = old->prefixname;
322 c->allow_unknown = old->allow_unknown;
323 c->abbrev_flag = abbrev_flag;
324 c->cmd_pointer = old;
325 c->alias_chain = old->aliases;
326 old->aliases = c;
327
328 return c;
329 }
330
331 struct cmd_list_element *
332 add_alias_cmd (const char *name, const char *oldname,
333 enum command_class theclass, int abbrev_flag,
334 struct cmd_list_element **list)
335 {
336 const char *tmp;
337 struct cmd_list_element *old;
338
339 tmp = oldname;
340 old = lookup_cmd (&tmp, *list, "", 1, 1);
341
342 return add_alias_cmd (name, old, theclass, abbrev_flag, list);
343 }
344
345
346 /* Update the prefix field of all sub-commands of the prefix command C.
347 We must do this when a prefix command is defined as the GDB init sequence
348 does not guarantee that a prefix command is created before its sub-commands.
349 For example, break-catch-sig.c initialization runs before breakpoint.c
350 initialization, but it is breakpoint.c that creates the "catch" command used
351 by the "catch signal" command created by break-catch-sig.c. */
352
353 static void
354 update_prefix_field_of_prefixed_commands (struct cmd_list_element *c)
355 {
356 for (cmd_list_element *p = *c->prefixlist; p != NULL; p = p->next)
357 {
358 p->prefix = c;
359
360 /* We must recursively update the prefix field to cover
361 e.g. 'info auto-load libthread-db' where the creation
362 order was:
363 libthread-db
364 auto-load
365 info
366 In such a case, when 'auto-load' was created by do_add_cmd,
367 the 'libthread-db' prefix field could not be updated, as the
368 'auto-load' command was not yet reachable by
369 lookup_cmd_for_prefixlist (list, cmdlist)
370 that searches from the top level 'cmdlist'. */
371 if (p->prefixlist != nullptr)
372 update_prefix_field_of_prefixed_commands (p);
373 }
374 }
375
376
377 /* Like add_cmd but adds an element for a command prefix: a name that
378 should be followed by a subcommand to be looked up in another
379 command list. PREFIXLIST should be the address of the variable
380 containing that list. */
381
382 struct cmd_list_element *
383 add_prefix_cmd (const char *name, enum command_class theclass,
384 cmd_const_cfunc_ftype *fun,
385 const char *doc, struct cmd_list_element **prefixlist,
386 const char *prefixname, int allow_unknown,
387 struct cmd_list_element **list)
388 {
389 struct cmd_list_element *c = add_cmd (name, theclass, fun, doc, list);
390
391 c->prefixlist = prefixlist;
392 c->prefixname = prefixname;
393 c->allow_unknown = allow_unknown;
394
395 /* Now that prefix command C is defined, we need to set the prefix field
396 of all prefixed commands that were defined before C itself was defined. */
397 update_prefix_field_of_prefixed_commands (c);
398
399 return c;
400 }
401
402 /* A helper function for add_basic_prefix_cmd. This is a command
403 function that just forwards to help_list. */
404
405 static void
406 do_prefix_cmd (const char *args, int from_tty, struct cmd_list_element *c)
407 {
408 /* Look past all aliases. */
409 while (c->cmd_pointer != nullptr)
410 c = c->cmd_pointer;
411
412 help_list (*c->prefixlist, c->prefixname, all_commands, gdb_stdout);
413 }
414
415 /* See command.h. */
416
417 struct cmd_list_element *
418 add_basic_prefix_cmd (const char *name, enum command_class theclass,
419 const char *doc, struct cmd_list_element **prefixlist,
420 const char *prefixname, int allow_unknown,
421 struct cmd_list_element **list)
422 {
423 struct cmd_list_element *cmd = add_prefix_cmd (name, theclass, nullptr,
424 doc, prefixlist, prefixname,
425 allow_unknown, list);
426 set_cmd_sfunc (cmd, do_prefix_cmd);
427 return cmd;
428 }
429
430 /* A helper function for add_show_prefix_cmd. This is a command
431 function that just forwards to cmd_show_list. */
432
433 static void
434 do_show_prefix_cmd (const char *args, int from_tty, struct cmd_list_element *c)
435 {
436 cmd_show_list (*c->prefixlist, from_tty);
437 }
438
439 /* See command.h. */
440
441 struct cmd_list_element *
442 add_show_prefix_cmd (const char *name, enum command_class theclass,
443 const char *doc, struct cmd_list_element **prefixlist,
444 const char *prefixname, int allow_unknown,
445 struct cmd_list_element **list)
446 {
447 struct cmd_list_element *cmd = add_prefix_cmd (name, theclass, nullptr,
448 doc, prefixlist, prefixname,
449 allow_unknown, list);
450 set_cmd_sfunc (cmd, do_show_prefix_cmd);
451 return cmd;
452 }
453
454 /* Like ADD_PREFIX_CMD but sets the suppress_notification pointer on the
455 new command list element. */
456
457 struct cmd_list_element *
458 add_prefix_cmd_suppress_notification
459 (const char *name, enum command_class theclass,
460 cmd_const_cfunc_ftype *fun,
461 const char *doc, struct cmd_list_element **prefixlist,
462 const char *prefixname, int allow_unknown,
463 struct cmd_list_element **list,
464 int *suppress_notification)
465 {
466 struct cmd_list_element *element
467 = add_prefix_cmd (name, theclass, fun, doc, prefixlist,
468 prefixname, allow_unknown, list);
469 element->suppress_notification = suppress_notification;
470 return element;
471 }
472
473 /* Like add_prefix_cmd but sets the abbrev_flag on the new command. */
474
475 struct cmd_list_element *
476 add_abbrev_prefix_cmd (const char *name, enum command_class theclass,
477 cmd_const_cfunc_ftype *fun, const char *doc,
478 struct cmd_list_element **prefixlist,
479 const char *prefixname,
480 int allow_unknown, struct cmd_list_element **list)
481 {
482 struct cmd_list_element *c = add_cmd (name, theclass, fun, doc, list);
483
484 c->prefixlist = prefixlist;
485 c->prefixname = prefixname;
486 c->allow_unknown = allow_unknown;
487 c->abbrev_flag = 1;
488 return c;
489 }
490
491 /* This is an empty "cfunc". */
492 void
493 not_just_help_class_command (const char *args, int from_tty)
494 {
495 }
496
497 /* This is an empty "sfunc". */
498
499 static void
500 empty_sfunc (const char *args, int from_tty, struct cmd_list_element *c)
501 {
502 }
503
504 /* Add element named NAME to command list LIST (the list for set/show
505 or some sublist thereof).
506 TYPE is set_cmd or show_cmd.
507 CLASS is as in add_cmd.
508 VAR_TYPE is the kind of thing we are setting.
509 VAR is address of the variable being controlled by this command.
510 DOC is the documentation string. */
511
512 static struct cmd_list_element *
513 add_set_or_show_cmd (const char *name,
514 enum cmd_types type,
515 enum command_class theclass,
516 var_types var_type,
517 void *var,
518 const char *doc,
519 struct cmd_list_element **list)
520 {
521 struct cmd_list_element *c = add_cmd (name, theclass, doc, list);
522
523 gdb_assert (type == set_cmd || type == show_cmd);
524 c->type = type;
525 c->var_type = var_type;
526 c->var = var;
527 /* This needs to be something besides NULL so that this isn't
528 treated as a help class. */
529 set_cmd_sfunc (c, empty_sfunc);
530 return c;
531 }
532
533 /* Add element named NAME to both the command SET_LIST and SHOW_LIST.
534 CLASS is as in add_cmd. VAR_TYPE is the kind of thing we are
535 setting. VAR is address of the variable being controlled by this
536 command. SET_FUNC and SHOW_FUNC are the callback functions (if
537 non-NULL). SET_DOC, SHOW_DOC and HELP_DOC are the documentation
538 strings. PRINT the format string to print the value. SET_RESULT
539 and SHOW_RESULT, if not NULL, are set to the resulting command
540 structures. */
541
542 static void
543 add_setshow_cmd_full (const char *name,
544 enum command_class theclass,
545 var_types var_type, void *var,
546 const char *set_doc, const char *show_doc,
547 const char *help_doc,
548 cmd_const_sfunc_ftype *set_func,
549 show_value_ftype *show_func,
550 struct cmd_list_element **set_list,
551 struct cmd_list_element **show_list,
552 struct cmd_list_element **set_result,
553 struct cmd_list_element **show_result)
554 {
555 struct cmd_list_element *set;
556 struct cmd_list_element *show;
557 char *full_set_doc;
558 char *full_show_doc;
559
560 if (help_doc != NULL)
561 {
562 full_set_doc = xstrprintf ("%s\n%s", set_doc, help_doc);
563 full_show_doc = xstrprintf ("%s\n%s", show_doc, help_doc);
564 }
565 else
566 {
567 full_set_doc = xstrdup (set_doc);
568 full_show_doc = xstrdup (show_doc);
569 }
570 set = add_set_or_show_cmd (name, set_cmd, theclass, var_type, var,
571 full_set_doc, set_list);
572 set->doc_allocated = 1;
573
574 if (set_func != NULL)
575 set_cmd_sfunc (set, set_func);
576
577 show = add_set_or_show_cmd (name, show_cmd, theclass, var_type, var,
578 full_show_doc, show_list);
579 show->doc_allocated = 1;
580 show->show_value_func = show_func;
581 /* Disable the default symbol completer. Doesn't make much sense
582 for the "show" command to complete on anything. */
583 set_cmd_completer (show, nullptr);
584
585 if (set_result != NULL)
586 *set_result = set;
587 if (show_result != NULL)
588 *show_result = show;
589 }
590
591 /* Add element named NAME to command list LIST (the list for set or
592 some sublist thereof). CLASS is as in add_cmd. ENUMLIST is a list
593 of strings which may follow NAME. VAR is address of the variable
594 which will contain the matching string (from ENUMLIST). */
595
596 void
597 add_setshow_enum_cmd (const char *name,
598 enum command_class theclass,
599 const char *const *enumlist,
600 const char **var,
601 const char *set_doc,
602 const char *show_doc,
603 const char *help_doc,
604 cmd_const_sfunc_ftype *set_func,
605 show_value_ftype *show_func,
606 struct cmd_list_element **set_list,
607 struct cmd_list_element **show_list,
608 void *context)
609 {
610 struct cmd_list_element *c, *show;
611
612 add_setshow_cmd_full (name, theclass, var_enum, var,
613 set_doc, show_doc, help_doc,
614 set_func, show_func,
615 set_list, show_list,
616 &c, &show);
617 c->enums = enumlist;
618
619 set_cmd_context (c, context);
620 set_cmd_context (show, context);
621 }
622
623 /* See cli-decode.h. */
624 const char * const auto_boolean_enums[] = { "on", "off", "auto", NULL };
625
626 /* Add an auto-boolean command named NAME to both the set and show
627 command list lists. CLASS is as in add_cmd. VAR is address of the
628 variable which will contain the value. DOC is the documentation
629 string. FUNC is the corresponding callback. */
630 void
631 add_setshow_auto_boolean_cmd (const char *name,
632 enum command_class theclass,
633 enum auto_boolean *var,
634 const char *set_doc, const char *show_doc,
635 const char *help_doc,
636 cmd_const_sfunc_ftype *set_func,
637 show_value_ftype *show_func,
638 struct cmd_list_element **set_list,
639 struct cmd_list_element **show_list)
640 {
641 struct cmd_list_element *c;
642
643 add_setshow_cmd_full (name, theclass, var_auto_boolean, var,
644 set_doc, show_doc, help_doc,
645 set_func, show_func,
646 set_list, show_list,
647 &c, NULL);
648 c->enums = auto_boolean_enums;
649 }
650
651 /* See cli-decode.h. */
652 const char * const boolean_enums[] = { "on", "off", NULL };
653
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.
658 Returns the new command element. */
659
660 cmd_list_element *
661 add_setshow_boolean_cmd (const char *name, enum command_class theclass, bool *var,
662 const char *set_doc, const char *show_doc,
663 const char *help_doc,
664 cmd_const_sfunc_ftype *set_func,
665 show_value_ftype *show_func,
666 struct cmd_list_element **set_list,
667 struct cmd_list_element **show_list)
668 {
669 struct cmd_list_element *c;
670
671 add_setshow_cmd_full (name, theclass, var_boolean, var,
672 set_doc, show_doc, help_doc,
673 set_func, show_func,
674 set_list, show_list,
675 &c, NULL);
676 c->enums = boolean_enums;
677
678 return c;
679 }
680
681 /* Add element named NAME to both the set and show command LISTs (the
682 list for set/show or some sublist thereof). */
683 void
684 add_setshow_filename_cmd (const char *name, enum command_class theclass,
685 char **var,
686 const char *set_doc, const char *show_doc,
687 const char *help_doc,
688 cmd_const_sfunc_ftype *set_func,
689 show_value_ftype *show_func,
690 struct cmd_list_element **set_list,
691 struct cmd_list_element **show_list)
692 {
693 struct cmd_list_element *set_result;
694
695 add_setshow_cmd_full (name, theclass, var_filename, var,
696 set_doc, show_doc, help_doc,
697 set_func, show_func,
698 set_list, show_list,
699 &set_result, NULL);
700 set_cmd_completer (set_result, filename_completer);
701 }
702
703 /* Add element named NAME to both the set and show command LISTs (the
704 list for set/show or some sublist thereof). */
705 void
706 add_setshow_string_cmd (const char *name, enum command_class theclass,
707 char **var,
708 const char *set_doc, const char *show_doc,
709 const char *help_doc,
710 cmd_const_sfunc_ftype *set_func,
711 show_value_ftype *show_func,
712 struct cmd_list_element **set_list,
713 struct cmd_list_element **show_list)
714 {
715 cmd_list_element *set_cmd;
716
717 add_setshow_cmd_full (name, theclass, var_string, var,
718 set_doc, show_doc, help_doc,
719 set_func, show_func,
720 set_list, show_list,
721 &set_cmd, NULL);
722
723 /* Disable the default symbol completer. */
724 set_cmd_completer (set_cmd, nullptr);
725 }
726
727 /* Add element named NAME to both the set and show command LISTs (the
728 list for set/show or some sublist thereof). */
729 struct cmd_list_element *
730 add_setshow_string_noescape_cmd (const char *name, enum command_class theclass,
731 char **var,
732 const char *set_doc, const char *show_doc,
733 const char *help_doc,
734 cmd_const_sfunc_ftype *set_func,
735 show_value_ftype *show_func,
736 struct cmd_list_element **set_list,
737 struct cmd_list_element **show_list)
738 {
739 struct cmd_list_element *set_cmd;
740
741 add_setshow_cmd_full (name, theclass, var_string_noescape, var,
742 set_doc, show_doc, help_doc,
743 set_func, show_func,
744 set_list, show_list,
745 &set_cmd, NULL);
746
747 /* Disable the default symbol completer. */
748 set_cmd_completer (set_cmd, nullptr);
749
750 return set_cmd;
751 }
752
753 /* Add element named NAME to both the set and show command LISTs (the
754 list for set/show or some sublist thereof). */
755 void
756 add_setshow_optional_filename_cmd (const char *name, enum command_class theclass,
757 char **var,
758 const char *set_doc, const char *show_doc,
759 const char *help_doc,
760 cmd_const_sfunc_ftype *set_func,
761 show_value_ftype *show_func,
762 struct cmd_list_element **set_list,
763 struct cmd_list_element **show_list)
764 {
765 struct cmd_list_element *set_result;
766
767 add_setshow_cmd_full (name, theclass, var_optional_filename, var,
768 set_doc, show_doc, help_doc,
769 set_func, show_func,
770 set_list, show_list,
771 &set_result, NULL);
772
773 set_cmd_completer (set_result, filename_completer);
774
775 }
776
777 /* Completes on literal "unlimited". Used by integer commands that
778 support a special "unlimited" value. */
779
780 static void
781 integer_unlimited_completer (struct cmd_list_element *ignore,
782 completion_tracker &tracker,
783 const char *text, const char *word)
784 {
785 static const char * const keywords[] =
786 {
787 "unlimited",
788 NULL,
789 };
790
791 complete_on_enum (tracker, keywords, text, word);
792 }
793
794 /* Add element named NAME to both the set and show command LISTs (the
795 list for set/show or some sublist thereof). CLASS is as in
796 add_cmd. VAR is address of the variable which will contain the
797 value. SET_DOC and SHOW_DOC are the documentation strings. This
798 function is only used in Python API. Please don't use it elsewhere. */
799 void
800 add_setshow_integer_cmd (const char *name, enum command_class theclass,
801 int *var,
802 const char *set_doc, const char *show_doc,
803 const char *help_doc,
804 cmd_const_sfunc_ftype *set_func,
805 show_value_ftype *show_func,
806 struct cmd_list_element **set_list,
807 struct cmd_list_element **show_list)
808 {
809 struct cmd_list_element *set;
810
811 add_setshow_cmd_full (name, theclass, var_integer, var,
812 set_doc, show_doc, help_doc,
813 set_func, show_func,
814 set_list, show_list,
815 &set, NULL);
816
817 set_cmd_completer (set, integer_unlimited_completer);
818 }
819
820 /* Add element named NAME to both the set and show command LISTs (the
821 list for set/show or some sublist thereof). CLASS is as in
822 add_cmd. VAR is address of the variable which will contain the
823 value. SET_DOC and SHOW_DOC are the documentation strings. */
824 void
825 add_setshow_uinteger_cmd (const char *name, enum command_class theclass,
826 unsigned int *var,
827 const char *set_doc, const char *show_doc,
828 const char *help_doc,
829 cmd_const_sfunc_ftype *set_func,
830 show_value_ftype *show_func,
831 struct cmd_list_element **set_list,
832 struct cmd_list_element **show_list)
833 {
834 struct cmd_list_element *set;
835
836 add_setshow_cmd_full (name, theclass, var_uinteger, var,
837 set_doc, show_doc, help_doc,
838 set_func, show_func,
839 set_list, show_list,
840 &set, NULL);
841
842 set_cmd_completer (set, integer_unlimited_completer);
843 }
844
845 /* Add element named NAME to both the set and show command LISTs (the
846 list for set/show or some sublist thereof). CLASS is as in
847 add_cmd. VAR is address of the variable which will contain the
848 value. SET_DOC and SHOW_DOC are the documentation strings. */
849 void
850 add_setshow_zinteger_cmd (const char *name, enum command_class theclass,
851 int *var,
852 const char *set_doc, const char *show_doc,
853 const char *help_doc,
854 cmd_const_sfunc_ftype *set_func,
855 show_value_ftype *show_func,
856 struct cmd_list_element **set_list,
857 struct cmd_list_element **show_list)
858 {
859 add_setshow_cmd_full (name, theclass, var_zinteger, var,
860 set_doc, show_doc, help_doc,
861 set_func, show_func,
862 set_list, show_list,
863 NULL, NULL);
864 }
865
866 void
867 add_setshow_zuinteger_unlimited_cmd (const char *name,
868 enum command_class theclass,
869 int *var,
870 const char *set_doc,
871 const char *show_doc,
872 const char *help_doc,
873 cmd_const_sfunc_ftype *set_func,
874 show_value_ftype *show_func,
875 struct cmd_list_element **set_list,
876 struct cmd_list_element **show_list)
877 {
878 struct cmd_list_element *set;
879
880 add_setshow_cmd_full (name, theclass, var_zuinteger_unlimited, var,
881 set_doc, show_doc, help_doc,
882 set_func, show_func,
883 set_list, show_list,
884 &set, NULL);
885
886 set_cmd_completer (set, integer_unlimited_completer);
887 }
888
889 /* Add element named NAME to both the set and show command LISTs (the
890 list for set/show or some sublist thereof). CLASS is as in
891 add_cmd. VAR is address of the variable which will contain the
892 value. SET_DOC and SHOW_DOC are the documentation strings. */
893 void
894 add_setshow_zuinteger_cmd (const char *name, enum command_class theclass,
895 unsigned int *var,
896 const char *set_doc, const char *show_doc,
897 const char *help_doc,
898 cmd_const_sfunc_ftype *set_func,
899 show_value_ftype *show_func,
900 struct cmd_list_element **set_list,
901 struct cmd_list_element **show_list)
902 {
903 add_setshow_cmd_full (name, theclass, var_zuinteger, var,
904 set_doc, show_doc, help_doc,
905 set_func, show_func,
906 set_list, show_list,
907 NULL, NULL);
908 }
909
910 /* Remove the command named NAME from the command list. Return the
911 list commands which were aliased to the deleted command. If the
912 command had no aliases, return NULL. The various *HOOKs are set to
913 the pre- and post-hook commands for the deleted command. If the
914 command does not have a hook, the corresponding out parameter is
915 set to NULL. */
916
917 static struct cmd_list_element *
918 delete_cmd (const char *name, struct cmd_list_element **list,
919 struct cmd_list_element **prehook,
920 struct cmd_list_element **prehookee,
921 struct cmd_list_element **posthook,
922 struct cmd_list_element **posthookee)
923 {
924 struct cmd_list_element *iter;
925 struct cmd_list_element **previous_chain_ptr;
926 struct cmd_list_element *aliases = NULL;
927
928 *prehook = NULL;
929 *prehookee = NULL;
930 *posthook = NULL;
931 *posthookee = NULL;
932 previous_chain_ptr = list;
933
934 for (iter = *previous_chain_ptr; iter; iter = *previous_chain_ptr)
935 {
936 if (strcmp (iter->name, name) == 0)
937 {
938 if (iter->destroyer)
939 iter->destroyer (iter, iter->context);
940 if (iter->hookee_pre)
941 iter->hookee_pre->hook_pre = 0;
942 *prehook = iter->hook_pre;
943 *prehookee = iter->hookee_pre;
944 if (iter->hookee_post)
945 iter->hookee_post->hook_post = 0;
946 *posthook = iter->hook_post;
947 *posthookee = iter->hookee_post;
948
949 /* Update the link. */
950 *previous_chain_ptr = iter->next;
951
952 aliases = iter->aliases;
953
954 /* If this command was an alias, remove it from the list of
955 aliases. */
956 if (iter->cmd_pointer)
957 {
958 struct cmd_list_element **prevp = &iter->cmd_pointer->aliases;
959 struct cmd_list_element *a = *prevp;
960
961 while (a != iter)
962 {
963 prevp = &a->alias_chain;
964 a = *prevp;
965 }
966 *prevp = iter->alias_chain;
967 }
968
969 delete iter;
970
971 /* We won't see another command with the same name. */
972 break;
973 }
974 else
975 previous_chain_ptr = &iter->next;
976 }
977
978 return aliases;
979 }
980 \f
981 /* Shorthands to the commands above. */
982
983 /* Add an element to the list of info subcommands. */
984
985 struct cmd_list_element *
986 add_info (const char *name, cmd_const_cfunc_ftype *fun, const char *doc)
987 {
988 return add_cmd (name, class_info, fun, doc, &infolist);
989 }
990
991 /* Add an alias to the list of info subcommands. */
992
993 struct cmd_list_element *
994 add_info_alias (const char *name, const char *oldname, int abbrev_flag)
995 {
996 return add_alias_cmd (name, oldname, class_run, abbrev_flag, &infolist);
997 }
998
999 /* Add an element to the list of commands. */
1000
1001 struct cmd_list_element *
1002 add_com (const char *name, enum command_class theclass,
1003 cmd_const_cfunc_ftype *fun,
1004 const char *doc)
1005 {
1006 return add_cmd (name, theclass, fun, doc, &cmdlist);
1007 }
1008
1009 /* Add an alias or abbreviation command to the list of commands.
1010 For aliases predefined by GDB (such as bt), THECLASS must be
1011 different of class_alias, as class_alias is used to identify
1012 user defined aliases. */
1013
1014 struct cmd_list_element *
1015 add_com_alias (const char *name, const char *oldname, enum command_class theclass,
1016 int abbrev_flag)
1017 {
1018 return add_alias_cmd (name, oldname, theclass, abbrev_flag, &cmdlist);
1019 }
1020
1021 /* Add an element with a suppress notification to the list of commands. */
1022
1023 struct cmd_list_element *
1024 add_com_suppress_notification (const char *name, enum command_class theclass,
1025 cmd_const_cfunc_ftype *fun, const char *doc,
1026 int *suppress_notification)
1027 {
1028 return add_cmd_suppress_notification (name, theclass, fun, doc,
1029 &cmdlist, suppress_notification);
1030 }
1031
1032 /* Print the prefix of C followed by name of C in title style. */
1033
1034 static void
1035 fput_command_name_styled (struct cmd_list_element *c, struct ui_file *stream)
1036 {
1037 const char *prefixname
1038 = c->prefix == nullptr ? "" : c->prefix->prefixname;
1039
1040 fprintf_styled (stream, title_style.style (), "%s%s", prefixname, c->name);
1041 }
1042
1043 /* If C has one or more aliases, style print the name of C and
1044 the name of its aliases, separated by commas.
1045 If ALWAYS_FPUT_C_NAME, print the name of C even if it has no aliases.
1046 If one or more names are printed, POSTFIX is printed after the last name.
1047 */
1048
1049 static void
1050 fput_command_names_styled (struct cmd_list_element *c,
1051 bool always_fput_c_name, const char *postfix,
1052 struct ui_file *stream)
1053 {
1054 if (always_fput_c_name || c->aliases != nullptr)
1055 fput_command_name_styled (c, stream);
1056 if (c->aliases != nullptr)
1057 {
1058 for (cmd_list_element *iter = c->aliases; iter; iter = iter->alias_chain)
1059 {
1060 fputs_filtered (", ", stream);
1061 wrap_here (" ");
1062 fput_command_name_styled (iter, stream);
1063 }
1064 }
1065 if (always_fput_c_name || c->aliases != nullptr)
1066 fputs_filtered (postfix, stream);
1067 }
1068
1069 /* If VERBOSE, print the full help for command C and highlight the
1070 documentation parts matching HIGHLIGHT,
1071 otherwise print only one-line help for command C. */
1072
1073 static void
1074 print_doc_of_command (struct cmd_list_element *c, const char *prefix,
1075 bool verbose, compiled_regex &highlight,
1076 struct ui_file *stream)
1077 {
1078 /* When printing the full documentation, add a line to separate
1079 this documentation from the previous command help, in the likely
1080 case that apropos finds several commands. */
1081 if (verbose)
1082 fputs_filtered ("\n", stream);
1083
1084 fput_command_names_styled (c, true, " -- ", stream);
1085 if (verbose)
1086 fputs_highlighted (c->doc, highlight, stream);
1087 else
1088 print_doc_line (stream, c->doc, false);
1089 fputs_filtered ("\n", stream);
1090 }
1091
1092 /* Recursively walk the commandlist structures, and print out the
1093 documentation of commands that match our regex in either their
1094 name, or their documentation.
1095 If VERBOSE, prints the complete documentation and highlight the
1096 documentation parts matching REGEX, otherwise prints only
1097 the first line.
1098 */
1099 void
1100 apropos_cmd (struct ui_file *stream,
1101 struct cmd_list_element *commandlist,
1102 bool verbose, compiled_regex &regex, const char *prefix)
1103 {
1104 struct cmd_list_element *c;
1105 int returnvalue;
1106
1107 /* Walk through the commands. */
1108 for (c=commandlist;c;c=c->next)
1109 {
1110 if (c->cmd_pointer != nullptr)
1111 {
1112 /* Command aliases/abbreviations are skipped to ensure we print the
1113 doc of a command only once, when encountering the aliased
1114 command. */
1115 continue;
1116 }
1117
1118 returnvalue = -1; /* Needed to avoid double printing. */
1119 if (c->name != NULL)
1120 {
1121 size_t name_len = strlen (c->name);
1122
1123 /* Try to match against the name. */
1124 returnvalue = regex.search (c->name, name_len, 0, name_len, NULL);
1125 if (returnvalue >= 0)
1126 print_doc_of_command (c, prefix, verbose, regex, stream);
1127
1128 /* Try to match against the name of the aliases. */
1129 for (cmd_list_element *iter = c->aliases;
1130 returnvalue < 0 && iter;
1131 iter = iter->alias_chain)
1132 {
1133 name_len = strlen (iter->name);
1134 returnvalue = regex.search (iter->name, name_len, 0, name_len, NULL);
1135 if (returnvalue >= 0)
1136 print_doc_of_command (c, prefix, verbose, regex, stream);
1137 }
1138 }
1139 if (c->doc != NULL && returnvalue < 0)
1140 {
1141 size_t doc_len = strlen (c->doc);
1142
1143 /* Try to match against documentation. */
1144 if (regex.search (c->doc, doc_len, 0, doc_len, NULL) >= 0)
1145 print_doc_of_command (c, prefix, verbose, regex, stream);
1146 }
1147 /* Check if this command has subcommands. */
1148 if (c->prefixlist != NULL)
1149 {
1150 /* Recursively call ourselves on the subcommand list,
1151 passing the right prefix in. */
1152 apropos_cmd (stream, *c->prefixlist, verbose, regex, c->prefixname);
1153 }
1154 }
1155 }
1156
1157 /* This command really has to deal with two things:
1158 1) I want documentation on *this string* (usually called by
1159 "help commandname").
1160
1161 2) I want documentation on *this list* (usually called by giving a
1162 command that requires subcommands. Also called by saying just
1163 "help".)
1164
1165 I am going to split this into two separate commands, help_cmd and
1166 help_list. */
1167
1168 void
1169 help_cmd (const char *command, struct ui_file *stream)
1170 {
1171 struct cmd_list_element *c, *alias, *prefix_cmd, *c_cmd;
1172
1173 if (!command)
1174 {
1175 help_list (cmdlist, "", all_classes, stream);
1176 return;
1177 }
1178
1179 if (strcmp (command, "all") == 0)
1180 {
1181 help_all (stream);
1182 return;
1183 }
1184
1185 const char *orig_command = command;
1186 c = lookup_cmd (&command, cmdlist, "", 0, 0);
1187
1188 if (c == 0)
1189 return;
1190
1191 lookup_cmd_composition (orig_command, &alias, &prefix_cmd, &c_cmd);
1192
1193 /* There are three cases here.
1194 If c->prefixlist is nonzero, we have a prefix command.
1195 Print its documentation, then list its subcommands.
1196
1197 If c->func is non NULL, we really have a command. Print its
1198 documentation and return.
1199
1200 If c->func is NULL, we have a class name. Print its
1201 documentation (as if it were a command) and then set class to the
1202 number of this class so that the commands in the class will be
1203 listed. */
1204
1205 /* If the user asked 'help somecommand' and there is no alias,
1206 the false indicates to not output the (single) command name. */
1207 fput_command_names_styled (c, false, "\n", stream);
1208 fputs_filtered (c->doc, stream);
1209 fputs_filtered ("\n", stream);
1210
1211 if (c->prefixlist == 0 && c->func != NULL)
1212 return;
1213 fprintf_filtered (stream, "\n");
1214
1215 /* If this is a prefix command, print it's subcommands. */
1216 if (c->prefixlist)
1217 help_list (*c->prefixlist, c->prefixname, all_commands, stream);
1218
1219 /* If this is a class name, print all of the commands in the class. */
1220 if (c->func == NULL)
1221 help_list (cmdlist, "", c->theclass, stream);
1222
1223 if (c->hook_pre || c->hook_post)
1224 fprintf_filtered (stream,
1225 "\nThis command has a hook (or hooks) defined:\n");
1226
1227 if (c->hook_pre)
1228 fprintf_filtered (stream,
1229 "\tThis command is run after : %s (pre hook)\n",
1230 c->hook_pre->name);
1231 if (c->hook_post)
1232 fprintf_filtered (stream,
1233 "\tThis command is run before : %s (post hook)\n",
1234 c->hook_post->name);
1235 }
1236
1237 /*
1238 * Get a specific kind of help on a command list.
1239 *
1240 * LIST is the list.
1241 * CMDTYPE is the prefix to use in the title string.
1242 * CLASS is the class with which to list the nodes of this list (see
1243 * documentation for help_cmd_list below), As usual, ALL_COMMANDS for
1244 * everything, ALL_CLASSES for just classes, and non-negative for only things
1245 * in a specific class.
1246 * and STREAM is the output stream on which to print things.
1247 * If you call this routine with a class >= 0, it recurses.
1248 */
1249 void
1250 help_list (struct cmd_list_element *list, const char *cmdtype,
1251 enum command_class theclass, struct ui_file *stream)
1252 {
1253 int len;
1254 char *cmdtype1, *cmdtype2;
1255
1256 /* If CMDTYPE is "foo ", CMDTYPE1 gets " foo" and CMDTYPE2 gets "foo sub".
1257 */
1258 len = strlen (cmdtype);
1259 cmdtype1 = (char *) alloca (len + 1);
1260 cmdtype1[0] = 0;
1261 cmdtype2 = (char *) alloca (len + 4);
1262 cmdtype2[0] = 0;
1263 if (len)
1264 {
1265 cmdtype1[0] = ' ';
1266 memcpy (cmdtype1 + 1, cmdtype, len - 1);
1267 cmdtype1[len] = 0;
1268 memcpy (cmdtype2, cmdtype, len - 1);
1269 strcpy (cmdtype2 + len - 1, " sub");
1270 }
1271
1272 if (theclass == all_classes)
1273 fprintf_filtered (stream, "List of classes of %scommands:\n\n", cmdtype2);
1274 else
1275 fprintf_filtered (stream, "List of %scommands:\n\n", cmdtype2);
1276
1277 help_cmd_list (list, theclass, theclass >= 0, stream);
1278
1279 if (theclass == all_classes)
1280 {
1281 fprintf_filtered (stream, "\n\
1282 Type \"help%s\" followed by a class name for a list of commands in ",
1283 cmdtype1);
1284 wrap_here ("");
1285 fprintf_filtered (stream, "that class.");
1286
1287 fprintf_filtered (stream, "\n\
1288 Type \"help all\" for the list of all commands.");
1289 }
1290
1291 fprintf_filtered (stream, "\nType \"help%s\" followed by %scommand name ",
1292 cmdtype1, cmdtype2);
1293 wrap_here ("");
1294 fputs_filtered ("for ", stream);
1295 wrap_here ("");
1296 fputs_filtered ("full ", stream);
1297 wrap_here ("");
1298 fputs_filtered ("documentation.\n", stream);
1299 fputs_filtered ("Type \"apropos word\" to search "
1300 "for commands related to \"word\".\n", stream);
1301 fputs_filtered ("Type \"apropos -v word\" for full documentation", stream);
1302 wrap_here ("");
1303 fputs_filtered (" of commands related to \"word\".\n", stream);
1304 fputs_filtered ("Command name abbreviations are allowed if unambiguous.\n",
1305 stream);
1306 }
1307
1308 static void
1309 help_all (struct ui_file *stream)
1310 {
1311 struct cmd_list_element *c;
1312 int seen_unclassified = 0;
1313
1314 for (c = cmdlist; c; c = c->next)
1315 {
1316 if (c->abbrev_flag)
1317 continue;
1318 /* If this is a class name, print all of the commands in the
1319 class. */
1320
1321 if (c->func == NULL)
1322 {
1323 fprintf_filtered (stream, "\nCommand class: %s\n\n", c->name);
1324 help_cmd_list (cmdlist, c->theclass, true, stream);
1325 }
1326 }
1327
1328 /* While it's expected that all commands are in some class,
1329 as a safety measure, we'll print commands outside of any
1330 class at the end. */
1331
1332 for (c = cmdlist; c; c = c->next)
1333 {
1334 if (c->abbrev_flag)
1335 continue;
1336
1337 if (c->theclass == no_class)
1338 {
1339 if (!seen_unclassified)
1340 {
1341 fprintf_filtered (stream, "\nUnclassified commands\n\n");
1342 seen_unclassified = 1;
1343 }
1344 print_help_for_command (c, 1, stream);
1345 }
1346 }
1347
1348 }
1349
1350 /* See cli-decode.h. */
1351
1352 void
1353 print_doc_line (struct ui_file *stream, const char *str,
1354 bool for_value_prefix)
1355 {
1356 static char *line_buffer = 0;
1357 static int line_size;
1358 const char *p;
1359
1360 if (!line_buffer)
1361 {
1362 line_size = 80;
1363 line_buffer = (char *) xmalloc (line_size);
1364 }
1365
1366 /* Searches for the first end of line or the end of STR. */
1367 p = str;
1368 while (*p && *p != '\n')
1369 p++;
1370 if (p - str > line_size - 1)
1371 {
1372 line_size = p - str + 1;
1373 xfree (line_buffer);
1374 line_buffer = (char *) xmalloc (line_size);
1375 }
1376 strncpy (line_buffer, str, p - str);
1377 if (for_value_prefix)
1378 {
1379 if (islower (line_buffer[0]))
1380 line_buffer[0] = toupper (line_buffer[0]);
1381 gdb_assert (p > str);
1382 if (line_buffer[p - str - 1] == '.')
1383 line_buffer[p - str - 1] = '\0';
1384 else
1385 line_buffer[p - str] = '\0';
1386 }
1387 else
1388 line_buffer[p - str] = '\0';
1389 fputs_filtered (line_buffer, stream);
1390 }
1391
1392 /* Print one-line help for command C.
1393 If RECURSE is non-zero, also print one-line descriptions
1394 of all prefixed subcommands. */
1395 static void
1396 print_help_for_command (struct cmd_list_element *c,
1397 bool recurse, struct ui_file *stream)
1398 {
1399 fput_command_names_styled (c, true, " -- ", stream);
1400 print_doc_line (stream, c->doc, false);
1401 fputs_filtered ("\n", stream);
1402
1403 if (recurse
1404 && c->prefixlist != 0
1405 && c->abbrev_flag == 0)
1406 /* Subcommands of a prefix command typically have 'all_commands'
1407 as class. If we pass CLASS to recursive invocation,
1408 most often we won't see anything. */
1409 help_cmd_list (*c->prefixlist, all_commands, true, stream);
1410 }
1411
1412 /*
1413 * Implement a help command on command list LIST.
1414 * RECURSE should be non-zero if this should be done recursively on
1415 * all sublists of LIST.
1416 * STREAM is the stream upon which the output should be written.
1417 * THECLASS should be:
1418 * A non-negative class number to list only commands in that
1419 * ALL_COMMANDS to list all commands in list.
1420 * ALL_CLASSES to list all classes in list.
1421 *
1422 * Note that aliases are only shown when THECLASS is class_alias.
1423 * In the other cases, the aliases will be shown together with their
1424 * aliased command.
1425 *
1426 * Note that RECURSE will be active on *all* sublists, not just the
1427 * ones selected by the criteria above (ie. the selection mechanism
1428 * is at the low level, not the high-level).
1429 */
1430
1431 static void
1432 help_cmd_list (struct cmd_list_element *list, enum command_class theclass,
1433 bool recurse, struct ui_file *stream)
1434 {
1435 struct cmd_list_element *c;
1436
1437 for (c = list; c; c = c->next)
1438 {
1439 if (c->abbrev_flag == 1 || c->cmd_deprecated)
1440 {
1441 /* Do not show abbreviations or deprecated commands. */
1442 continue;
1443 }
1444
1445 if (c->cmd_pointer != nullptr && theclass != class_alias)
1446 {
1447 /* Do not show an alias, unless specifically showing the
1448 list of aliases: for all other classes, an alias is
1449 shown (if needed) together with its aliased command. */
1450 continue;
1451 }
1452
1453 if (theclass == all_commands
1454 || (theclass == all_classes && c->func == NULL)
1455 || (theclass == c->theclass && c->func != NULL))
1456 {
1457 /* show C when
1458 - showing all commands
1459 - showing all classes and C is a help class
1460 - showing commands of THECLASS and C is not the help class */
1461
1462 /* If we show the class_alias and C is an alias, do not recurse,
1463 as this would show the (possibly very long) not very useful
1464 list of sub-commands of the aliased command. */
1465 print_help_for_command
1466 (c,
1467 recurse && (theclass != class_alias || c->cmd_pointer == nullptr),
1468 stream);
1469 continue;
1470 }
1471
1472 if (recurse
1473 && (theclass == class_user || theclass == class_alias)
1474 && c->prefixlist != NULL)
1475 {
1476 /* User-defined commands or aliases may be subcommands. */
1477 help_cmd_list (*c->prefixlist, theclass, recurse, stream);
1478 continue;
1479 }
1480
1481 /* Do not show C or recurse on C, e.g. because C does not belong to
1482 THECLASS or because C is a help class. */
1483 }
1484 }
1485 \f
1486
1487 /* Search the input clist for 'command'. Return the command if
1488 found (or NULL if not), and return the number of commands
1489 found in nfound. */
1490
1491 static struct cmd_list_element *
1492 find_cmd (const char *command, int len, struct cmd_list_element *clist,
1493 int ignore_help_classes, int *nfound)
1494 {
1495 struct cmd_list_element *found, *c;
1496
1497 found = NULL;
1498 *nfound = 0;
1499 for (c = clist; c; c = c->next)
1500 if (!strncmp (command, c->name, len)
1501 && (!ignore_help_classes || c->func))
1502 {
1503 found = c;
1504 (*nfound)++;
1505 if (c->name[len] == '\0')
1506 {
1507 *nfound = 1;
1508 break;
1509 }
1510 }
1511 return found;
1512 }
1513
1514 /* Return the length of command name in TEXT. */
1515
1516 int
1517 find_command_name_length (const char *text)
1518 {
1519 const char *p = text;
1520
1521 /* Treating underscores as part of command words is important
1522 so that "set args_foo()" doesn't get interpreted as
1523 "set args _foo()". */
1524 /* Some characters are only used for TUI specific commands.
1525 However, they are always allowed for the sake of consistency.
1526
1527 Note that this is larger than the character set allowed when
1528 creating user-defined commands. */
1529
1530 /* Recognize the single character commands so that, e.g., "!ls"
1531 works as expected. */
1532 if (*p == '!' || *p == '|')
1533 return 1;
1534
1535 while (valid_cmd_char_p (*p)
1536 /* Characters used by TUI specific commands. */
1537 || *p == '+' || *p == '<' || *p == '>' || *p == '$')
1538 p++;
1539
1540 return p - text;
1541 }
1542
1543 /* See command.h. */
1544
1545 bool
1546 valid_cmd_char_p (int c)
1547 {
1548 /* Alas "42" is a legitimate user-defined command.
1549 In the interests of not breaking anything we preserve that. */
1550
1551 return isalnum (c) || c == '-' || c == '_' || c == '.';
1552 }
1553
1554 /* See command.h. */
1555
1556 bool
1557 valid_user_defined_cmd_name_p (const char *name)
1558 {
1559 const char *p;
1560
1561 if (*name == '\0')
1562 return false;
1563
1564 for (p = name; *p != '\0'; ++p)
1565 {
1566 if (valid_cmd_char_p (*p))
1567 ; /* Ok. */
1568 else
1569 return false;
1570 }
1571
1572 return true;
1573 }
1574
1575 /* This routine takes a line of TEXT and a CLIST in which to start the
1576 lookup. When it returns it will have incremented the text pointer past
1577 the section of text it matched, set *RESULT_LIST to point to the list in
1578 which the last word was matched, and will return a pointer to the cmd
1579 list element which the text matches. It will return NULL if no match at
1580 all was possible. It will return -1 (cast appropriately, ick) if ambigous
1581 matches are possible; in this case *RESULT_LIST will be set to point to
1582 the list in which there are ambiguous choices (and *TEXT will be set to
1583 the ambiguous text string).
1584
1585 If the located command was an abbreviation, this routine returns the base
1586 command of the abbreviation.
1587
1588 It does no error reporting whatsoever; control will always return
1589 to the superior routine.
1590
1591 In the case of an ambiguous return (-1), *RESULT_LIST will be set to point
1592 at the prefix_command (ie. the best match) *or* (special case) will be NULL
1593 if no prefix command was ever found. For example, in the case of "info a",
1594 "info" matches without ambiguity, but "a" could be "args" or "address", so
1595 *RESULT_LIST is set to the cmd_list_element for "info". So in this case
1596 RESULT_LIST should not be interpreted as a pointer to the beginning of a
1597 list; it simply points to a specific command. In the case of an ambiguous
1598 return *TEXT is advanced past the last non-ambiguous prefix (e.g.
1599 "info t" can be "info types" or "info target"; upon return *TEXT has been
1600 advanced past "info ").
1601
1602 If RESULT_LIST is NULL, don't set *RESULT_LIST (but don't otherwise
1603 affect the operation).
1604
1605 This routine does *not* modify the text pointed to by TEXT.
1606
1607 If IGNORE_HELP_CLASSES is nonzero, ignore any command list elements which
1608 are actually help classes rather than commands (i.e. the function field of
1609 the struct cmd_list_element is NULL). */
1610
1611 struct cmd_list_element *
1612 lookup_cmd_1 (const char **text, struct cmd_list_element *clist,
1613 struct cmd_list_element **result_list, int ignore_help_classes)
1614 {
1615 char *command;
1616 int len, nfound;
1617 struct cmd_list_element *found, *c;
1618 const char *line = *text;
1619
1620 while (**text == ' ' || **text == '\t')
1621 (*text)++;
1622
1623 /* Identify the name of the command. */
1624 len = find_command_name_length (*text);
1625
1626 /* If nothing but whitespace, return 0. */
1627 if (len == 0)
1628 return 0;
1629
1630 /* *text and p now bracket the first command word to lookup (and
1631 it's length is len). We copy this into a local temporary. */
1632
1633
1634 command = (char *) alloca (len + 1);
1635 memcpy (command, *text, len);
1636 command[len] = '\0';
1637
1638 /* Look it up. */
1639 found = 0;
1640 nfound = 0;
1641 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
1642
1643 /* If nothing matches, we have a simple failure. */
1644 if (nfound == 0)
1645 return 0;
1646
1647 if (nfound > 1)
1648 {
1649 if (result_list != NULL)
1650 /* Will be modified in calling routine
1651 if we know what the prefix command is. */
1652 *result_list = 0;
1653 return CMD_LIST_AMBIGUOUS; /* Ambiguous. */
1654 }
1655
1656 /* We've matched something on this list. Move text pointer forward. */
1657
1658 *text += len;
1659
1660 if (found->cmd_pointer)
1661 {
1662 /* We drop the alias (abbreviation) in favor of the command it
1663 is pointing to. If the alias is deprecated, though, we need to
1664 warn the user about it before we drop it. Note that while we
1665 are warning about the alias, we may also warn about the command
1666 itself and we will adjust the appropriate DEPRECATED_WARN_USER
1667 flags. */
1668
1669 if (found->deprecated_warn_user)
1670 deprecated_cmd_warning (line);
1671 found = found->cmd_pointer;
1672 }
1673 /* If we found a prefix command, keep looking. */
1674
1675 if (found->prefixlist)
1676 {
1677 c = lookup_cmd_1 (text, *found->prefixlist, result_list,
1678 ignore_help_classes);
1679 if (!c)
1680 {
1681 /* Didn't find anything; this is as far as we got. */
1682 if (result_list != NULL)
1683 *result_list = clist;
1684 return found;
1685 }
1686 else if (c == CMD_LIST_AMBIGUOUS)
1687 {
1688 /* We've gotten this far properly, but the next step is
1689 ambiguous. We need to set the result list to the best
1690 we've found (if an inferior hasn't already set it). */
1691 if (result_list != NULL)
1692 if (!*result_list)
1693 /* This used to say *result_list = *found->prefixlist.
1694 If that was correct, need to modify the documentation
1695 at the top of this function to clarify what is
1696 supposed to be going on. */
1697 *result_list = found;
1698 return c;
1699 }
1700 else
1701 {
1702 /* We matched! */
1703 return c;
1704 }
1705 }
1706 else
1707 {
1708 if (result_list != NULL)
1709 *result_list = clist;
1710 return found;
1711 }
1712 }
1713
1714 /* All this hair to move the space to the front of cmdtype */
1715
1716 static void
1717 undef_cmd_error (const char *cmdtype, const char *q)
1718 {
1719 error (_("Undefined %scommand: \"%s\". Try \"help%s%.*s\"."),
1720 cmdtype,
1721 q,
1722 *cmdtype ? " " : "",
1723 (int) strlen (cmdtype) - 1,
1724 cmdtype);
1725 }
1726
1727 /* Look up the contents of *LINE as a command in the command list LIST.
1728 LIST is a chain of struct cmd_list_element's.
1729 If it is found, return the struct cmd_list_element for that command
1730 and update *LINE to point after the command name, at the first argument.
1731 If not found, call error if ALLOW_UNKNOWN is zero
1732 otherwise (or if error returns) return zero.
1733 Call error if specified command is ambiguous,
1734 unless ALLOW_UNKNOWN is negative.
1735 CMDTYPE precedes the word "command" in the error message.
1736
1737 If IGNORE_HELP_CLASSES is nonzero, ignore any command list
1738 elements which are actually help classes rather than commands (i.e.
1739 the function field of the struct cmd_list_element is 0). */
1740
1741 struct cmd_list_element *
1742 lookup_cmd (const char **line, struct cmd_list_element *list,
1743 const char *cmdtype,
1744 int allow_unknown, int ignore_help_classes)
1745 {
1746 struct cmd_list_element *last_list = 0;
1747 struct cmd_list_element *c;
1748
1749 /* Note: Do not remove trailing whitespace here because this
1750 would be wrong for complete_command. Jim Kingdon */
1751
1752 if (!*line)
1753 error (_("Lack of needed %scommand"), cmdtype);
1754
1755 c = lookup_cmd_1 (line, list, &last_list, ignore_help_classes);
1756
1757 if (!c)
1758 {
1759 if (!allow_unknown)
1760 {
1761 char *q;
1762 int len = find_command_name_length (*line);
1763
1764 q = (char *) alloca (len + 1);
1765 strncpy (q, *line, len);
1766 q[len] = '\0';
1767 undef_cmd_error (cmdtype, q);
1768 }
1769 else
1770 return 0;
1771 }
1772 else if (c == CMD_LIST_AMBIGUOUS)
1773 {
1774 /* Ambigous. Local values should be off prefixlist or called
1775 values. */
1776 int local_allow_unknown = (last_list ? last_list->allow_unknown :
1777 allow_unknown);
1778 const char *local_cmdtype = last_list ? last_list->prefixname : cmdtype;
1779 struct cmd_list_element *local_list =
1780 (last_list ? *(last_list->prefixlist) : list);
1781
1782 if (local_allow_unknown < 0)
1783 {
1784 if (last_list)
1785 return last_list; /* Found something. */
1786 else
1787 return 0; /* Found nothing. */
1788 }
1789 else
1790 {
1791 /* Report as error. */
1792 int amb_len;
1793 char ambbuf[100];
1794
1795 for (amb_len = 0;
1796 ((*line)[amb_len] && (*line)[amb_len] != ' '
1797 && (*line)[amb_len] != '\t');
1798 amb_len++)
1799 ;
1800
1801 ambbuf[0] = 0;
1802 for (c = local_list; c; c = c->next)
1803 if (!strncmp (*line, c->name, amb_len))
1804 {
1805 if (strlen (ambbuf) + strlen (c->name) + 6
1806 < (int) sizeof ambbuf)
1807 {
1808 if (strlen (ambbuf))
1809 strcat (ambbuf, ", ");
1810 strcat (ambbuf, c->name);
1811 }
1812 else
1813 {
1814 strcat (ambbuf, "..");
1815 break;
1816 }
1817 }
1818 error (_("Ambiguous %scommand \"%s\": %s."), local_cmdtype,
1819 *line, ambbuf);
1820 }
1821 }
1822 else
1823 {
1824 if (c->type == set_cmd && **line != '\0' && !isspace (**line))
1825 error (_("Argument must be preceded by space."));
1826
1827 /* We've got something. It may still not be what the caller
1828 wants (if this command *needs* a subcommand). */
1829 while (**line == ' ' || **line == '\t')
1830 (*line)++;
1831
1832 if (c->prefixlist && **line && !c->allow_unknown)
1833 undef_cmd_error (c->prefixname, *line);
1834
1835 /* Seems to be what he wants. Return it. */
1836 return c;
1837 }
1838 return 0;
1839 }
1840
1841 /* We are here presumably because an alias or command in TEXT is
1842 deprecated and a warning message should be generated. This
1843 function decodes TEXT and potentially generates a warning message
1844 as outlined below.
1845
1846 Example for 'set endian big' which has a fictitious alias 'seb'.
1847
1848 If alias wasn't used in TEXT, and the command is deprecated:
1849 "warning: 'set endian big' is deprecated."
1850
1851 If alias was used, and only the alias is deprecated:
1852 "warning: 'seb' an alias for the command 'set endian big' is deprecated."
1853
1854 If alias was used and command is deprecated (regardless of whether
1855 the alias itself is deprecated:
1856
1857 "warning: 'set endian big' (seb) is deprecated."
1858
1859 After the message has been sent, clear the appropriate flags in the
1860 command and/or the alias so the user is no longer bothered.
1861
1862 */
1863 void
1864 deprecated_cmd_warning (const char *text)
1865 {
1866 struct cmd_list_element *alias = NULL;
1867 struct cmd_list_element *prefix_cmd = NULL;
1868 struct cmd_list_element *cmd = NULL;
1869
1870 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
1871 /* Return if text doesn't evaluate to a command. */
1872 return;
1873
1874 if (!((alias ? alias->deprecated_warn_user : 0)
1875 || cmd->deprecated_warn_user) )
1876 /* Return if nothing is deprecated. */
1877 return;
1878
1879 printf_filtered ("Warning:");
1880
1881 if (alias && !cmd->cmd_deprecated)
1882 printf_filtered (" '%s', an alias for the", alias->name);
1883
1884 printf_filtered (" command '");
1885
1886 if (prefix_cmd)
1887 printf_filtered ("%s", prefix_cmd->prefixname);
1888
1889 printf_filtered ("%s", cmd->name);
1890
1891 if (alias && cmd->cmd_deprecated)
1892 printf_filtered ("' (%s) is deprecated.\n", alias->name);
1893 else
1894 printf_filtered ("' is deprecated.\n");
1895
1896
1897 /* If it is only the alias that is deprecated, we want to indicate
1898 the new alias, otherwise we'll indicate the new command. */
1899
1900 if (alias && !cmd->cmd_deprecated)
1901 {
1902 if (alias->replacement)
1903 printf_filtered ("Use '%s'.\n\n", alias->replacement);
1904 else
1905 printf_filtered ("No alternative known.\n\n");
1906 }
1907 else
1908 {
1909 if (cmd->replacement)
1910 printf_filtered ("Use '%s'.\n\n", cmd->replacement);
1911 else
1912 printf_filtered ("No alternative known.\n\n");
1913 }
1914
1915 /* We've warned you, now we'll keep quiet. */
1916 if (alias)
1917 alias->deprecated_warn_user = 0;
1918
1919 cmd->deprecated_warn_user = 0;
1920 }
1921
1922
1923 /* Look up the contents of TEXT as a command in the command list 'cmdlist'.
1924 Return 1 on success, 0 on failure.
1925
1926 If TEXT refers to an alias, *ALIAS will point to that alias.
1927
1928 If TEXT is a subcommand (i.e. one that is preceded by a prefix
1929 command) set *PREFIX_CMD.
1930
1931 Set *CMD to point to the command TEXT indicates.
1932
1933 If any of *ALIAS, *PREFIX_CMD, or *CMD cannot be determined or do not
1934 exist, they are NULL when we return.
1935
1936 */
1937 int
1938 lookup_cmd_composition (const char *text,
1939 struct cmd_list_element **alias,
1940 struct cmd_list_element **prefix_cmd,
1941 struct cmd_list_element **cmd)
1942 {
1943 char *command;
1944 int len, nfound;
1945 struct cmd_list_element *cur_list;
1946 struct cmd_list_element *prev_cmd;
1947
1948 *alias = NULL;
1949 *prefix_cmd = NULL;
1950 *cmd = NULL;
1951
1952 cur_list = cmdlist;
1953
1954 text = skip_spaces (text);
1955
1956 while (1)
1957 {
1958 /* Go through as many command lists as we need to,
1959 to find the command TEXT refers to. */
1960
1961 prev_cmd = *cmd;
1962
1963 /* Identify the name of the command. */
1964 len = find_command_name_length (text);
1965
1966 /* If nothing but whitespace, return. */
1967 if (len == 0)
1968 return 0;
1969
1970 /* TEXT is the start of the first command word to lookup (and
1971 it's length is LEN). We copy this into a local temporary. */
1972
1973 command = (char *) alloca (len + 1);
1974 memcpy (command, text, len);
1975 command[len] = '\0';
1976
1977 /* Look it up. */
1978 *cmd = 0;
1979 nfound = 0;
1980 *cmd = find_cmd (command, len, cur_list, 1, &nfound);
1981
1982 if (*cmd == CMD_LIST_AMBIGUOUS)
1983 {
1984 return 0; /* ambiguous */
1985 }
1986
1987 if (*cmd == NULL)
1988 return 0; /* nothing found */
1989 else
1990 {
1991 if ((*cmd)->cmd_pointer)
1992 {
1993 /* cmd was actually an alias, we note that an alias was
1994 used (by assigning *ALIAS) and we set *CMD. */
1995 *alias = *cmd;
1996 *cmd = (*cmd)->cmd_pointer;
1997 }
1998 *prefix_cmd = prev_cmd;
1999 }
2000
2001 text += len;
2002 text = skip_spaces (text);
2003
2004 if ((*cmd)->prefixlist && *text != '\0')
2005 cur_list = *(*cmd)->prefixlist;
2006 else
2007 return 1;
2008 }
2009 }
2010
2011 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2012
2013 /* Return a vector of char pointers which point to the different
2014 possible completions in LIST of TEXT.
2015
2016 WORD points in the same buffer as TEXT, and completions should be
2017 returned relative to this position. For example, suppose TEXT is
2018 "foo" and we want to complete to "foobar". If WORD is "oo", return
2019 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
2020
2021 void
2022 complete_on_cmdlist (struct cmd_list_element *list,
2023 completion_tracker &tracker,
2024 const char *text, const char *word,
2025 int ignore_help_classes)
2026 {
2027 struct cmd_list_element *ptr;
2028 int textlen = strlen (text);
2029 int pass;
2030 int saw_deprecated_match = 0;
2031
2032 /* We do one or two passes. In the first pass, we skip deprecated
2033 commands. If we see no matching commands in the first pass, and
2034 if we did happen to see a matching deprecated command, we do
2035 another loop to collect those. */
2036 for (pass = 0; pass < 2; ++pass)
2037 {
2038 bool got_matches = false;
2039
2040 for (ptr = list; ptr; ptr = ptr->next)
2041 if (!strncmp (ptr->name, text, textlen)
2042 && !ptr->abbrev_flag
2043 && (!ignore_help_classes || ptr->func
2044 || ptr->prefixlist))
2045 {
2046 if (pass == 0)
2047 {
2048 if (ptr->cmd_deprecated)
2049 {
2050 saw_deprecated_match = 1;
2051 continue;
2052 }
2053 }
2054
2055 tracker.add_completion
2056 (make_completion_match_str (ptr->name, text, word));
2057 got_matches = true;
2058 }
2059
2060 if (got_matches)
2061 break;
2062
2063 /* If we saw no matching deprecated commands in the first pass,
2064 just bail out. */
2065 if (!saw_deprecated_match)
2066 break;
2067 }
2068 }
2069
2070 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2071
2072 /* Add the different possible completions in ENUMLIST of TEXT.
2073
2074 WORD points in the same buffer as TEXT, and completions should be
2075 returned relative to this position. For example, suppose TEXT is "foo"
2076 and we want to complete to "foobar". If WORD is "oo", return
2077 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
2078
2079 void
2080 complete_on_enum (completion_tracker &tracker,
2081 const char *const *enumlist,
2082 const char *text, const char *word)
2083 {
2084 int textlen = strlen (text);
2085 int i;
2086 const char *name;
2087
2088 for (i = 0; (name = enumlist[i]) != NULL; i++)
2089 if (strncmp (name, text, textlen) == 0)
2090 tracker.add_completion (make_completion_match_str (name, text, word));
2091 }
2092
2093
2094 /* Check function pointer. */
2095 int
2096 cmd_func_p (struct cmd_list_element *cmd)
2097 {
2098 return (cmd->func != NULL);
2099 }
2100
2101
2102 /* Call the command function. */
2103 void
2104 cmd_func (struct cmd_list_element *cmd, const char *args, int from_tty)
2105 {
2106 if (cmd_func_p (cmd))
2107 {
2108 gdb::optional<scoped_restore_tmpl<int>> restore_suppress;
2109
2110 if (cmd->suppress_notification != NULL)
2111 restore_suppress.emplace (cmd->suppress_notification, 1);
2112
2113 (*cmd->func) (cmd, args, from_tty);
2114 }
2115 else
2116 error (_("Invalid command"));
2117 }
2118
2119 int
2120 cli_user_command_p (struct cmd_list_element *cmd)
2121 {
2122 return (cmd->theclass == class_user
2123 && (cmd->func == do_const_cfunc || cmd->func == do_sfunc));
2124 }
This page took 0.075132 seconds and 4 git commands to generate.