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