* kod.c (kod_set_os): Revert previous change. Is called by ``info
[deliverable/binutils-gdb.git] / gdb / command.h
CommitLineData
d318976c
FN
1/* ***DEPRECATED*** The gdblib files must not be calling/using things in any
2 of the possible command languages. If necessary, a hook (that may be
3 present or not) must be used and set to the appropriate routine by any
4 command language that cares about it. If you are having to include this
5 file you are possibly doing things the old way. This file will disapear.
a3573618 6 2000-12-01 fnasser@redhat.com */
d318976c 7
c906108c 8/* Header file for command-reading library command.c.
b6ba6518
KB
9 Copyright 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1999, 2000
10 Free Software Foundation, Inc.
c906108c 11
c5aa993b
JM
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
c906108c 16
c5aa993b
JM
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
c906108c 21
c5aa993b
JM
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. */
c906108c
SS
26
27#if !defined (COMMAND_H)
28#define COMMAND_H 1
29
6426a772
JM
30/* Command classes are top-level categories into which commands are broken
31 down for "help" purposes.
32 Notes on classes: class_alias is for alias commands which are not
33 abbreviations of the original command. class-pseudo is for
34 commands which are not really commands nor help topics ("stop"). */
35
36enum command_class
37{
38 /* Special args to help_list */
39 class_deprecated, all_classes = -2, all_commands = -1,
40 /* Classes of commands */
41 no_class = -1, class_run = 0, class_vars, class_stack,
42 class_files, class_support, class_info, class_breakpoint, class_trace,
43 class_alias, class_obscure, class_user, class_maintenance,
9285ab80 44 class_pseudo, class_tui, class_xdb
6426a772
JM
45};
46
c906108c
SS
47/* Not a set/show command. Note that some commands which begin with
48 "set" or "show" might be in this category, if their syntax does
49 not fall into one of the following categories. */
c5aa993b
JM
50typedef enum cmd_types
51 {
52 not_set_cmd,
53 set_cmd,
54 show_cmd
55 }
56cmd_types;
c906108c 57
97c3646f
AC
58/* Reasonable values for an AUTO_BOOLEAN variable. */
59enum cmd_auto_boolean
60{
61 CMD_AUTO_BOOLEAN_TRUE,
62 CMD_AUTO_BOOLEAN_FALSE,
63 CMD_AUTO_BOOLEAN_AUTO
64};
65
c906108c 66/* Types of "set" or "show" command. */
c5aa993b
JM
67typedef enum var_types
68 {
69 /* "on" or "off". *VAR is an integer which is nonzero for on,
70 zero for off. */
71 var_boolean,
97c3646f
AC
72
73 /* "on" / "true" / "enable" or "off" / "false" / "disable" or
74 "auto. *VAR is an ``enum cmd_auto_boolean''. NOTE: In general
75 a custom show command will need to be implemented - one that
76 for "auto" prints both the "auto" and the current auto-selected
77 value. */
78 var_auto_boolean,
79
c5aa993b
JM
80 /* Unsigned Integer. *VAR is an unsigned int. The user can type 0
81 to mean "unlimited", which is stored in *VAR as UINT_MAX. */
82 var_uinteger,
83
84 /* Like var_uinteger but signed. *VAR is an int. The user can type 0
85 to mean "unlimited", which is stored in *VAR as INT_MAX. */
86 var_integer,
87
88 /* String which the user enters with escapes (e.g. the user types \n and
89 it is a real newline in the stored string).
90 *VAR is a malloc'd string, or NULL if the string is empty. */
91 var_string,
92 /* String which stores what the user types verbatim.
93 *VAR is a malloc'd string, or NULL if the string is empty. */
94 var_string_noescape,
95 /* String which stores a filename.
96 *VAR is a malloc'd string, or NULL if the string is empty. */
97 var_filename,
98 /* ZeroableInteger. *VAR is an int. Like Unsigned Integer except
99 that zero really means zero. */
100 var_zinteger,
101 /* Enumerated type. Can only have one of the specified values. *VAR is a
102 char pointer to the name of the element that we find. */
103 var_enum
104 }
105var_types;
c906108c
SS
106
107/* This structure records one command'd definition. */
108
56382845
FN
109
110/* This flag is used by the code executing commands to warn the user
111 the first time a deprecated command is used, see the 'flags' field in
112 the following struct.
113*/
114#define CMD_DEPRECATED 0x1
115#define DEPRECATED_WARN_USER 0x2
116#define MALLOCED_REPLACEMENT 0x4
117
c906108c
SS
118struct cmd_list_element
119 {
120 /* Points to next command in this list. */
121 struct cmd_list_element *next;
122
123 /* Name of this command. */
124 char *name;
125
126 /* Command class; class values are chosen by application program. */
127 enum command_class class;
128
e00d1dc8 129 /* Function definition of this command. NULL for command class
9f60d481
AC
130 names and for help topics that are not really commands. NOTE:
131 cagney/2002-02-02: This function signature is evolving. For
132 the moment suggest sticking with either set_cmd_cfunc() or
133 set_cmd_sfunc(). */
134 void (*func) (struct cmd_list_element *c, char *args, int from_tty);
135 /* The command's real callback. At present func() bounces through
136 to one of the below. */
c906108c
SS
137 union
138 {
139 /* If type is not_set_cmd, call it like this: */
507f3c78 140 void (*cfunc) (char *args, int from_tty);
c906108c 141
552c04a7 142 /* If type is set_cmd or show_cmd, first set the variables, and
c906108c 143 then call this. */
507f3c78 144 void (*sfunc) (char *args, int from_tty, struct cmd_list_element * c);
c5aa993b
JM
145 }
146 function;
c906108c
SS
147
148 /* Documentation of this command (or help topic).
149 First line is brief documentation; remaining lines form, with it,
150 the full documentation. First line should end with a period.
151 Entire string should also end with a period, not a newline. */
152 char *doc;
153
56382845
FN
154 /* flags : a bitfield
155
156 bit 0: (LSB) CMD_DEPRECATED, when 1 indicated that this command
157 is deprecated. It may be removed from gdb's command set in the
158 future.
159
160 bit 1: DEPRECATED_WARN_USER, the user needs to be warned that
161 this is a deprecated command. The user should only be warned
162 the first time a command is used.
163
164 bit 2: MALLOCED_REPLACEMENT, when functions are deprecated at
165 compile time (this is the way it should, in general, be done)
c0c9b0b8 166 the memory containing the replacement string is statically
56382845
FN
167 allocated. In some cases it makes sense to deprecate commands
168 at runtime (the testsuite is one example). In this case the
169 memory for replacement is malloc'ed. When a command is
170 undeprecated or re-deprecated at runtime we don't want to risk
171 calling free on statically allocated memory, so we check this
172 flag.
173 */
174 int flags;
175
176 /* if this command is deprecated, this is the replacement name */
177 char *replacement;
178
552c04a7
TT
179 /* If this command represents a show command, then this function
180 is called before the variable's value is examined. */
181 void (*pre_show_hook) (struct cmd_list_element *c);
182
c906108c 183 /* Hook for another command to be executed before this command. */
73bc900d
FN
184 struct cmd_list_element *hook_pre;
185
186 /* Hook for another command to be executed after this command. */
187 struct cmd_list_element *hook_post;
188
189 /* Flag that specifies if this command is already running it's hook. */
190 /* Prevents the possibility of hook recursion. */
191 int hook_in;
c906108c
SS
192
193 /* Nonzero identifies a prefix command. For them, the address
194 of the variable containing the list of subcommands. */
195 struct cmd_list_element **prefixlist;
196
197 /* For prefix commands only:
198 String containing prefix commands to get here: this one
199 plus any others needed to get to it. Should end in a space.
200 It is used before the word "command" in describing the
201 commands reached through this prefix. */
202 char *prefixname;
203
204 /* For prefix commands only:
205 nonzero means do not get an error if subcommand is not
206 recognized; call the prefix's own function in that case. */
207 char allow_unknown;
208
209 /* Nonzero says this is an abbreviation, and should not
210 be mentioned in lists of commands.
211 This allows "br<tab>" to complete to "break", which it
212 otherwise wouldn't. */
213 char abbrev_flag;
214
215 /* Completion routine for this command. TEXT is the text beyond
216 what was matched for the command itself (leading whitespace is
217 skipped). It stops where we are supposed to stop completing
218 (rl_point) and is '\0' terminated.
219
220 Return value is a malloc'd vector of pointers to possible completions
221 terminated with NULL. If there are no completions, returning a pointer
222 to a NULL would work but returning NULL itself is also valid.
223 WORD points in the same buffer as TEXT, and completions should be
224 returned relative to this position. For example, suppose TEXT is "foo"
225 and we want to complete to "foobar". If WORD is "oo", return
226 "oobar"; if WORD is "baz/foo", return "baz/foobar". */
507f3c78 227 char **(*completer) (char *text, char *word);
c906108c
SS
228
229 /* Type of "set" or "show" command (or SET_NOT_SET if not "set"
230 or "show"). */
231 cmd_types type;
232
233 /* Pointer to variable affected by "set" and "show". Doesn't matter
234 if type is not_set. */
1ed2a135 235 void *var;
c906108c
SS
236
237 /* What kind of variable is *VAR? */
238 var_types var_type;
239
240 /* Pointer to NULL terminated list of enumerated values (like argv). */
53904c9e 241 const char **enums;
c906108c
SS
242
243 /* Pointer to command strings of user-defined commands */
244 struct command_line *user_commands;
245
73bc900d
FN
246 /* Pointer to command that is hooked by this one, (by hook_pre)
247 so the hook can be removed when this one is deleted. */
248 struct cmd_list_element *hookee_pre;
249
250 /* Pointer to command that is hooked by this one, (by hook_post)
c906108c 251 so the hook can be removed when this one is deleted. */
73bc900d 252 struct cmd_list_element *hookee_post;
c906108c
SS
253
254 /* Pointer to command that is aliased by this one, so the
255 aliased command can be located in case it has been hooked. */
256 struct cmd_list_element *cmd_pointer;
257 };
258
18d5d590 259/* Forward-declarations of the entry-points of cli/cli-decode.c. */
c906108c 260
a14ed312
KB
261extern struct cmd_list_element *add_cmd (char *, enum command_class,
262 void (*fun) (char *, int), char *,
263 struct cmd_list_element **);
264
265extern struct cmd_list_element *add_alias_cmd (char *, char *,
266 enum command_class, int,
267 struct cmd_list_element **);
268
269extern struct cmd_list_element *add_prefix_cmd (char *, enum command_class,
270 void (*fun) (char *, int),
271 char *,
272 struct cmd_list_element **,
273 char *, int,
274 struct cmd_list_element **);
275
276extern struct cmd_list_element *add_abbrev_prefix_cmd (char *,
277 enum command_class,
278 void (*fun) (char *,
279 int),
280 char *,
281 struct cmd_list_element
282 **, char *, int,
283 struct cmd_list_element
284 **);
285
9f60d481
AC
286/* Set the commands corresponding callback. */
287
288extern void set_cmd_cfunc (struct cmd_list_element *cmd,
289 void (*cfunc) (char *args, int from_tty));
290
291extern void set_cmd_sfunc (struct cmd_list_element *cmd,
292 void (*sfunc) (char *args, int from_tty,
293 struct cmd_list_element * c));
294
5ba2abeb
AC
295extern void set_cmd_completer (struct cmd_list_element *cmd,
296 char **(*completer) (char *text, char *word));
297
bbaca940
AC
298/* HACK: cagney/2002-02-23: Code, mostly in tracepoints.c, grubs
299 around in cmd objects to test the value of the commands sfunc(). */
300extern int cmd_cfunc_eq (struct cmd_list_element *cmd,
301 void (*cfunc) (char *args, int from_tty));
9f60d481 302
a14ed312
KB
303extern struct cmd_list_element *lookup_cmd (char **,
304 struct cmd_list_element *, char *,
305 int, int);
306
307extern struct cmd_list_element *lookup_cmd_1 (char **,
308 struct cmd_list_element *,
309 struct cmd_list_element **,
310 int);
c906108c 311
56382845
FN
312extern struct cmd_list_element *
313 deprecate_cmd (struct cmd_list_element *, char * );
314
c906108c 315extern void
56382845
FN
316 deprecated_cmd_warning (char **);
317
318extern int
319 lookup_cmd_composition (char *text,
320 struct cmd_list_element **alias,
321 struct cmd_list_element **prefix_cmd,
322 struct cmd_list_element **cmd);
323
a14ed312
KB
324extern struct cmd_list_element *add_com (char *, enum command_class,
325 void (*fun) (char *, int), char *);
c906108c 326
a14ed312
KB
327extern struct cmd_list_element *add_com_alias (char *, char *,
328 enum command_class, int);
c906108c 329
a14ed312
KB
330extern struct cmd_list_element *add_info (char *, void (*fun) (char *, int),
331 char *);
c906108c 332
a14ed312 333extern struct cmd_list_element *add_info_alias (char *, char *, int);
c906108c 334
a14ed312 335extern char **complete_on_cmdlist (struct cmd_list_element *, char *, char *);
c906108c 336
53904c9e 337extern char **complete_on_enum (const char *enumlist[], char *, char *);
c906108c 338
a14ed312 339extern void delete_cmd (char *, struct cmd_list_element **);
c906108c 340
d9fcf2fb 341extern void help_cmd (char *, struct ui_file *);
c906108c 342
d9fcf2fb
JM
343extern void help_list (struct cmd_list_element *, char *,
344 enum command_class, struct ui_file *);
c906108c 345
d9fcf2fb
JM
346extern void help_cmd_list (struct cmd_list_element *, enum command_class,
347 char *, int, struct ui_file *);
c906108c 348
1ed2a135
AC
349extern struct cmd_list_element *add_set_cmd (char *name, enum
350 command_class class,
351 var_types var_type, void *var,
352 char *doc,
353 struct cmd_list_element **list);
354
355extern struct cmd_list_element *add_set_enum_cmd (char *name,
356 enum command_class class,
53904c9e
AC
357 const char *enumlist[],
358 const char **var,
1ed2a135
AC
359 char *doc,
360 struct cmd_list_element **list);
c906108c 361
97c3646f
AC
362extern struct cmd_list_element *add_set_auto_boolean_cmd (char *name,
363 enum command_class class,
364 enum cmd_auto_boolean *var,
365 char *doc,
366 struct cmd_list_element **list);
367
f3796e26
AC
368extern struct cmd_list_element *add_set_boolean_cmd (char *name,
369 enum command_class class,
370 int *var,
371 char *doc,
372 struct cmd_list_element **list);
373
a14ed312
KB
374extern struct cmd_list_element *add_show_from_set (struct cmd_list_element *,
375 struct cmd_list_element
376 **);
c906108c 377
c906108c
SS
378/* Do a "show" command for each thing on a command list. */
379
a14ed312 380extern void cmd_show_list (struct cmd_list_element *, int, char *);
c906108c 381
c3eb0c00 382extern NORETURN void error_no_arg (char *) ATTR_NORETURN;
c906108c 383
a14ed312 384extern void dont_repeat (void);
c906108c
SS
385
386/* Used to mark commands that don't do anything. If we just leave the
387 function field NULL, the command is interpreted as a help topic, or
388 as a class of commands. */
389
a14ed312 390extern void not_just_help_class_command (char *, int);
c906108c
SS
391
392#endif /* !defined (COMMAND_H) */
This page took 0.173864 seconds and 4 git commands to generate.