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