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