85f50aa8e48214907fa921668967bf25776909f4
[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, "", NULL, 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 /* Print the definition of alias C using title style for alias
1044 and aliased command. */
1045
1046 static void
1047 fput_alias_definition_styled (struct cmd_list_element *c,
1048 struct ui_file *stream)
1049 {
1050 gdb_assert (c->cmd_pointer != nullptr);
1051 fputs_filtered (" alias ", stream);
1052 fput_command_name_styled (c, stream);
1053 fprintf_filtered (stream, " = ");
1054 fput_command_name_styled (c->cmd_pointer, stream);
1055 fprintf_filtered (stream, " %s\n", c->default_args.c_str ());
1056 }
1057
1058 /* Print the definition of the aliases of CMD that have default args. */
1059
1060 static void
1061 fput_aliases_definition_styled (struct cmd_list_element *cmd,
1062 struct ui_file *stream)
1063 {
1064 if (cmd->aliases != nullptr)
1065 {
1066 for (cmd_list_element *iter = cmd->aliases;
1067 iter;
1068 iter = iter->alias_chain)
1069 {
1070 if (!iter->default_args.empty ())
1071 fput_alias_definition_styled (iter, stream);
1072 }
1073 }
1074 }
1075
1076
1077 /* If C has one or more aliases, style print the name of C and
1078 the name of its aliases, separated by commas.
1079 If ALWAYS_FPUT_C_NAME, print the name of C even if it has no aliases.
1080 If one or more names are printed, POSTFIX is printed after the last name.
1081 */
1082
1083 static void
1084 fput_command_names_styled (struct cmd_list_element *c,
1085 bool always_fput_c_name, const char *postfix,
1086 struct ui_file *stream)
1087 {
1088 if (always_fput_c_name || c->aliases != nullptr)
1089 fput_command_name_styled (c, stream);
1090 if (c->aliases != nullptr)
1091 {
1092 for (cmd_list_element *iter = c->aliases; iter; iter = iter->alias_chain)
1093 {
1094 fputs_filtered (", ", stream);
1095 wrap_here (" ");
1096 fput_command_name_styled (iter, stream);
1097 }
1098 }
1099 if (always_fput_c_name || c->aliases != nullptr)
1100 fputs_filtered (postfix, stream);
1101 }
1102
1103 /* If VERBOSE, print the full help for command C and highlight the
1104 documentation parts matching HIGHLIGHT,
1105 otherwise print only one-line help for command C. */
1106
1107 static void
1108 print_doc_of_command (struct cmd_list_element *c, const char *prefix,
1109 bool verbose, compiled_regex &highlight,
1110 struct ui_file *stream)
1111 {
1112 /* When printing the full documentation, add a line to separate
1113 this documentation from the previous command help, in the likely
1114 case that apropos finds several commands. */
1115 if (verbose)
1116 fputs_filtered ("\n", stream);
1117
1118 fput_command_names_styled (c, true,
1119 verbose ? "" : " -- ", stream);
1120 if (verbose)
1121 {
1122 fputs_filtered ("\n", stream);
1123 fput_aliases_definition_styled (c, stream);
1124 fputs_highlighted (c->doc, highlight, stream);
1125 fputs_filtered ("\n", stream);
1126 }
1127 else
1128 {
1129 print_doc_line (stream, c->doc, false);
1130 fputs_filtered ("\n", stream);
1131 fput_aliases_definition_styled (c, stream);
1132 }
1133 }
1134
1135 /* Recursively walk the commandlist structures, and print out the
1136 documentation of commands that match our regex in either their
1137 name, or their documentation.
1138 If VERBOSE, prints the complete documentation and highlight the
1139 documentation parts matching REGEX, otherwise prints only
1140 the first line.
1141 */
1142 void
1143 apropos_cmd (struct ui_file *stream,
1144 struct cmd_list_element *commandlist,
1145 bool verbose, compiled_regex &regex, const char *prefix)
1146 {
1147 struct cmd_list_element *c;
1148 int returnvalue;
1149
1150 /* Walk through the commands. */
1151 for (c=commandlist;c;c=c->next)
1152 {
1153 if (c->cmd_pointer != nullptr)
1154 {
1155 /* Command aliases/abbreviations are skipped to ensure we print the
1156 doc of a command only once, when encountering the aliased
1157 command. */
1158 continue;
1159 }
1160
1161 returnvalue = -1; /* Needed to avoid double printing. */
1162 if (c->name != NULL)
1163 {
1164 size_t name_len = strlen (c->name);
1165
1166 /* Try to match against the name. */
1167 returnvalue = regex.search (c->name, name_len, 0, name_len, NULL);
1168 if (returnvalue >= 0)
1169 print_doc_of_command (c, prefix, verbose, regex, stream);
1170
1171 /* Try to match against the name of the aliases. */
1172 for (cmd_list_element *iter = c->aliases;
1173 returnvalue < 0 && iter;
1174 iter = iter->alias_chain)
1175 {
1176 name_len = strlen (iter->name);
1177 returnvalue = regex.search (iter->name, name_len, 0, name_len, NULL);
1178 if (returnvalue >= 0)
1179 print_doc_of_command (c, prefix, verbose, regex, stream);
1180 }
1181 }
1182 if (c->doc != NULL && returnvalue < 0)
1183 {
1184 size_t doc_len = strlen (c->doc);
1185
1186 /* Try to match against documentation. */
1187 if (regex.search (c->doc, doc_len, 0, doc_len, NULL) >= 0)
1188 print_doc_of_command (c, prefix, verbose, regex, stream);
1189 }
1190 /* Check if this command has subcommands. */
1191 if (c->prefixlist != NULL)
1192 {
1193 /* Recursively call ourselves on the subcommand list,
1194 passing the right prefix in. */
1195 apropos_cmd (stream, *c->prefixlist, verbose, regex, c->prefixname);
1196 }
1197 }
1198 }
1199
1200 /* This command really has to deal with two things:
1201 1) I want documentation on *this string* (usually called by
1202 "help commandname").
1203
1204 2) I want documentation on *this list* (usually called by giving a
1205 command that requires subcommands. Also called by saying just
1206 "help".)
1207
1208 I am going to split this into two separate commands, help_cmd and
1209 help_list. */
1210
1211 void
1212 help_cmd (const char *command, struct ui_file *stream)
1213 {
1214 struct cmd_list_element *c, *alias, *prefix_cmd, *c_cmd;
1215
1216 if (!command)
1217 {
1218 help_list (cmdlist, "", all_classes, stream);
1219 return;
1220 }
1221
1222 if (strcmp (command, "all") == 0)
1223 {
1224 help_all (stream);
1225 return;
1226 }
1227
1228 const char *orig_command = command;
1229 c = lookup_cmd (&command, cmdlist, "", NULL, 0, 0);
1230
1231 if (c == 0)
1232 return;
1233
1234 lookup_cmd_composition (orig_command, &alias, &prefix_cmd, &c_cmd);
1235
1236 /* There are three cases here.
1237 If c->prefixlist is nonzero, we have a prefix command.
1238 Print its documentation, then list its subcommands.
1239
1240 If c->func is non NULL, we really have a command. Print its
1241 documentation and return.
1242
1243 If c->func is NULL, we have a class name. Print its
1244 documentation (as if it were a command) and then set class to the
1245 number of this class so that the commands in the class will be
1246 listed. */
1247
1248 /* If the user asked 'help somecommand' and there is no alias,
1249 the false indicates to not output the (single) command name. */
1250 fput_command_names_styled (c, false, "\n", stream);
1251 fput_aliases_definition_styled (c, stream);
1252 fputs_filtered (c->doc, stream);
1253 fputs_filtered ("\n", stream);
1254
1255 if (c->prefixlist == 0 && c->func != NULL)
1256 return;
1257 fprintf_filtered (stream, "\n");
1258
1259 /* If this is a prefix command, print it's subcommands. */
1260 if (c->prefixlist)
1261 help_list (*c->prefixlist, c->prefixname, all_commands, stream);
1262
1263 /* If this is a class name, print all of the commands in the class. */
1264 if (c->func == NULL)
1265 help_list (cmdlist, "", c->theclass, stream);
1266
1267 if (c->hook_pre || c->hook_post)
1268 fprintf_filtered (stream,
1269 "\nThis command has a hook (or hooks) defined:\n");
1270
1271 if (c->hook_pre)
1272 fprintf_filtered (stream,
1273 "\tThis command is run after : %s (pre hook)\n",
1274 c->hook_pre->name);
1275 if (c->hook_post)
1276 fprintf_filtered (stream,
1277 "\tThis command is run before : %s (post hook)\n",
1278 c->hook_post->name);
1279 }
1280
1281 /*
1282 * Get a specific kind of help on a command list.
1283 *
1284 * LIST is the list.
1285 * CMDTYPE is the prefix to use in the title string.
1286 * CLASS is the class with which to list the nodes of this list (see
1287 * documentation for help_cmd_list below), As usual, ALL_COMMANDS for
1288 * everything, ALL_CLASSES for just classes, and non-negative for only things
1289 * in a specific class.
1290 * and STREAM is the output stream on which to print things.
1291 * If you call this routine with a class >= 0, it recurses.
1292 */
1293 void
1294 help_list (struct cmd_list_element *list, const char *cmdtype,
1295 enum command_class theclass, struct ui_file *stream)
1296 {
1297 int len;
1298 char *cmdtype1, *cmdtype2;
1299
1300 /* If CMDTYPE is "foo ", CMDTYPE1 gets " foo" and CMDTYPE2 gets "foo sub".
1301 */
1302 len = strlen (cmdtype);
1303 cmdtype1 = (char *) alloca (len + 1);
1304 cmdtype1[0] = 0;
1305 cmdtype2 = (char *) alloca (len + 4);
1306 cmdtype2[0] = 0;
1307 if (len)
1308 {
1309 cmdtype1[0] = ' ';
1310 memcpy (cmdtype1 + 1, cmdtype, len - 1);
1311 cmdtype1[len] = 0;
1312 memcpy (cmdtype2, cmdtype, len - 1);
1313 strcpy (cmdtype2 + len - 1, " sub");
1314 }
1315
1316 if (theclass == all_classes)
1317 fprintf_filtered (stream, "List of classes of %scommands:\n\n", cmdtype2);
1318 else
1319 fprintf_filtered (stream, "List of %scommands:\n\n", cmdtype2);
1320
1321 help_cmd_list (list, theclass, theclass >= 0, stream);
1322
1323 if (theclass == all_classes)
1324 {
1325 fprintf_filtered (stream, "\n\
1326 Type \"help%s\" followed by a class name for a list of commands in ",
1327 cmdtype1);
1328 wrap_here ("");
1329 fprintf_filtered (stream, "that class.");
1330
1331 fprintf_filtered (stream, "\n\
1332 Type \"help all\" for the list of all commands.");
1333 }
1334
1335 fprintf_filtered (stream, "\nType \"help%s\" followed by %scommand name ",
1336 cmdtype1, cmdtype2);
1337 wrap_here ("");
1338 fputs_filtered ("for ", stream);
1339 wrap_here ("");
1340 fputs_filtered ("full ", stream);
1341 wrap_here ("");
1342 fputs_filtered ("documentation.\n", stream);
1343 fputs_filtered ("Type \"apropos word\" to search "
1344 "for commands related to \"word\".\n", stream);
1345 fputs_filtered ("Type \"apropos -v word\" for full documentation", stream);
1346 wrap_here ("");
1347 fputs_filtered (" of commands related to \"word\".\n", stream);
1348 fputs_filtered ("Command name abbreviations are allowed if unambiguous.\n",
1349 stream);
1350 }
1351
1352 static void
1353 help_all (struct ui_file *stream)
1354 {
1355 struct cmd_list_element *c;
1356 int seen_unclassified = 0;
1357
1358 for (c = cmdlist; c; c = c->next)
1359 {
1360 if (c->abbrev_flag)
1361 continue;
1362 /* If this is a class name, print all of the commands in the
1363 class. */
1364
1365 if (c->func == NULL)
1366 {
1367 fprintf_filtered (stream, "\nCommand class: %s\n\n", c->name);
1368 help_cmd_list (cmdlist, c->theclass, true, stream);
1369 }
1370 }
1371
1372 /* While it's expected that all commands are in some class,
1373 as a safety measure, we'll print commands outside of any
1374 class at the end. */
1375
1376 for (c = cmdlist; c; c = c->next)
1377 {
1378 if (c->abbrev_flag)
1379 continue;
1380
1381 if (c->theclass == no_class)
1382 {
1383 if (!seen_unclassified)
1384 {
1385 fprintf_filtered (stream, "\nUnclassified commands\n\n");
1386 seen_unclassified = 1;
1387 }
1388 print_help_for_command (c, true, stream);
1389 }
1390 }
1391
1392 }
1393
1394 /* See cli-decode.h. */
1395
1396 void
1397 print_doc_line (struct ui_file *stream, const char *str,
1398 bool for_value_prefix)
1399 {
1400 static char *line_buffer = 0;
1401 static int line_size;
1402 const char *p;
1403
1404 if (!line_buffer)
1405 {
1406 line_size = 80;
1407 line_buffer = (char *) xmalloc (line_size);
1408 }
1409
1410 /* Searches for the first end of line or the end of STR. */
1411 p = str;
1412 while (*p && *p != '\n')
1413 p++;
1414 if (p - str > line_size - 1)
1415 {
1416 line_size = p - str + 1;
1417 xfree (line_buffer);
1418 line_buffer = (char *) xmalloc (line_size);
1419 }
1420 strncpy (line_buffer, str, p - str);
1421 if (for_value_prefix)
1422 {
1423 if (islower (line_buffer[0]))
1424 line_buffer[0] = toupper (line_buffer[0]);
1425 gdb_assert (p > str);
1426 if (line_buffer[p - str - 1] == '.')
1427 line_buffer[p - str - 1] = '\0';
1428 else
1429 line_buffer[p - str] = '\0';
1430 }
1431 else
1432 line_buffer[p - str] = '\0';
1433 fputs_filtered (line_buffer, stream);
1434 }
1435
1436 /* Print one-line help for command C.
1437 If RECURSE is non-zero, also print one-line descriptions
1438 of all prefixed subcommands. */
1439 static void
1440 print_help_for_command (struct cmd_list_element *c,
1441 bool recurse, struct ui_file *stream)
1442 {
1443 fput_command_names_styled (c, true, " -- ", stream);
1444 print_doc_line (stream, c->doc, false);
1445 fputs_filtered ("\n", stream);
1446 if (!c->default_args.empty ())
1447 fput_alias_definition_styled (c, stream);
1448 fput_aliases_definition_styled (c, stream);
1449
1450 if (recurse
1451 && c->prefixlist != 0
1452 && c->abbrev_flag == 0)
1453 /* Subcommands of a prefix command typically have 'all_commands'
1454 as class. If we pass CLASS to recursive invocation,
1455 most often we won't see anything. */
1456 help_cmd_list (*c->prefixlist, all_commands, true, stream);
1457 }
1458
1459 /*
1460 * Implement a help command on command list LIST.
1461 * RECURSE should be non-zero if this should be done recursively on
1462 * all sublists of LIST.
1463 * STREAM is the stream upon which the output should be written.
1464 * THECLASS should be:
1465 * A non-negative class number to list only commands in that
1466 * ALL_COMMANDS to list all commands in list.
1467 * ALL_CLASSES to list all classes in list.
1468 *
1469 * Note that aliases are only shown when THECLASS is class_alias.
1470 * In the other cases, the aliases will be shown together with their
1471 * aliased command.
1472 *
1473 * Note that RECURSE will be active on *all* sublists, not just the
1474 * ones selected by the criteria above (ie. the selection mechanism
1475 * is at the low level, not the high-level).
1476 */
1477
1478 static void
1479 help_cmd_list (struct cmd_list_element *list, enum command_class theclass,
1480 bool recurse, struct ui_file *stream)
1481 {
1482 struct cmd_list_element *c;
1483
1484 for (c = list; c; c = c->next)
1485 {
1486 if (c->abbrev_flag == 1 || c->cmd_deprecated)
1487 {
1488 /* Do not show abbreviations or deprecated commands. */
1489 continue;
1490 }
1491
1492 if (c->cmd_pointer != nullptr && theclass != class_alias)
1493 {
1494 /* Do not show an alias, unless specifically showing the
1495 list of aliases: for all other classes, an alias is
1496 shown (if needed) together with its aliased command. */
1497 continue;
1498 }
1499
1500 if (theclass == all_commands
1501 || (theclass == all_classes && c->func == NULL)
1502 || (theclass == c->theclass && c->func != NULL))
1503 {
1504 /* show C when
1505 - showing all commands
1506 - showing all classes and C is a help class
1507 - showing commands of THECLASS and C is not the help class */
1508
1509 /* If we show the class_alias and C is an alias, do not recurse,
1510 as this would show the (possibly very long) not very useful
1511 list of sub-commands of the aliased command. */
1512 print_help_for_command
1513 (c,
1514 recurse && (theclass != class_alias || c->cmd_pointer == nullptr),
1515 stream);
1516 continue;
1517 }
1518
1519 if (recurse
1520 && (theclass == class_user || theclass == class_alias)
1521 && c->prefixlist != NULL)
1522 {
1523 /* User-defined commands or aliases may be subcommands. */
1524 help_cmd_list (*c->prefixlist, theclass, recurse, stream);
1525 continue;
1526 }
1527
1528 /* Do not show C or recurse on C, e.g. because C does not belong to
1529 THECLASS or because C is a help class. */
1530 }
1531 }
1532 \f
1533
1534 /* Search the input clist for 'command'. Return the command if
1535 found (or NULL if not), and return the number of commands
1536 found in nfound. */
1537
1538 static struct cmd_list_element *
1539 find_cmd (const char *command, int len, struct cmd_list_element *clist,
1540 int ignore_help_classes, int *nfound)
1541 {
1542 struct cmd_list_element *found, *c;
1543
1544 found = NULL;
1545 *nfound = 0;
1546 for (c = clist; c; c = c->next)
1547 if (!strncmp (command, c->name, len)
1548 && (!ignore_help_classes || c->func))
1549 {
1550 found = c;
1551 (*nfound)++;
1552 if (c->name[len] == '\0')
1553 {
1554 *nfound = 1;
1555 break;
1556 }
1557 }
1558 return found;
1559 }
1560
1561 /* Return the length of command name in TEXT. */
1562
1563 int
1564 find_command_name_length (const char *text)
1565 {
1566 const char *p = text;
1567
1568 /* Treating underscores as part of command words is important
1569 so that "set args_foo()" doesn't get interpreted as
1570 "set args _foo()". */
1571 /* Some characters are only used for TUI specific commands.
1572 However, they are always allowed for the sake of consistency.
1573
1574 Note that this is larger than the character set allowed when
1575 creating user-defined commands. */
1576
1577 /* Recognize the single character commands so that, e.g., "!ls"
1578 works as expected. */
1579 if (*p == '!' || *p == '|')
1580 return 1;
1581
1582 while (valid_cmd_char_p (*p)
1583 /* Characters used by TUI specific commands. */
1584 || *p == '+' || *p == '<' || *p == '>' || *p == '$')
1585 p++;
1586
1587 return p - text;
1588 }
1589
1590 /* See command.h. */
1591
1592 bool
1593 valid_cmd_char_p (int c)
1594 {
1595 /* Alas "42" is a legitimate user-defined command.
1596 In the interests of not breaking anything we preserve that. */
1597
1598 return isalnum (c) || c == '-' || c == '_' || c == '.';
1599 }
1600
1601 /* See command.h. */
1602
1603 bool
1604 valid_user_defined_cmd_name_p (const char *name)
1605 {
1606 const char *p;
1607
1608 if (*name == '\0')
1609 return false;
1610
1611 for (p = name; *p != '\0'; ++p)
1612 {
1613 if (valid_cmd_char_p (*p))
1614 ; /* Ok. */
1615 else
1616 return false;
1617 }
1618
1619 return true;
1620 }
1621
1622 /* This routine takes a line of TEXT and a CLIST in which to start the
1623 lookup. When it returns it will have incremented the text pointer past
1624 the section of text it matched, set *RESULT_LIST to point to the list in
1625 which the last word was matched, and will return a pointer to the cmd
1626 list element which the text matches. It will return NULL if no match at
1627 all was possible. It will return -1 (cast appropriately, ick) if ambigous
1628 matches are possible; in this case *RESULT_LIST will be set to point to
1629 the list in which there are ambiguous choices (and *TEXT will be set to
1630 the ambiguous text string).
1631
1632 if DEFAULT_ARGS is not null, *DEFAULT_ARGS is set to the found command
1633 default args (possibly empty).
1634
1635 If the located command was an abbreviation, this routine returns the base
1636 command of the abbreviation. Note that *DEFAULT_ARGS will contain the
1637 default args defined for the alias.
1638
1639 It does no error reporting whatsoever; control will always return
1640 to the superior routine.
1641
1642 In the case of an ambiguous return (-1), *RESULT_LIST will be set to point
1643 at the prefix_command (ie. the best match) *or* (special case) will be NULL
1644 if no prefix command was ever found. For example, in the case of "info a",
1645 "info" matches without ambiguity, but "a" could be "args" or "address", so
1646 *RESULT_LIST is set to the cmd_list_element for "info". So in this case
1647 RESULT_LIST should not be interpreted as a pointer to the beginning of a
1648 list; it simply points to a specific command. In the case of an ambiguous
1649 return *TEXT is advanced past the last non-ambiguous prefix (e.g.
1650 "info t" can be "info types" or "info target"; upon return *TEXT has been
1651 advanced past "info ").
1652
1653 If RESULT_LIST is NULL, don't set *RESULT_LIST (but don't otherwise
1654 affect the operation).
1655
1656 This routine does *not* modify the text pointed to by TEXT.
1657
1658 If IGNORE_HELP_CLASSES is nonzero, ignore any command list elements which
1659 are actually help classes rather than commands (i.e. the function field of
1660 the struct cmd_list_element is NULL). */
1661
1662 struct cmd_list_element *
1663 lookup_cmd_1 (const char **text, struct cmd_list_element *clist,
1664 struct cmd_list_element **result_list, std::string *default_args,
1665 int ignore_help_classes)
1666 {
1667 char *command;
1668 int len, nfound;
1669 struct cmd_list_element *found, *c;
1670 bool found_alias = false;
1671 const char *line = *text;
1672
1673 while (**text == ' ' || **text == '\t')
1674 (*text)++;
1675
1676 /* Identify the name of the command. */
1677 len = find_command_name_length (*text);
1678
1679 /* If nothing but whitespace, return 0. */
1680 if (len == 0)
1681 return 0;
1682
1683 /* *text and p now bracket the first command word to lookup (and
1684 it's length is len). We copy this into a local temporary. */
1685
1686
1687 command = (char *) alloca (len + 1);
1688 memcpy (command, *text, len);
1689 command[len] = '\0';
1690
1691 /* Look it up. */
1692 found = 0;
1693 nfound = 0;
1694 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
1695
1696 /* If nothing matches, we have a simple failure. */
1697 if (nfound == 0)
1698 return 0;
1699
1700 if (nfound > 1)
1701 {
1702 if (result_list != nullptr)
1703 /* Will be modified in calling routine
1704 if we know what the prefix command is. */
1705 *result_list = 0;
1706 if (default_args != nullptr)
1707 *default_args = std::string ();
1708 return CMD_LIST_AMBIGUOUS; /* Ambiguous. */
1709 }
1710
1711 /* We've matched something on this list. Move text pointer forward. */
1712
1713 *text += len;
1714
1715 if (found->cmd_pointer)
1716 {
1717 /* We drop the alias (abbreviation) in favor of the command it
1718 is pointing to. If the alias is deprecated, though, we need to
1719 warn the user about it before we drop it. Note that while we
1720 are warning about the alias, we may also warn about the command
1721 itself and we will adjust the appropriate DEPRECATED_WARN_USER
1722 flags. */
1723
1724 if (found->deprecated_warn_user)
1725 deprecated_cmd_warning (line);
1726
1727 /* Return the default_args of the alias, not the default_args
1728 of the command it is pointing to. */
1729 if (default_args != nullptr)
1730 *default_args = found->default_args;
1731 found = found->cmd_pointer;
1732 found_alias = true;
1733 }
1734 /* If we found a prefix command, keep looking. */
1735
1736 if (found->prefixlist)
1737 {
1738 c = lookup_cmd_1 (text, *found->prefixlist, result_list,
1739 default_args, ignore_help_classes);
1740 if (!c)
1741 {
1742 /* Didn't find anything; this is as far as we got. */
1743 if (result_list != nullptr)
1744 *result_list = clist;
1745 if (!found_alias && default_args != nullptr)
1746 *default_args = found->default_args;
1747 return found;
1748 }
1749 else if (c == CMD_LIST_AMBIGUOUS)
1750 {
1751 /* We've gotten this far properly, but the next step is
1752 ambiguous. We need to set the result list to the best
1753 we've found (if an inferior hasn't already set it). */
1754 if (result_list != nullptr)
1755 if (!*result_list)
1756 /* This used to say *result_list = *found->prefixlist.
1757 If that was correct, need to modify the documentation
1758 at the top of this function to clarify what is
1759 supposed to be going on. */
1760 *result_list = found;
1761 /* For ambiguous commands, do not return any default_args args. */
1762 if (default_args != nullptr)
1763 *default_args = std::string ();
1764 return c;
1765 }
1766 else
1767 {
1768 /* We matched! */
1769 return c;
1770 }
1771 }
1772 else
1773 {
1774 if (result_list != nullptr)
1775 *result_list = clist;
1776 if (!found_alias && default_args != nullptr)
1777 *default_args = found->default_args;
1778 return found;
1779 }
1780 }
1781
1782 /* All this hair to move the space to the front of cmdtype */
1783
1784 static void
1785 undef_cmd_error (const char *cmdtype, const char *q)
1786 {
1787 error (_("Undefined %scommand: \"%s\". Try \"help%s%.*s\"."),
1788 cmdtype,
1789 q,
1790 *cmdtype ? " " : "",
1791 (int) strlen (cmdtype) - 1,
1792 cmdtype);
1793 }
1794
1795 /* Look up the contents of *LINE as a command in the command list LIST.
1796 LIST is a chain of struct cmd_list_element's.
1797 If it is found, return the struct cmd_list_element for that command,
1798 update *LINE to point after the command name, at the first argument
1799 and update *DEFAULT_ARGS (if DEFAULT_ARGS is not null) to the default
1800 args to prepend to the user provided args when running the command.
1801 Note that if the found cmd_list_element is found via an alias,
1802 the default args of the alias are returned.
1803
1804 If not found, call error if ALLOW_UNKNOWN is zero
1805 otherwise (or if error returns) return zero.
1806 Call error if specified command is ambiguous,
1807 unless ALLOW_UNKNOWN is negative.
1808 CMDTYPE precedes the word "command" in the error message.
1809
1810 If IGNORE_HELP_CLASSES is nonzero, ignore any command list
1811 elements which are actually help classes rather than commands (i.e.
1812 the function field of the struct cmd_list_element is 0). */
1813
1814 struct cmd_list_element *
1815 lookup_cmd (const char **line, struct cmd_list_element *list,
1816 const char *cmdtype,
1817 std::string *default_args,
1818 int allow_unknown, int ignore_help_classes)
1819 {
1820 struct cmd_list_element *last_list = 0;
1821 struct cmd_list_element *c;
1822
1823 /* Note: Do not remove trailing whitespace here because this
1824 would be wrong for complete_command. Jim Kingdon */
1825
1826 if (!*line)
1827 error (_("Lack of needed %scommand"), cmdtype);
1828
1829 c = lookup_cmd_1 (line, list, &last_list, default_args, ignore_help_classes);
1830
1831 if (!c)
1832 {
1833 if (!allow_unknown)
1834 {
1835 char *q;
1836 int len = find_command_name_length (*line);
1837
1838 q = (char *) alloca (len + 1);
1839 strncpy (q, *line, len);
1840 q[len] = '\0';
1841 undef_cmd_error (cmdtype, q);
1842 }
1843 else
1844 return 0;
1845 }
1846 else if (c == CMD_LIST_AMBIGUOUS)
1847 {
1848 /* Ambigous. Local values should be off prefixlist or called
1849 values. */
1850 int local_allow_unknown = (last_list ? last_list->allow_unknown :
1851 allow_unknown);
1852 const char *local_cmdtype = last_list ? last_list->prefixname : cmdtype;
1853 struct cmd_list_element *local_list =
1854 (last_list ? *(last_list->prefixlist) : list);
1855
1856 if (local_allow_unknown < 0)
1857 {
1858 if (last_list)
1859 return last_list; /* Found something. */
1860 else
1861 return 0; /* Found nothing. */
1862 }
1863 else
1864 {
1865 /* Report as error. */
1866 int amb_len;
1867 char ambbuf[100];
1868
1869 for (amb_len = 0;
1870 ((*line)[amb_len] && (*line)[amb_len] != ' '
1871 && (*line)[amb_len] != '\t');
1872 amb_len++)
1873 ;
1874
1875 ambbuf[0] = 0;
1876 for (c = local_list; c; c = c->next)
1877 if (!strncmp (*line, c->name, amb_len))
1878 {
1879 if (strlen (ambbuf) + strlen (c->name) + 6
1880 < (int) sizeof ambbuf)
1881 {
1882 if (strlen (ambbuf))
1883 strcat (ambbuf, ", ");
1884 strcat (ambbuf, c->name);
1885 }
1886 else
1887 {
1888 strcat (ambbuf, "..");
1889 break;
1890 }
1891 }
1892 error (_("Ambiguous %scommand \"%s\": %s."), local_cmdtype,
1893 *line, ambbuf);
1894 }
1895 }
1896 else
1897 {
1898 if (c->type == set_cmd && **line != '\0' && !isspace (**line))
1899 error (_("Argument must be preceded by space."));
1900
1901 /* We've got something. It may still not be what the caller
1902 wants (if this command *needs* a subcommand). */
1903 while (**line == ' ' || **line == '\t')
1904 (*line)++;
1905
1906 if (c->prefixlist && **line && !c->allow_unknown)
1907 undef_cmd_error (c->prefixname, *line);
1908
1909 /* Seems to be what he wants. Return it. */
1910 return c;
1911 }
1912 return 0;
1913 }
1914
1915 /* We are here presumably because an alias or command in TEXT is
1916 deprecated and a warning message should be generated. This
1917 function decodes TEXT and potentially generates a warning message
1918 as outlined below.
1919
1920 Example for 'set endian big' which has a fictitious alias 'seb'.
1921
1922 If alias wasn't used in TEXT, and the command is deprecated:
1923 "warning: 'set endian big' is deprecated."
1924
1925 If alias was used, and only the alias is deprecated:
1926 "warning: 'seb' an alias for the command 'set endian big' is deprecated."
1927
1928 If alias was used and command is deprecated (regardless of whether
1929 the alias itself is deprecated:
1930
1931 "warning: 'set endian big' (seb) is deprecated."
1932
1933 After the message has been sent, clear the appropriate flags in the
1934 command and/or the alias so the user is no longer bothered.
1935
1936 */
1937 void
1938 deprecated_cmd_warning (const char *text)
1939 {
1940 struct cmd_list_element *alias = NULL;
1941 struct cmd_list_element *prefix_cmd = NULL;
1942 struct cmd_list_element *cmd = NULL;
1943
1944 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
1945 /* Return if text doesn't evaluate to a command. */
1946 return;
1947
1948 if (!((alias ? alias->deprecated_warn_user : 0)
1949 || cmd->deprecated_warn_user) )
1950 /* Return if nothing is deprecated. */
1951 return;
1952
1953 printf_filtered ("Warning:");
1954
1955 if (alias && !cmd->cmd_deprecated)
1956 printf_filtered (" '%s', an alias for the", alias->name);
1957
1958 printf_filtered (" command '");
1959
1960 if (prefix_cmd)
1961 printf_filtered ("%s", prefix_cmd->prefixname);
1962
1963 printf_filtered ("%s", cmd->name);
1964
1965 if (alias && cmd->cmd_deprecated)
1966 printf_filtered ("' (%s) is deprecated.\n", alias->name);
1967 else
1968 printf_filtered ("' is deprecated.\n");
1969
1970
1971 /* If it is only the alias that is deprecated, we want to indicate
1972 the new alias, otherwise we'll indicate the new command. */
1973
1974 if (alias && !cmd->cmd_deprecated)
1975 {
1976 if (alias->replacement)
1977 printf_filtered ("Use '%s'.\n\n", alias->replacement);
1978 else
1979 printf_filtered ("No alternative known.\n\n");
1980 }
1981 else
1982 {
1983 if (cmd->replacement)
1984 printf_filtered ("Use '%s'.\n\n", cmd->replacement);
1985 else
1986 printf_filtered ("No alternative known.\n\n");
1987 }
1988
1989 /* We've warned you, now we'll keep quiet. */
1990 if (alias)
1991 alias->deprecated_warn_user = 0;
1992
1993 cmd->deprecated_warn_user = 0;
1994 }
1995
1996
1997 /* Look up the contents of TEXT as a command in the command list 'cmdlist'.
1998 Return 1 on success, 0 on failure.
1999
2000 If TEXT refers to an alias, *ALIAS will point to that alias.
2001
2002 If TEXT is a subcommand (i.e. one that is preceded by a prefix
2003 command) set *PREFIX_CMD.
2004
2005 Set *CMD to point to the command TEXT indicates.
2006
2007 If any of *ALIAS, *PREFIX_CMD, or *CMD cannot be determined or do not
2008 exist, they are NULL when we return.
2009
2010 */
2011 int
2012 lookup_cmd_composition (const char *text,
2013 struct cmd_list_element **alias,
2014 struct cmd_list_element **prefix_cmd,
2015 struct cmd_list_element **cmd)
2016 {
2017 char *command;
2018 int len, nfound;
2019 struct cmd_list_element *cur_list;
2020 struct cmd_list_element *prev_cmd;
2021
2022 *alias = NULL;
2023 *prefix_cmd = NULL;
2024 *cmd = NULL;
2025
2026 cur_list = cmdlist;
2027
2028 text = skip_spaces (text);
2029
2030 while (1)
2031 {
2032 /* Go through as many command lists as we need to,
2033 to find the command TEXT refers to. */
2034
2035 prev_cmd = *cmd;
2036
2037 /* Identify the name of the command. */
2038 len = find_command_name_length (text);
2039
2040 /* If nothing but whitespace, return. */
2041 if (len == 0)
2042 return 0;
2043
2044 /* TEXT is the start of the first command word to lookup (and
2045 it's length is LEN). We copy this into a local temporary. */
2046
2047 command = (char *) alloca (len + 1);
2048 memcpy (command, text, len);
2049 command[len] = '\0';
2050
2051 /* Look it up. */
2052 *cmd = 0;
2053 nfound = 0;
2054 *cmd = find_cmd (command, len, cur_list, 1, &nfound);
2055
2056 if (*cmd == CMD_LIST_AMBIGUOUS)
2057 {
2058 return 0; /* ambiguous */
2059 }
2060
2061 if (*cmd == NULL)
2062 return 0; /* nothing found */
2063 else
2064 {
2065 if ((*cmd)->cmd_pointer)
2066 {
2067 /* cmd was actually an alias, we note that an alias was
2068 used (by assigning *ALIAS) and we set *CMD. */
2069 *alias = *cmd;
2070 *cmd = (*cmd)->cmd_pointer;
2071 }
2072 *prefix_cmd = prev_cmd;
2073 }
2074
2075 text += len;
2076 text = skip_spaces (text);
2077
2078 if ((*cmd)->prefixlist && *text != '\0')
2079 cur_list = *(*cmd)->prefixlist;
2080 else
2081 return 1;
2082 }
2083 }
2084
2085 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2086
2087 /* Return a vector of char pointers which point to the different
2088 possible completions in LIST of TEXT.
2089
2090 WORD points in the same buffer as TEXT, and completions should be
2091 returned relative to this position. For example, suppose TEXT is
2092 "foo" and we want to complete to "foobar". If WORD is "oo", return
2093 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
2094
2095 void
2096 complete_on_cmdlist (struct cmd_list_element *list,
2097 completion_tracker &tracker,
2098 const char *text, const char *word,
2099 int ignore_help_classes)
2100 {
2101 struct cmd_list_element *ptr;
2102 int textlen = strlen (text);
2103 int pass;
2104 int saw_deprecated_match = 0;
2105
2106 /* We do one or two passes. In the first pass, we skip deprecated
2107 commands. If we see no matching commands in the first pass, and
2108 if we did happen to see a matching deprecated command, we do
2109 another loop to collect those. */
2110 for (pass = 0; pass < 2; ++pass)
2111 {
2112 bool got_matches = false;
2113
2114 for (ptr = list; ptr; ptr = ptr->next)
2115 if (!strncmp (ptr->name, text, textlen)
2116 && !ptr->abbrev_flag
2117 && (!ignore_help_classes || ptr->func
2118 || ptr->prefixlist))
2119 {
2120 if (pass == 0)
2121 {
2122 if (ptr->cmd_deprecated)
2123 {
2124 saw_deprecated_match = 1;
2125 continue;
2126 }
2127 }
2128
2129 tracker.add_completion
2130 (make_completion_match_str (ptr->name, text, word));
2131 got_matches = true;
2132 }
2133
2134 if (got_matches)
2135 break;
2136
2137 /* If we saw no matching deprecated commands in the first pass,
2138 just bail out. */
2139 if (!saw_deprecated_match)
2140 break;
2141 }
2142 }
2143
2144 /* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2145
2146 /* Add the different possible completions in ENUMLIST of TEXT.
2147
2148 WORD points in the same buffer as TEXT, and completions should be
2149 returned relative to this position. For example, suppose TEXT is "foo"
2150 and we want to complete to "foobar". If WORD is "oo", return
2151 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
2152
2153 void
2154 complete_on_enum (completion_tracker &tracker,
2155 const char *const *enumlist,
2156 const char *text, const char *word)
2157 {
2158 int textlen = strlen (text);
2159 int i;
2160 const char *name;
2161
2162 for (i = 0; (name = enumlist[i]) != NULL; i++)
2163 if (strncmp (name, text, textlen) == 0)
2164 tracker.add_completion (make_completion_match_str (name, text, word));
2165 }
2166
2167
2168 /* Check function pointer. */
2169 int
2170 cmd_func_p (struct cmd_list_element *cmd)
2171 {
2172 return (cmd->func != NULL);
2173 }
2174
2175
2176 /* Call the command function. */
2177 void
2178 cmd_func (struct cmd_list_element *cmd, const char *args, int from_tty)
2179 {
2180 if (cmd_func_p (cmd))
2181 {
2182 gdb::optional<scoped_restore_tmpl<int>> restore_suppress;
2183
2184 if (cmd->suppress_notification != NULL)
2185 restore_suppress.emplace (cmd->suppress_notification, 1);
2186
2187 (*cmd->func) (cmd, args, from_tty);
2188 }
2189 else
2190 error (_("Invalid command"));
2191 }
2192
2193 int
2194 cli_user_command_p (struct cmd_list_element *cmd)
2195 {
2196 return (cmd->theclass == class_user
2197 && (cmd->func == do_const_cfunc || cmd->func == do_sfunc));
2198 }
This page took 0.071971 seconds and 3 git commands to generate.