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