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