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