Move signatured_type::type to unshareable object
[deliverable/binutils-gdb.git] / gdb / cli / cli-decode.c
CommitLineData
c906108c 1/* Handle lists of commands, their decoding and documentation, for GDB.
8926118c 2
b811d2c2 3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
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
a9762ec7 7 the Free Software Foundation; either version 3 of the License, or
c5aa993b 8 (at your option) any later version.
c906108c 9
c5aa993b
JM
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.
c906108c 14
c5aa993b 15 You should have received a copy of the GNU General Public License
a9762ec7 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
17
18#include "defs.h"
c906108c 19#include "symtab.h"
c906108c 20#include <ctype.h>
f77b92bf 21#include "gdb_regex.h"
f397e303 22#include "completer.h"
8b93c638 23#include "ui-out.h"
d318976c
FN
24#include "cli/cli-cmds.h"
25#include "cli/cli-decode.h"
66d8c862 26#include "cli/cli-style.h"
268a13a5 27#include "gdbsupport/gdb_optional.h"
b2875cc0 28
ebcd3b23 29/* Prototypes for local functions. */
c906108c 30
6f937416 31static void undef_cmd_error (const char *, const char *);
c906108c 32
6f937416 33static struct cmd_list_element *delete_cmd (const char *name,
fad6eecd
TT
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);
b05dcbb7 39
6f937416 40static struct cmd_list_element *find_cmd (const char *command,
a14ed312
KB
41 int len,
42 struct cmd_list_element *clist,
43 int ignore_help_classes,
44 int *nfound);
6837a0a2 45
3b3aaacb
PW
46static void help_cmd_list (struct cmd_list_element *list,
47 enum command_class theclass,
48 bool recurse,
49 struct ui_file *stream);
50
c85871a3 51static void help_all (struct ui_file *stream);
6e381ba0 52
5b9afe8a
YQ
53/* Look up a command whose 'prefixlist' is KEY. Return the command if found,
54 otherwise return NULL. */
55
56static struct cmd_list_element *
57lookup_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)
3f4d92eb
PW
69 {
70 /* If we found an alias, we must return the aliased
71 command. */
72 return p->cmd_pointer ? p->cmd_pointer : p;
73 }
5b9afe8a
YQ
74
75 q = lookup_cmd_for_prefixlist (key, *(p->prefixlist));
76 if (q != NULL)
77 return q;
78 }
79
80 return NULL;
81}
82
6e381ba0 83static void
3b3aaacb
PW
84print_help_for_command (struct cmd_list_element *c,
85 bool recurse, struct ui_file *stream);
6e381ba0 86
d318976c 87\f
9f60d481
AC
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
0450cc4c 92static void
95a6b0a1 93do_const_cfunc (struct cmd_list_element *c, const char *args, int from_tty)
0450cc4c
TT
94{
95 c->function.const_cfunc (args, from_tty);
96}
97
c2252c0d 98static void
0450cc4c
TT
99set_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;
9f60d481
AC
106}
107
108static void
95a6b0a1 109do_sfunc (struct cmd_list_element *c, const char *args, int from_tty)
9f60d481 110{
0450cc4c 111 c->function.sfunc (args, from_tty, c);
9f60d481
AC
112}
113
114void
eb4c3f4a 115set_cmd_sfunc (struct cmd_list_element *cmd, cmd_const_sfunc_ftype *sfunc)
9f60d481
AC
116{
117 if (sfunc == NULL)
118 cmd->func = NULL;
119 else
120 cmd->func = do_sfunc;
0450cc4c 121 cmd->function.sfunc = sfunc;
9f60d481
AC
122}
123
0450cc4c
TT
124int
125cmd_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
7d0766f3
AC
130void
131set_cmd_context (struct cmd_list_element *cmd, void *context)
132{
133 cmd->context = context;
134}
135
136void *
137get_cmd_context (struct cmd_list_element *cmd)
138{
139 return cmd->context;
140}
141
1868c04e
AC
142enum cmd_types
143cmd_type (struct cmd_list_element *cmd)
144{
145 return cmd->type;
146}
147
5ba2abeb 148void
625e8578 149set_cmd_completer (struct cmd_list_element *cmd, completer_ftype *completer)
5ba2abeb
AC
150{
151 cmd->completer = completer; /* Ok. */
152}
153
7d793aa9
SDJ
154/* See definition in commands.h. */
155
156void
157set_cmd_completer_handle_brkchars (struct cmd_list_element *cmd,
6e1dbf8c 158 completer_handle_brkchars_ftype *func)
7d793aa9 159{
6e1dbf8c 160 cmd->completer_handle_brkchars = func;
7d793aa9
SDJ
161}
162
c906108c 163/* Add element named NAME.
bc587a6b 164 Space for NAME and DOC must be allocated by the caller.
c906108c
SS
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
ebcd3b23 176 Add this command to command list *LIST.
c906108c
SS
177
178 Returns a pointer to the added command (not necessarily the head
ebcd3b23 179 of *LIST). */
c906108c 180
0450cc4c
TT
181static struct cmd_list_element *
182do_add_cmd (const char *name, enum command_class theclass,
183 const char *doc, struct cmd_list_element **list)
c906108c 184{
e2fc72e2
TT
185 struct cmd_list_element *c = new struct cmd_list_element (name, theclass,
186 doc);
b05dcbb7 187 struct cmd_list_element *p, *iter;
c906108c 188
b05dcbb7
TT
189 /* Turn each alias of the old command into an alias of the new
190 command. */
fad6eecd
TT
191 c->aliases = delete_cmd (name, list, &c->hook_pre, &c->hookee_pre,
192 &c->hook_post, &c->hookee_post);
b05dcbb7
TT
193 for (iter = c->aliases; iter; iter = iter->alias_chain)
194 iter->cmd_pointer = c;
fad6eecd
TT
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;
c906108c 203
494b7ec9 204 if (*list == NULL || strcmp ((*list)->name, name) >= 0)
c906108c
SS
205 {
206 c->next = *list;
207 *list = c;
208 }
209 else
210 {
211 p = *list;
494b7ec9 212 while (p->next && strcmp (p->next->name, name) <= 0)
c5aa993b
JM
213 {
214 p = p->next;
215 }
c906108c
SS
216 c->next = p->next;
217 p->next = c;
218 }
219
3f4d92eb
PW
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
c906108c
SS
227 return c;
228}
229
0450cc4c
TT
230struct cmd_list_element *
231add_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;
5fed81ff 236 result->function.const_cfunc = NULL;
0450cc4c
TT
237 return result;
238}
239
240struct cmd_list_element *
241add_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
f67ffa6a
AB
250/* Add an element with a suppress notification to the LIST of commands. */
251
252struct cmd_list_element *
253add_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
56382845 267/* Deprecates a command CMD.
ebcd3b23
MS
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.
56382845
FN
270
271 This function does not check to see if command REPLACEMENT exists
ebcd3b23
MS
272 since gdb may not have gotten around to adding REPLACEMENT when
273 this function is called.
56382845
FN
274
275 Returns a pointer to the deprecated command. */
276
277struct cmd_list_element *
429e55ea 278deprecate_cmd (struct cmd_list_element *cmd, const char *replacement)
56382845 279{
1f2bdf09
TT
280 cmd->cmd_deprecated = 1;
281 cmd->deprecated_warn_user = 1;
56382845
FN
282
283 if (replacement != NULL)
284 cmd->replacement = replacement;
285 else
286 cmd->replacement = NULL;
287
288 return cmd;
289}
290
c906108c 291struct cmd_list_element *
21873064
YQ
292add_alias_cmd (const char *name, cmd_list_element *old,
293 enum command_class theclass, int abbrev_flag,
294 struct cmd_list_element **list)
c906108c 295{
c906108c
SS
296 if (old == 0)
297 {
fad6eecd
TT
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);
cdb27c12 302
b05dcbb7 303 /* If this happens, it means a programmer error somewhere. */
300d0284 304 gdb_assert (!aliases && !prehook && !prehookee
fad6eecd 305 && !posthook && ! posthookee);
c906108c
SS
306 return 0;
307 }
308
0450cc4c 309 struct cmd_list_element *c = add_cmd (name, theclass, old->doc, list);
5bc81a00
PM
310
311 /* If OLD->DOC can be freed, we should make another copy. */
1f2bdf09 312 if (old->doc_allocated)
5bc81a00
PM
313 {
314 c->doc = xstrdup (old->doc);
1f2bdf09 315 c->doc_allocated = 1;
5bc81a00 316 }
9f60d481
AC
317 /* NOTE: Both FUNC and all the FUNCTIONs need to be copied. */
318 c->func = old->func;
319 c->function = old->function;
c906108c
SS
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;
b05dcbb7
TT
325 c->alias_chain = old->aliases;
326 old->aliases = c;
5b9afe8a 327
c906108c
SS
328 return c;
329}
330
21873064
YQ
331struct cmd_list_element *
332add_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
3f4d92eb
PW
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
353static void
354update_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
ebcd3b23
MS
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. */
c906108c
SS
381
382struct cmd_list_element *
fe978cb0 383add_prefix_cmd (const char *name, enum command_class theclass,
981a3fb3 384 cmd_const_cfunc_ftype *fun,
1947513d 385 const char *doc, struct cmd_list_element **prefixlist,
64e61d29 386 const char *prefixname, int allow_unknown,
af1c1752 387 struct cmd_list_element **list)
c906108c 388{
fe978cb0 389 struct cmd_list_element *c = add_cmd (name, theclass, fun, doc, list);
cdb27c12 390
c906108c
SS
391 c->prefixlist = prefixlist;
392 c->prefixname = prefixname;
393 c->allow_unknown = allow_unknown;
5b9afe8a 394
3f4d92eb
PW
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);
5b9afe8a 398
c906108c
SS
399 return c;
400}
401
0743fc83
TT
402/* A helper function for add_basic_prefix_cmd. This is a command
403 function that just forwards to help_list. */
404
405static void
406do_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
417struct cmd_list_element *
418add_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
433static void
434do_show_prefix_cmd (const char *args, int from_tty, struct cmd_list_element *c)
435{
7aa1b46f 436 cmd_show_list (*c->prefixlist, from_tty);
0743fc83
TT
437}
438
439/* See command.h. */
440
441struct cmd_list_element *
442add_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
f67ffa6a
AB
454/* Like ADD_PREFIX_CMD but sets the suppress_notification pointer on the
455 new command list element. */
456
457struct cmd_list_element *
458add_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
ebcd3b23 473/* Like add_prefix_cmd but sets the abbrev_flag on the new command. */
c5aa993b 474
c906108c 475struct cmd_list_element *
fe978cb0 476add_abbrev_prefix_cmd (const char *name, enum command_class theclass,
ee7ddd71 477 cmd_const_cfunc_ftype *fun, const char *doc,
64e61d29
TT
478 struct cmd_list_element **prefixlist,
479 const char *prefixname,
af1c1752 480 int allow_unknown, struct cmd_list_element **list)
c906108c 481{
fe978cb0 482 struct cmd_list_element *c = add_cmd (name, theclass, fun, doc, list);
cdb27c12 483
c906108c
SS
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". */
492void
eb7c454d 493not_just_help_class_command (const char *args, int from_tty)
c906108c
SS
494{
495}
496
497/* This is an empty "sfunc". */
c906108c
SS
498
499static void
eb4c3f4a 500empty_sfunc (const char *args, int from_tty, struct cmd_list_element *c)
c906108c
SS
501{
502}
503
b2875cc0 504/* Add element named NAME to command list LIST (the list for set/show
c906108c 505 or some sublist thereof).
b2875cc0 506 TYPE is set_cmd or show_cmd.
c906108c
SS
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
b2875cc0 512static struct cmd_list_element *
6f937416 513add_set_or_show_cmd (const char *name,
b2875cc0 514 enum cmd_types type,
fe978cb0 515 enum command_class theclass,
b2875cc0
AC
516 var_types var_type,
517 void *var,
1947513d 518 const char *doc,
b2875cc0 519 struct cmd_list_element **list)
c906108c 520{
0450cc4c 521 struct cmd_list_element *c = add_cmd (name, theclass, doc, list);
cdb27c12 522
b2875cc0
AC
523 gdb_assert (type == set_cmd || type == show_cmd);
524 c->type = type;
c906108c
SS
525 c->var_type = var_type;
526 c->var = var;
e00d1dc8 527 /* This needs to be something besides NULL so that this isn't
c906108c 528 treated as a help class. */
9f60d481 529 set_cmd_sfunc (c, empty_sfunc);
c906108c
SS
530 return c;
531}
532
e707bbc2
AC
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
3b64bf98
AC
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. */
e707bbc2 541
b3f42336 542static void
6f937416 543add_setshow_cmd_full (const char *name,
fe978cb0 544 enum command_class theclass,
9f064c95 545 var_types var_type, void *var,
3b64bf98 546 const char *set_doc, const char *show_doc,
335cca0d 547 const char *help_doc,
eb4c3f4a 548 cmd_const_sfunc_ftype *set_func,
08546159 549 show_value_ftype *show_func,
9f064c95
TT
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)
e707bbc2
AC
554{
555 struct cmd_list_element *set;
556 struct cmd_list_element *show;
be7d7357
AC
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 }
fe978cb0 570 set = add_set_or_show_cmd (name, set_cmd, theclass, var_type, var,
3b64bf98 571 full_set_doc, set_list);
1f2bdf09 572 set->doc_allocated = 1;
5bc81a00 573
e707bbc2
AC
574 if (set_func != NULL)
575 set_cmd_sfunc (set, set_func);
5b9afe8a 576
fe978cb0 577 show = add_set_or_show_cmd (name, show_cmd, theclass, var_type, var,
3b64bf98 578 full_show_doc, show_list);
1f2bdf09 579 show->doc_allocated = 1;
08546159 580 show->show_value_func = show_func;
597bf39d
PA
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);
9f064c95
TT
584
585 if (set_result != NULL)
586 *set_result = set;
587 if (show_result != NULL)
588 *show_result = show;
589}
590
1b295c3d
AC
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
596void
6f937416 597add_setshow_enum_cmd (const char *name,
fe978cb0 598 enum command_class theclass,
40478521 599 const char *const *enumlist,
1b295c3d
AC
600 const char **var,
601 const char *set_doc,
602 const char *show_doc,
603 const char *help_doc,
eb4c3f4a 604 cmd_const_sfunc_ftype *set_func,
08546159 605 show_value_ftype *show_func,
1b295c3d 606 struct cmd_list_element **set_list,
7170dadf
TT
607 struct cmd_list_element **show_list,
608 void *context)
1b295c3d 609{
7170dadf 610 struct cmd_list_element *c, *show;
cdb27c12 611
fe978cb0 612 add_setshow_cmd_full (name, theclass, var_enum, var,
335cca0d 613 set_doc, show_doc, help_doc,
1b295c3d
AC
614 set_func, show_func,
615 set_list, show_list,
7170dadf 616 &c, &show);
1b295c3d 617 c->enums = enumlist;
7170dadf
TT
618
619 set_cmd_context (c, context);
620 set_cmd_context (show, context);
1b295c3d
AC
621}
622
9d0faba9 623/* See cli-decode.h. */
5b9afe8a
YQ
624const char * const auto_boolean_enums[] = { "on", "off", "auto", NULL };
625
e9e68a56
AC
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. */
630void
6f937416 631add_setshow_auto_boolean_cmd (const char *name,
fe978cb0 632 enum command_class theclass,
e9e68a56 633 enum auto_boolean *var,
3b64bf98 634 const char *set_doc, const char *show_doc,
335cca0d 635 const char *help_doc,
eb4c3f4a 636 cmd_const_sfunc_ftype *set_func,
08546159 637 show_value_ftype *show_func,
e9e68a56
AC
638 struct cmd_list_element **set_list,
639 struct cmd_list_element **show_list)
97c3646f 640{
97c3646f 641 struct cmd_list_element *c;
cdb27c12 642
fe978cb0 643 add_setshow_cmd_full (name, theclass, var_auto_boolean, var,
2c5b56ce 644 set_doc, show_doc, help_doc,
3b64bf98 645 set_func, show_func,
9f064c95
TT
646 set_list, show_list,
647 &c, NULL);
97c3646f 648 c->enums = auto_boolean_enums;
97c3646f
AC
649}
650
9d0faba9
PA
651/* See cli-decode.h. */
652const char * const boolean_enums[] = { "on", "off", NULL };
653
e707bbc2
AC
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
2daf894e
PA
657 value. SET_DOC and SHOW_DOC are the documentation strings.
658 Returns the new command element. */
659
660cmd_list_element *
491144b5 661add_setshow_boolean_cmd (const char *name, enum command_class theclass, bool *var,
3b64bf98 662 const char *set_doc, const char *show_doc,
335cca0d 663 const char *help_doc,
eb4c3f4a 664 cmd_const_sfunc_ftype *set_func,
08546159 665 show_value_ftype *show_func,
e707bbc2
AC
666 struct cmd_list_element **set_list,
667 struct cmd_list_element **show_list)
f3796e26 668{
f3796e26 669 struct cmd_list_element *c;
cdb27c12 670
fe978cb0 671 add_setshow_cmd_full (name, theclass, var_boolean, var,
2c5b56ce 672 set_doc, show_doc, help_doc,
9f064c95
TT
673 set_func, show_func,
674 set_list, show_list,
675 &c, NULL);
f3796e26 676 c->enums = boolean_enums;
2daf894e
PA
677
678 return c;
f3796e26
AC
679}
680
b3f42336
AC
681/* Add element named NAME to both the set and show command LISTs (the
682 list for set/show or some sublist thereof). */
683void
fe978cb0 684add_setshow_filename_cmd (const char *name, enum command_class theclass,
b3f42336
AC
685 char **var,
686 const char *set_doc, const char *show_doc,
335cca0d 687 const char *help_doc,
eb4c3f4a 688 cmd_const_sfunc_ftype *set_func,
08546159 689 show_value_ftype *show_func,
b3f42336
AC
690 struct cmd_list_element **set_list,
691 struct cmd_list_element **show_list)
692{
f397e303 693 struct cmd_list_element *set_result;
cdb27c12 694
fe978cb0 695 add_setshow_cmd_full (name, theclass, var_filename, var,
2c5b56ce 696 set_doc, show_doc, help_doc,
b3f42336
AC
697 set_func, show_func,
698 set_list, show_list,
f397e303
AC
699 &set_result, NULL);
700 set_cmd_completer (set_result, filename_completer);
b3f42336
AC
701}
702
703/* Add element named NAME to both the set and show command LISTs (the
5efd5804
PA
704 list for set/show or some sublist thereof). */
705void
fe978cb0 706add_setshow_string_cmd (const char *name, enum command_class theclass,
6df3bc68
MS
707 char **var,
708 const char *set_doc, const char *show_doc,
709 const char *help_doc,
eb4c3f4a 710 cmd_const_sfunc_ftype *set_func,
6df3bc68
MS
711 show_value_ftype *show_func,
712 struct cmd_list_element **set_list,
713 struct cmd_list_element **show_list)
b3f42336 714{
597bf39d
PA
715 cmd_list_element *set_cmd;
716
fe978cb0 717 add_setshow_cmd_full (name, theclass, var_string, var,
2c5b56ce 718 set_doc, show_doc, help_doc,
b3f42336
AC
719 set_func, show_func,
720 set_list, show_list,
597bf39d
PA
721 &set_cmd, NULL);
722
723 /* Disable the default symbol completer. */
724 set_cmd_completer (set_cmd, nullptr);
b3f42336
AC
725}
726
26c41df3 727/* Add element named NAME to both the set and show command LISTs (the
5efd5804 728 list for set/show or some sublist thereof). */
44478ab3 729struct cmd_list_element *
fe978cb0 730add_setshow_string_noescape_cmd (const char *name, enum command_class theclass,
26c41df3
AC
731 char **var,
732 const char *set_doc, const char *show_doc,
733 const char *help_doc,
eb4c3f4a 734 cmd_const_sfunc_ftype *set_func,
26c41df3
AC
735 show_value_ftype *show_func,
736 struct cmd_list_element **set_list,
737 struct cmd_list_element **show_list)
738{
44478ab3
TT
739 struct cmd_list_element *set_cmd;
740
fe978cb0 741 add_setshow_cmd_full (name, theclass, var_string_noescape, var,
26c41df3
AC
742 set_doc, show_doc, help_doc,
743 set_func, show_func,
744 set_list, show_list,
44478ab3 745 &set_cmd, NULL);
597bf39d
PA
746
747 /* Disable the default symbol completer. */
748 set_cmd_completer (set_cmd, nullptr);
749
44478ab3 750 return set_cmd;
26c41df3
AC
751}
752
b4b4ac0b
AC
753/* Add element named NAME to both the set and show command LISTs (the
754 list for set/show or some sublist thereof). */
755void
fe978cb0 756add_setshow_optional_filename_cmd (const char *name, enum command_class theclass,
b4b4ac0b
AC
757 char **var,
758 const char *set_doc, const char *show_doc,
759 const char *help_doc,
eb4c3f4a 760 cmd_const_sfunc_ftype *set_func,
b4b4ac0b
AC
761 show_value_ftype *show_func,
762 struct cmd_list_element **set_list,
763 struct cmd_list_element **show_list)
764{
7f6a6314
PM
765 struct cmd_list_element *set_result;
766
fe978cb0 767 add_setshow_cmd_full (name, theclass, var_optional_filename, var,
b4b4ac0b
AC
768 set_doc, show_doc, help_doc,
769 set_func, show_func,
770 set_list, show_list,
7f6a6314
PM
771 &set_result, NULL);
772
773 set_cmd_completer (set_result, filename_completer);
774
b4b4ac0b
AC
775}
776
f81d1120
PA
777/* Completes on literal "unlimited". Used by integer commands that
778 support a special "unlimited" value. */
779
eb3ff9a5 780static void
f81d1120 781integer_unlimited_completer (struct cmd_list_element *ignore,
eb3ff9a5 782 completion_tracker &tracker,
f81d1120
PA
783 const char *text, const char *word)
784{
785 static const char * const keywords[] =
786 {
787 "unlimited",
788 NULL,
789 };
790
eb3ff9a5 791 complete_on_enum (tracker, keywords, text, word);
f81d1120
PA
792}
793
c0d88b1b
AC
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
6fc1c773
YQ
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. */
5efd5804 799void
fe978cb0 800add_setshow_integer_cmd (const char *name, enum command_class theclass,
47b667de 801 int *var,
6df3bc68
MS
802 const char *set_doc, const char *show_doc,
803 const char *help_doc,
eb4c3f4a 804 cmd_const_sfunc_ftype *set_func,
6df3bc68
MS
805 show_value_ftype *show_func,
806 struct cmd_list_element **set_list,
807 struct cmd_list_element **show_list)
c0d88b1b 808{
f81d1120
PA
809 struct cmd_list_element *set;
810
fe978cb0 811 add_setshow_cmd_full (name, theclass, var_integer, var,
c0d88b1b
AC
812 set_doc, show_doc, help_doc,
813 set_func, show_func,
814 set_list, show_list,
f81d1120
PA
815 &set, NULL);
816
817 set_cmd_completer (set, integer_unlimited_completer);
c0d88b1b
AC
818}
819
25d29d70
AC
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
5efd5804
PA
823 value. SET_DOC and SHOW_DOC are the documentation strings. */
824void
fe978cb0 825add_setshow_uinteger_cmd (const char *name, enum command_class theclass,
3b64bf98
AC
826 unsigned int *var,
827 const char *set_doc, const char *show_doc,
335cca0d 828 const char *help_doc,
eb4c3f4a 829 cmd_const_sfunc_ftype *set_func,
08546159 830 show_value_ftype *show_func,
25d29d70
AC
831 struct cmd_list_element **set_list,
832 struct cmd_list_element **show_list)
833{
f81d1120
PA
834 struct cmd_list_element *set;
835
fe978cb0 836 add_setshow_cmd_full (name, theclass, var_uinteger, var,
2c5b56ce 837 set_doc, show_doc, help_doc,
25d29d70
AC
838 set_func, show_func,
839 set_list, show_list,
f81d1120
PA
840 &set, NULL);
841
842 set_cmd_completer (set, integer_unlimited_completer);
25d29d70
AC
843}
844
15170568
AC
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
5efd5804
PA
848 value. SET_DOC and SHOW_DOC are the documentation strings. */
849void
fe978cb0 850add_setshow_zinteger_cmd (const char *name, enum command_class theclass,
3b64bf98
AC
851 int *var,
852 const char *set_doc, const char *show_doc,
335cca0d 853 const char *help_doc,
eb4c3f4a 854 cmd_const_sfunc_ftype *set_func,
08546159 855 show_value_ftype *show_func,
15170568
AC
856 struct cmd_list_element **set_list,
857 struct cmd_list_element **show_list)
858{
fe978cb0 859 add_setshow_cmd_full (name, theclass, var_zinteger, var,
2c5b56ce 860 set_doc, show_doc, help_doc,
15170568
AC
861 set_func, show_func,
862 set_list, show_list,
5efd5804 863 NULL, NULL);
15170568
AC
864}
865
6fc1c773 866void
6f937416 867add_setshow_zuinteger_unlimited_cmd (const char *name,
fe978cb0 868 enum command_class theclass,
b69b1fb1 869 int *var,
6fc1c773
YQ
870 const char *set_doc,
871 const char *show_doc,
872 const char *help_doc,
eb4c3f4a 873 cmd_const_sfunc_ftype *set_func,
6fc1c773
YQ
874 show_value_ftype *show_func,
875 struct cmd_list_element **set_list,
876 struct cmd_list_element **show_list)
877{
f81d1120
PA
878 struct cmd_list_element *set;
879
fe978cb0 880 add_setshow_cmd_full (name, theclass, var_zuinteger_unlimited, var,
6fc1c773
YQ
881 set_doc, show_doc, help_doc,
882 set_func, show_func,
883 set_list, show_list,
f81d1120
PA
884 &set, NULL);
885
886 set_cmd_completer (set, integer_unlimited_completer);
6fc1c773
YQ
887}
888
1e8fb976
PA
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
5efd5804
PA
892 value. SET_DOC and SHOW_DOC are the documentation strings. */
893void
fe978cb0 894add_setshow_zuinteger_cmd (const char *name, enum command_class theclass,
1e8fb976
PA
895 unsigned int *var,
896 const char *set_doc, const char *show_doc,
897 const char *help_doc,
eb4c3f4a 898 cmd_const_sfunc_ftype *set_func,
1e8fb976
PA
899 show_value_ftype *show_func,
900 struct cmd_list_element **set_list,
901 struct cmd_list_element **show_list)
902{
fe978cb0 903 add_setshow_cmd_full (name, theclass, var_zuinteger, var,
1e8fb976
PA
904 set_doc, show_doc, help_doc,
905 set_func, show_func,
906 set_list, show_list,
5efd5804 907 NULL, NULL);
1e8fb976
PA
908}
909
b05dcbb7
TT
910/* Remove the command named NAME from the command list. Return the
911 list commands which were aliased to the deleted command. If the
fad6eecd
TT
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. */
c906108c 916
b05dcbb7 917static struct cmd_list_element *
6f937416 918delete_cmd (const char *name, struct cmd_list_element **list,
fad6eecd
TT
919 struct cmd_list_element **prehook,
920 struct cmd_list_element **prehookee,
921 struct cmd_list_element **posthook,
922 struct cmd_list_element **posthookee)
c906108c 923{
b05dcbb7
TT
924 struct cmd_list_element *iter;
925 struct cmd_list_element **previous_chain_ptr;
926 struct cmd_list_element *aliases = NULL;
c906108c 927
fad6eecd
TT
928 *prehook = NULL;
929 *prehookee = NULL;
930 *posthook = NULL;
931 *posthookee = NULL;
b05dcbb7
TT
932 previous_chain_ptr = list;
933
934 for (iter = *previous_chain_ptr; iter; iter = *previous_chain_ptr)
c906108c 935 {
b05dcbb7
TT
936 if (strcmp (iter->name, name) == 0)
937 {
d8906c6f
TJB
938 if (iter->destroyer)
939 iter->destroyer (iter, iter->context);
b05dcbb7
TT
940 if (iter->hookee_pre)
941 iter->hookee_pre->hook_pre = 0;
fad6eecd
TT
942 *prehook = iter->hook_pre;
943 *prehookee = iter->hookee_pre;
b05dcbb7
TT
944 if (iter->hookee_post)
945 iter->hookee_post->hook_post = 0;
fad6eecd
TT
946 *posthook = iter->hook_post;
947 *posthookee = iter->hookee_post;
b05dcbb7
TT
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
e2fc72e2 969 delete iter;
b05dcbb7
TT
970
971 /* We won't see another command with the same name. */
972 break;
973 }
974 else
975 previous_chain_ptr = &iter->next;
c906108c
SS
976 }
977
b05dcbb7 978 return aliases;
c906108c 979}
d318976c 980\f
ebcd3b23 981/* Shorthands to the commands above. */
d318976c
FN
982
983/* Add an element to the list of info subcommands. */
984
985struct cmd_list_element *
1d12d88f 986add_info (const char *name, cmd_const_cfunc_ftype *fun, const char *doc)
d318976c 987{
f3575e08 988 return add_cmd (name, class_info, fun, doc, &infolist);
d318976c
FN
989}
990
991/* Add an alias to the list of info subcommands. */
992
993struct cmd_list_element *
1947513d 994add_info_alias (const char *name, const char *oldname, int abbrev_flag)
d318976c 995{
f486487f 996 return add_alias_cmd (name, oldname, class_run, abbrev_flag, &infolist);
d318976c
FN
997}
998
999/* Add an element to the list of commands. */
1000
1001struct cmd_list_element *
0b39b52e
TT
1002add_com (const char *name, enum command_class theclass,
1003 cmd_const_cfunc_ftype *fun,
1947513d 1004 const char *doc)
d318976c 1005{
fe978cb0 1006 return add_cmd (name, theclass, fun, doc, &cmdlist);
d318976c
FN
1007}
1008
57b4f16e
PW
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. */
d318976c
FN
1013
1014struct cmd_list_element *
fe978cb0 1015add_com_alias (const char *name, const char *oldname, enum command_class theclass,
d318976c
FN
1016 int abbrev_flag)
1017{
fe978cb0 1018 return add_alias_cmd (name, oldname, theclass, abbrev_flag, &cmdlist);
d318976c 1019}
4034d0ff
AT
1020
1021/* Add an element with a suppress notification to the list of commands. */
1022
1023struct cmd_list_element *
1024add_com_suppress_notification (const char *name, enum command_class theclass,
1ee870c5 1025 cmd_const_cfunc_ftype *fun, const char *doc,
4034d0ff
AT
1026 int *suppress_notification)
1027{
f67ffa6a
AB
1028 return add_cmd_suppress_notification (name, theclass, fun, doc,
1029 &cmdlist, suppress_notification);
4034d0ff
AT
1030}
1031
3b3aaacb
PW
1032/* Print the prefix of C followed by name of C in title style. */
1033
1034static void
1035fput_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
1049static void
1050fput_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
66d8c862
PW
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
1073static void
1074print_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
7c05caf7 1084 fput_command_names_styled (c, true, " -- ", stream);
66d8c862
PW
1085 if (verbose)
1086 fputs_highlighted (c->doc, highlight, stream);
1087 else
590042fc 1088 print_doc_line (stream, c->doc, false);
66d8c862
PW
1089 fputs_filtered ("\n", stream);
1090}
1091
6837a0a2
DB
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.
66d8c862
PW
1095 If VERBOSE, prints the complete documentation and highlight the
1096 documentation parts matching REGEX, otherwise prints only
1097 the first line.
6837a0a2 1098*/
66d8c862
PW
1099void
1100apropos_cmd (struct ui_file *stream,
ebcd3b23 1101 struct cmd_list_element *commandlist,
66d8c862 1102 bool verbose, compiled_regex &regex, const char *prefix)
6837a0a2 1103{
d5b5ac79 1104 struct cmd_list_element *c;
4a98be19 1105 int returnvalue;
cdb27c12 1106
ebcd3b23 1107 /* Walk through the commands. */
6837a0a2
DB
1108 for (c=commandlist;c;c=c->next)
1109 {
7c05caf7
PW
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
ebcd3b23 1118 returnvalue = -1; /* Needed to avoid double printing. */
6837a0a2
DB
1119 if (c->name != NULL)
1120 {
2d7cc5c7
PA
1121 size_t name_len = strlen (c->name);
1122
ebcd3b23 1123 /* Try to match against the name. */
2d7cc5c7 1124 returnvalue = regex.search (c->name, name_len, 0, name_len, NULL);
6837a0a2 1125 if (returnvalue >= 0)
66d8c862 1126 print_doc_of_command (c, prefix, verbose, regex, stream);
7c05caf7
PW
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 }
6837a0a2 1138 }
4a98be19 1139 if (c->doc != NULL && returnvalue < 0)
6837a0a2 1140 {
2d7cc5c7
PA
1141 size_t doc_len = strlen (c->doc);
1142
ebcd3b23 1143 /* Try to match against documentation. */
2d7cc5c7 1144 if (regex.search (c->doc, doc_len, 0, doc_len, NULL) >= 0)
66d8c862 1145 print_doc_of_command (c, prefix, verbose, regex, stream);
6837a0a2 1146 }
7c05caf7
PW
1147 /* Check if this command has subcommands. */
1148 if (c->prefixlist != NULL)
6837a0a2
DB
1149 {
1150 /* Recursively call ourselves on the subcommand list,
ebcd3b23 1151 passing the right prefix in. */
66d8c862 1152 apropos_cmd (stream, *c->prefixlist, verbose, regex, c->prefixname);
6837a0a2
DB
1153 }
1154 }
1155}
c906108c
SS
1156
1157/* This command really has to deal with two things:
ebcd3b23
MS
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
30baf67b 1165 I am going to split this into two separate commands, help_cmd and
ebcd3b23 1166 help_list. */
c906108c
SS
1167
1168void
64669f3b 1169help_cmd (const char *command, struct ui_file *stream)
c906108c 1170{
7c05caf7 1171 struct cmd_list_element *c, *alias, *prefix_cmd, *c_cmd;
c906108c
SS
1172
1173 if (!command)
1174 {
1175 help_list (cmdlist, "", all_classes, stream);
1176 return;
1177 }
1178
49a5a3a3
GM
1179 if (strcmp (command, "all") == 0)
1180 {
1181 help_all (stream);
1182 return;
1183 }
1184
7c05caf7 1185 const char *orig_command = command;
c906108c
SS
1186 c = lookup_cmd (&command, cmdlist, "", 0, 0);
1187
1188 if (c == 0)
1189 return;
1190
7c05caf7
PW
1191 lookup_cmd_composition (orig_command, &alias, &prefix_cmd, &c_cmd);
1192
c906108c
SS
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.
c5aa993b 1196
9f60d481
AC
1197 If c->func is non NULL, we really have a command. Print its
1198 documentation and return.
c5aa993b 1199
9f60d481
AC
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. */
c906108c 1204
7c05caf7
PW
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);
c906108c
SS
1208 fputs_filtered (c->doc, stream);
1209 fputs_filtered ("\n", stream);
1210
9f60d481 1211 if (c->prefixlist == 0 && c->func != NULL)
c906108c
SS
1212 return;
1213 fprintf_filtered (stream, "\n");
1214
ebcd3b23 1215 /* If this is a prefix command, print it's subcommands. */
c906108c
SS
1216 if (c->prefixlist)
1217 help_list (*c->prefixlist, c->prefixname, all_commands, stream);
1218
ebcd3b23 1219 /* If this is a class name, print all of the commands in the class. */
9f60d481 1220 if (c->func == NULL)
fe978cb0 1221 help_list (cmdlist, "", c->theclass, stream);
c906108c 1222
73bc900d
FN
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)
327529e9 1228 fprintf_filtered (stream,
72fe0832 1229 "\tThis command is run after : %s (pre hook)\n",
73bc900d
FN
1230 c->hook_pre->name);
1231 if (c->hook_post)
327529e9 1232 fprintf_filtered (stream,
72fe0832 1233 "\tThis command is run before : %s (post hook)\n",
73bc900d 1234 c->hook_post->name);
c906108c
SS
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 */
1249void
64e61d29 1250help_list (struct cmd_list_element *list, const char *cmdtype,
fe978cb0 1251 enum command_class theclass, struct ui_file *stream)
c906108c
SS
1252{
1253 int len;
1254 char *cmdtype1, *cmdtype2;
c5aa993b 1255
ebcd3b23
MS
1256 /* If CMDTYPE is "foo ", CMDTYPE1 gets " foo" and CMDTYPE2 gets "foo sub".
1257 */
c906108c
SS
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] = ' ';
29f9a567 1266 memcpy (cmdtype1 + 1, cmdtype, len - 1);
c906108c 1267 cmdtype1[len] = 0;
29f9a567 1268 memcpy (cmdtype2, cmdtype, len - 1);
c906108c
SS
1269 strcpy (cmdtype2 + len - 1, " sub");
1270 }
1271
fe978cb0 1272 if (theclass == all_classes)
c906108c
SS
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
3b3aaacb 1277 help_cmd_list (list, theclass, theclass >= 0, stream);
c906108c 1278
fe978cb0 1279 if (theclass == all_classes)
de74f71f
MS
1280 {
1281 fprintf_filtered (stream, "\n\
1282Type \"help%s\" followed by a class name for a list of commands in ",
1283 cmdtype1);
1284 wrap_here ("");
1285 fprintf_filtered (stream, "that class.");
6e381ba0
VP
1286
1287 fprintf_filtered (stream, "\n\
1288Type \"help all\" for the list of all commands.");
de74f71f 1289 }
c906108c 1290
de74f71f 1291 fprintf_filtered (stream, "\nType \"help%s\" followed by %scommand name ",
c5aa993b 1292 cmdtype1, cmdtype2);
de74f71f
MS
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);
6e381ba0 1299 fputs_filtered ("Type \"apropos word\" to search "
ebcd3b23 1300 "for commands related to \"word\".\n", stream);
66d8c862
PW
1301 fputs_filtered ("Type \"apropos -v word\" for full documentation", stream);
1302 wrap_here ("");
1303 fputs_filtered (" of commands related to \"word\".\n", stream);
de74f71f
MS
1304 fputs_filtered ("Command name abbreviations are allowed if unambiguous.\n",
1305 stream);
c906108c 1306}
c5aa993b 1307
49a5a3a3 1308static void
c85871a3 1309help_all (struct ui_file *stream)
49a5a3a3
GM
1310{
1311 struct cmd_list_element *c;
6e381ba0 1312 int seen_unclassified = 0;
49a5a3a3
GM
1313
1314 for (c = cmdlist; c; c = c->next)
1315 {
1316 if (c->abbrev_flag)
1317 continue;
ebcd3b23
MS
1318 /* If this is a class name, print all of the commands in the
1319 class. */
6e381ba0
VP
1320
1321 if (c->func == NULL)
1322 {
1323 fprintf_filtered (stream, "\nCommand class: %s\n\n", c->name);
3b3aaacb 1324 help_cmd_list (cmdlist, c->theclass, true, stream);
6e381ba0 1325 }
49a5a3a3 1326 }
6e381ba0
VP
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
fe978cb0 1337 if (c->theclass == no_class)
6e381ba0
VP
1338 {
1339 if (!seen_unclassified)
1340 {
1341 fprintf_filtered (stream, "\nUnclassified commands\n\n");
1342 seen_unclassified = 1;
1343 }
3b3aaacb 1344 print_help_for_command (c, 1, stream);
6e381ba0
VP
1345 }
1346 }
1347
49a5a3a3
GM
1348}
1349
590042fc
PW
1350/* See cli-decode.h. */
1351
d318976c 1352void
590042fc
PW
1353print_doc_line (struct ui_file *stream, const char *str,
1354 bool for_value_prefix)
c906108c
SS
1355{
1356 static char *line_buffer = 0;
1357 static int line_size;
1947513d 1358 const char *p;
c906108c
SS
1359
1360 if (!line_buffer)
1361 {
1362 line_size = 80;
1363 line_buffer = (char *) xmalloc (line_size);
1364 }
1365
590042fc 1366 /* Searches for the first end of line or the end of STR. */
c906108c 1367 p = str;
590042fc 1368 while (*p && *p != '\n')
c906108c
SS
1369 p++;
1370 if (p - str > line_size - 1)
1371 {
1372 line_size = p - str + 1;
b8c9b27d 1373 xfree (line_buffer);
c906108c
SS
1374 line_buffer = (char *) xmalloc (line_size);
1375 }
1376 strncpy (line_buffer, str, p - str);
590042fc
PW
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';
b6201d44 1389 fputs_filtered (line_buffer, stream);
c906108c
SS
1390}
1391
6e381ba0
VP
1392/* Print one-line help for command C.
1393 If RECURSE is non-zero, also print one-line descriptions
ebcd3b23 1394 of all prefixed subcommands. */
6e381ba0 1395static void
3b3aaacb
PW
1396print_help_for_command (struct cmd_list_element *c,
1397 bool recurse, struct ui_file *stream)
6e381ba0 1398{
3b3aaacb 1399 fput_command_names_styled (c, true, " -- ", stream);
590042fc 1400 print_doc_line (stream, c->doc, false);
6e381ba0 1401 fputs_filtered ("\n", stream);
66d8c862 1402
6e381ba0
VP
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,
ebcd3b23 1408 most often we won't see anything. */
3b3aaacb 1409 help_cmd_list (*c->prefixlist, all_commands, true, stream);
6e381ba0
VP
1410}
1411
c906108c
SS
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.
c906108c 1416 * STREAM is the stream upon which the output should be written.
2aa08bd1 1417 * THECLASS should be:
c5aa993b 1418 * A non-negative class number to list only commands in that
c5aa993b
JM
1419 * ALL_COMMANDS to list all commands in list.
1420 * ALL_CLASSES to list all classes in list.
c906108c 1421 *
3b3aaacb
PW
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 *
c906108c
SS
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 */
3b3aaacb
PW
1430
1431static void
fe978cb0 1432help_cmd_list (struct cmd_list_element *list, enum command_class theclass,
3b3aaacb 1433 bool recurse, struct ui_file *stream)
c906108c 1434{
d5b5ac79 1435 struct cmd_list_element *c;
c906108c
SS
1436
1437 for (c = list; c; c = c->next)
2aa08bd1 1438 {
3b3aaacb 1439 if (c->abbrev_flag == 1 || c->cmd_deprecated)
c906108c 1440 {
3b3aaacb
PW
1441 /* Do not show abbreviations or deprecated commands. */
1442 continue;
c906108c 1443 }
3b3aaacb
PW
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. */
c906108c
SS
1483 }
1484}
c906108c 1485\f
c5aa993b 1486
c906108c
SS
1487/* Search the input clist for 'command'. Return the command if
1488 found (or NULL if not), and return the number of commands
ebcd3b23 1489 found in nfound. */
c906108c
SS
1490
1491static struct cmd_list_element *
6f937416 1492find_cmd (const char *command, int len, struct cmd_list_element *clist,
fba45db2 1493 int ignore_help_classes, int *nfound)
c906108c
SS
1494{
1495 struct cmd_list_element *found, *c;
1496
b03e6ad9 1497 found = NULL;
c906108c
SS
1498 *nfound = 0;
1499 for (c = clist; c; c = c->next)
1500 if (!strncmp (command, c->name, len)
9f60d481 1501 && (!ignore_help_classes || c->func))
c906108c 1502 {
c5aa993b
JM
1503 found = c;
1504 (*nfound)++;
1505 if (c->name[len] == '\0')
1506 {
1507 *nfound = 1;
1508 break;
1509 }
c906108c
SS
1510 }
1511 return found;
1512}
1513
604c4576
JG
1514/* Return the length of command name in TEXT. */
1515
1516int
3386243e
AS
1517find_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()". */
ebcd3b23
MS
1524 /* Some characters are only used for TUI specific commands.
1525 However, they are always allowed for the sake of consistency.
1526
ebcd3b23
MS
1527 Note that this is larger than the character set allowed when
1528 creating user-defined commands. */
1529
947d3946 1530 /* Recognize the single character commands so that, e.g., "!ls"
ed59ded5 1531 works as expected. */
947d3946 1532 if (*p == '!' || *p == '|')
ed59ded5
DE
1533 return 1;
1534
be09caf1 1535 while (valid_cmd_char_p (*p)
3386243e 1536 /* Characters used by TUI specific commands. */
4f45d445 1537 || *p == '+' || *p == '<' || *p == '>' || *p == '$')
3386243e
AS
1538 p++;
1539
1540 return p - text;
1541}
1542
be09caf1
PW
1543/* See command.h. */
1544
1545bool
1546valid_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. */
5a56e9c5 1555
7f008c9e 1556bool
5a56e9c5
DE
1557valid_user_defined_cmd_name_p (const char *name)
1558{
1559 const char *p;
1560
1561 if (*name == '\0')
7f008c9e 1562 return false;
5a56e9c5 1563
5a56e9c5
DE
1564 for (p = name; *p != '\0'; ++p)
1565 {
be09caf1 1566 if (valid_cmd_char_p (*p))
5a56e9c5
DE
1567 ; /* Ok. */
1568 else
7f008c9e 1569 return false;
5a56e9c5
DE
1570 }
1571
7f008c9e 1572 return true;
5a56e9c5
DE
1573}
1574
c906108c
SS
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
4ad2da73 1596 RESULT_LIST should not be interpreted as a pointer to the beginning of a
c906108c
SS
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.
c5aa993b 1606
c906108c
SS
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
1611struct cmd_list_element *
6f937416 1612lookup_cmd_1 (const char **text, struct cmd_list_element *clist,
fba45db2 1613 struct cmd_list_element **result_list, int ignore_help_classes)
c906108c 1614{
3386243e 1615 char *command;
798a7429 1616 int len, nfound;
c906108c 1617 struct cmd_list_element *found, *c;
6f937416 1618 const char *line = *text;
c906108c
SS
1619
1620 while (**text == ' ' || **text == '\t')
1621 (*text)++;
1622
3386243e
AS
1623 /* Identify the name of the command. */
1624 len = find_command_name_length (*text);
c906108c
SS
1625
1626 /* If nothing but whitespace, return 0. */
3386243e 1627 if (len == 0)
c906108c 1628 return 0;
c5aa993b 1629
c906108c 1630 /* *text and p now bracket the first command word to lookup (and
ebcd3b23 1631 it's length is len). We copy this into a local temporary. */
c906108c
SS
1632
1633
1634 command = (char *) alloca (len + 1);
22ad7fee 1635 memcpy (command, *text, len);
c906108c
SS
1636 command[len] = '\0';
1637
1638 /* Look it up. */
1639 found = 0;
1640 nfound = 0;
c5aa993b 1641 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
c906108c 1642
c906108c
SS
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. */
c5aa993b 1652 *result_list = 0;
1427fe5e 1653 return CMD_LIST_AMBIGUOUS; /* Ambiguous. */
c906108c
SS
1654 }
1655
ebcd3b23 1656 /* We've matched something on this list. Move text pointer forward. */
c906108c 1657
3386243e 1658 *text += len;
c906108c 1659
c906108c 1660 if (found->cmd_pointer)
56382845 1661 {
ebcd3b23
MS
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
56382845
FN
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
ebcd3b23 1667 flags. */
56382845 1668
1f2bdf09 1669 if (found->deprecated_warn_user)
6f937416 1670 deprecated_cmd_warning (line);
56382845
FN
1671 found = found->cmd_pointer;
1672 }
c906108c
SS
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 }
1427fe5e 1686 else if (c == CMD_LIST_AMBIGUOUS)
c906108c 1687 {
ebcd3b23
MS
1688 /* We've gotten this far properly, but the next step is
1689 ambiguous. We need to set the result list to the best
c906108c
SS
1690 we've found (if an inferior hasn't already set it). */
1691 if (result_list != NULL)
1692 if (!*result_list)
ebcd3b23 1693 /* This used to say *result_list = *found->prefixlist.
c5aa993b 1694 If that was correct, need to modify the documentation
ebcd3b23
MS
1695 at the top of this function to clarify what is
1696 supposed to be going on. */
c906108c
SS
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
1716static void
6f937416 1717undef_cmd_error (const char *cmdtype, const char *q)
c906108c 1718{
8a3fe4f8 1719 error (_("Undefined %scommand: \"%s\". Try \"help%s%.*s\"."),
c5aa993b
JM
1720 cmdtype,
1721 q,
1722 *cmdtype ? " " : "",
823ca731 1723 (int) strlen (cmdtype) - 1,
c5aa993b 1724 cmdtype);
c906108c
SS
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
30baf67b 1737 If IGNORE_HELP_CLASSES is nonzero, ignore any command list
c906108c
SS
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
1741struct cmd_list_element *
a121b7c1
PA
1742lookup_cmd (const char **line, struct cmd_list_element *list,
1743 const char *cmdtype,
fba45db2 1744 int allow_unknown, int ignore_help_classes)
c906108c
SS
1745{
1746 struct cmd_list_element *last_list = 0;
3cebf8d8 1747 struct cmd_list_element *c;
c64601c7
FN
1748
1749 /* Note: Do not remove trailing whitespace here because this
1750 would be wrong for complete_command. Jim Kingdon */
c5aa993b 1751
3cebf8d8
MS
1752 if (!*line)
1753 error (_("Lack of needed %scommand"), cmdtype);
1754
1755 c = lookup_cmd_1 (line, list, &last_list, ignore_help_classes);
1756
c906108c
SS
1757 if (!c)
1758 {
1759 if (!allow_unknown)
1760 {
3cebf8d8
MS
1761 char *q;
1762 int len = find_command_name_length (*line);
c906108c 1763
3cebf8d8
MS
1764 q = (char *) alloca (len + 1);
1765 strncpy (q, *line, len);
1766 q[len] = '\0';
1767 undef_cmd_error (cmdtype, q);
c906108c
SS
1768 }
1769 else
1770 return 0;
1771 }
1427fe5e 1772 else if (c == CMD_LIST_AMBIGUOUS)
c906108c
SS
1773 {
1774 /* Ambigous. Local values should be off prefixlist or called
c5aa993b 1775 values. */
c906108c
SS
1776 int local_allow_unknown = (last_list ? last_list->allow_unknown :
1777 allow_unknown);
64e61d29 1778 const char *local_cmdtype = last_list ? last_list->prefixname : cmdtype;
c906108c 1779 struct cmd_list_element *local_list =
cdb27c12 1780 (last_list ? *(last_list->prefixlist) : list);
c5aa993b 1781
c906108c
SS
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 ;
c5aa993b 1800
c906108c
SS
1801 ambbuf[0] = 0;
1802 for (c = local_list; c; c = c->next)
1803 if (!strncmp (*line, c->name, amb_len))
1804 {
9a2b4c1b
MS
1805 if (strlen (ambbuf) + strlen (c->name) + 6
1806 < (int) sizeof ambbuf)
c906108c
SS
1807 {
1808 if (strlen (ambbuf))
1809 strcat (ambbuf, ", ");
1810 strcat (ambbuf, c->name);
1811 }
1812 else
1813 {
1814 strcat (ambbuf, "..");
1815 break;
1816 }
1817 }
8a3fe4f8 1818 error (_("Ambiguous %scommand \"%s\": %s."), local_cmdtype,
c906108c 1819 *line, ambbuf);
c906108c
SS
1820 }
1821 }
1822 else
1823 {
bf9e4d0c
MB
1824 if (c->type == set_cmd && **line != '\0' && !isspace (**line))
1825 error (_("Argument must be preceded by space."));
1826
c906108c
SS
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}
c5aa993b 1840
6f937416 1841/* We are here presumably because an alias or command in TEXT is
ebcd3b23 1842 deprecated and a warning message should be generated. This
6f937416 1843 function decodes TEXT and potentially generates a warning message
ebcd3b23 1844 as outlined below.
56382845
FN
1845
1846 Example for 'set endian big' which has a fictitious alias 'seb'.
1847
6f937416 1848 If alias wasn't used in TEXT, and the command is deprecated:
56382845
FN
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
ebcd3b23
MS
1854 If alias was used and command is deprecated (regardless of whether
1855 the alias itself is deprecated:
56382845
FN
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*/
1863void
6f937416 1864deprecated_cmd_warning (const char *text)
56382845
FN
1865{
1866 struct cmd_list_element *alias = NULL;
1867 struct cmd_list_element *prefix_cmd = NULL;
1868 struct cmd_list_element *cmd = NULL;
edefbb7c 1869
6f937416 1870 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
ebcd3b23 1871 /* Return if text doesn't evaluate to a command. */
56382845
FN
1872 return;
1873
1f2bdf09
TT
1874 if (!((alias ? alias->deprecated_warn_user : 0)
1875 || cmd->deprecated_warn_user) )
ebcd3b23 1876 /* Return if nothing is deprecated. */
56382845
FN
1877 return;
1878
1879 printf_filtered ("Warning:");
1880
1f2bdf09 1881 if (alias && !cmd->cmd_deprecated)
56382845
FN
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
1f2bdf09 1891 if (alias && cmd->cmd_deprecated)
56382845
FN
1892 printf_filtered ("' (%s) is deprecated.\n", alias->name);
1893 else
1894 printf_filtered ("' is deprecated.\n");
1895
1896
ebcd3b23
MS
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. */
56382845 1899
1f2bdf09 1900 if (alias && !cmd->cmd_deprecated)
56382845
FN
1901 {
1902 if (alias->replacement)
cdb27c12 1903 printf_filtered ("Use '%s'.\n\n", alias->replacement);
56382845 1904 else
cdb27c12 1905 printf_filtered ("No alternative known.\n\n");
56382845
FN
1906 }
1907 else
1908 {
1909 if (cmd->replacement)
cdb27c12 1910 printf_filtered ("Use '%s'.\n\n", cmd->replacement);
56382845 1911 else
cdb27c12 1912 printf_filtered ("No alternative known.\n\n");
56382845
FN
1913 }
1914
ebcd3b23 1915 /* We've warned you, now we'll keep quiet. */
56382845 1916 if (alias)
1f2bdf09 1917 alias->deprecated_warn_user = 0;
56382845 1918
1f2bdf09 1919 cmd->deprecated_warn_user = 0;
56382845
FN
1920}
1921
1922
bc3609fd 1923/* Look up the contents of TEXT as a command in the command list 'cmdlist'.
56382845 1924 Return 1 on success, 0 on failure.
bc3609fd
PW
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
56382845 1934 exist, they are NULL when we return.
bc3609fd 1935
56382845
FN
1936*/
1937int
6f937416 1938lookup_cmd_composition (const char *text,
bc3609fd
PW
1939 struct cmd_list_element **alias,
1940 struct cmd_list_element **prefix_cmd,
1941 struct cmd_list_element **cmd)
56382845 1942{
3386243e 1943 char *command;
798a7429 1944 int len, nfound;
56382845
FN
1945 struct cmd_list_element *cur_list;
1946 struct cmd_list_element *prev_cmd;
cdb27c12 1947
56382845
FN
1948 *alias = NULL;
1949 *prefix_cmd = NULL;
1950 *cmd = NULL;
bc3609fd 1951
56382845 1952 cur_list = cmdlist;
bc3609fd 1953
0605465f
PW
1954 text = skip_spaces (text);
1955
56382845 1956 while (1)
bc3609fd 1957 {
7a9dd1b2 1958 /* Go through as many command lists as we need to,
ebcd3b23 1959 to find the command TEXT refers to. */
bc3609fd 1960
56382845 1961 prev_cmd = *cmd;
bc3609fd 1962
3386243e
AS
1963 /* Identify the name of the command. */
1964 len = find_command_name_length (text);
bc3609fd 1965
56382845 1966 /* If nothing but whitespace, return. */
3386243e
AS
1967 if (len == 0)
1968 return 0;
bc3609fd
PW
1969
1970 /* TEXT is the start of the first command word to lookup (and
0605465f 1971 it's length is LEN). We copy this into a local temporary. */
bc3609fd 1972
56382845 1973 command = (char *) alloca (len + 1);
22ad7fee 1974 memcpy (command, text, len);
56382845 1975 command[len] = '\0';
bc3609fd 1976
56382845
FN
1977 /* Look it up. */
1978 *cmd = 0;
1979 nfound = 0;
1980 *cmd = find_cmd (command, len, cur_list, 1, &nfound);
bc3609fd 1981
1427fe5e 1982 if (*cmd == CMD_LIST_AMBIGUOUS)
cdb27c12
MS
1983 {
1984 return 0; /* ambiguous */
1985 }
bc3609fd 1986
56382845 1987 if (*cmd == NULL)
cdb27c12 1988 return 0; /* nothing found */
56382845 1989 else
cdb27c12
MS
1990 {
1991 if ((*cmd)->cmd_pointer)
1992 {
ebcd3b23 1993 /* cmd was actually an alias, we note that an alias was
bc3609fd 1994 used (by assigning *ALIAS) and we set *CMD. */
cdb27c12
MS
1995 *alias = *cmd;
1996 *cmd = (*cmd)->cmd_pointer;
1997 }
1998 *prefix_cmd = prev_cmd;
1999 }
0605465f
PW
2000
2001 text += len;
2002 text = skip_spaces (text);
2003
2004 if ((*cmd)->prefixlist && *text != '\0')
cdb27c12 2005 cur_list = *(*cmd)->prefixlist;
56382845 2006 else
cdb27c12 2007 return 1;
56382845
FN
2008 }
2009}
2010
c906108c
SS
2011/* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2012
2013/* Return a vector of char pointers which point to the different
ebcd3b23 2014 possible completions in LIST of TEXT.
c906108c
SS
2015
2016 WORD points in the same buffer as TEXT, and completions should be
ebcd3b23
MS
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
c906108c
SS
2019 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
2020
eb3ff9a5 2021void
6f937416 2022complete_on_cmdlist (struct cmd_list_element *list,
eb3ff9a5 2023 completion_tracker &tracker,
6f937416 2024 const char *text, const char *word,
ace21957 2025 int ignore_help_classes)
c906108c
SS
2026{
2027 struct cmd_list_element *ptr;
c906108c 2028 int textlen = strlen (text);
3f172e24
TT
2029 int pass;
2030 int saw_deprecated_match = 0;
c906108c 2031
3f172e24
TT
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. */
eb3ff9a5 2036 for (pass = 0; pass < 2; ++pass)
3f172e24 2037 {
eb3ff9a5
PA
2038 bool got_matches = false;
2039
3f172e24
TT
2040 for (ptr = list; ptr; ptr = ptr->next)
2041 if (!strncmp (ptr->name, text, textlen)
2042 && !ptr->abbrev_flag
ace21957 2043 && (!ignore_help_classes || ptr->func
3f172e24 2044 || ptr->prefixlist))
c906108c 2045 {
3f172e24
TT
2046 if (pass == 0)
2047 {
1f2bdf09 2048 if (ptr->cmd_deprecated)
3f172e24
TT
2049 {
2050 saw_deprecated_match = 1;
2051 continue;
2052 }
2053 }
c906108c 2054
60a20c19
PA
2055 tracker.add_completion
2056 (make_completion_match_str (ptr->name, text, word));
eb3ff9a5 2057 got_matches = true;
c906108c 2058 }
eb3ff9a5
PA
2059
2060 if (got_matches)
2061 break;
2062
3f172e24
TT
2063 /* If we saw no matching deprecated commands in the first pass,
2064 just bail out. */
2065 if (!saw_deprecated_match)
2066 break;
2067 }
c906108c
SS
2068}
2069
2070/* Helper function for SYMBOL_COMPLETION_FUNCTION. */
2071
eb3ff9a5 2072/* Add the different possible completions in ENUMLIST of TEXT.
c906108c
SS
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
eb3ff9a5
PA
2079void
2080complete_on_enum (completion_tracker &tracker,
2081 const char *const *enumlist,
6f937416 2082 const char *text, const char *word)
c906108c 2083{
c906108c
SS
2084 int textlen = strlen (text);
2085 int i;
53904c9e 2086 const char *name;
c906108c 2087
c906108c
SS
2088 for (i = 0; (name = enumlist[i]) != NULL; i++)
2089 if (strncmp (name, text, textlen) == 0)
60a20c19 2090 tracker.add_completion (make_completion_match_str (name, text, word));
c906108c
SS
2091}
2092
f436dd25 2093
ebcd3b23 2094/* Check function pointer. */
f436dd25
MH
2095int
2096cmd_func_p (struct cmd_list_element *cmd)
2097{
2098 return (cmd->func != NULL);
2099}
2100
2101
ebcd3b23 2102/* Call the command function. */
f436dd25 2103void
95a6b0a1 2104cmd_func (struct cmd_list_element *cmd, const char *args, int from_tty)
f436dd25
MH
2105{
2106 if (cmd_func_p (cmd))
4034d0ff 2107 {
156d9eab 2108 gdb::optional<scoped_restore_tmpl<int>> restore_suppress;
4034d0ff
AT
2109
2110 if (cmd->suppress_notification != NULL)
156d9eab 2111 restore_suppress.emplace (cmd->suppress_notification, 1);
4034d0ff
AT
2112
2113 (*cmd->func) (cmd, args, from_tty);
4034d0ff 2114 }
f436dd25 2115 else
8a3fe4f8 2116 error (_("Invalid command"));
f436dd25 2117}
a9f116cb
GKB
2118
2119int
2120cli_user_command_p (struct cmd_list_element *cmd)
2121{
fe978cb0 2122 return (cmd->theclass == class_user
5fed81ff 2123 && (cmd->func == do_const_cfunc || cmd->func == do_sfunc));
a9f116cb 2124}
This page took 1.677779 seconds and 4 git commands to generate.