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