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