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