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