Commit | Line | Data |
---|---|---|
50aeff07 | 1 | /* Header file for command creation. |
18a642a1 | 2 | |
b811d2c2 | 3 | Copyright (C) 1986-2020 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b JM |
5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 7 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 8 | (at your option) any later version. |
c906108c | 9 | |
c5aa993b JM |
10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | GNU General Public License for more details. | |
c906108c | 14 | |
c5aa993b | 15 | You should have received a copy of the GNU General Public License |
a9762ec7 | 16 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c SS |
17 | |
18 | #if !defined (COMMAND_H) | |
19 | #define COMMAND_H 1 | |
20 | ||
268a13a5 TT |
21 | #include "gdbsupport/gdb_vecs.h" |
22 | #include "gdbsupport/scoped_restore.h" | |
49c4e619 | 23 | |
eb3ff9a5 PA |
24 | struct completion_tracker; |
25 | ||
50aeff07 PA |
26 | /* This file defines the public interface for any code wanting to |
27 | create commands. */ | |
28 | ||
aff410f1 MS |
29 | /* Command classes are top-level categories into which commands are |
30 | broken down for "help" purposes. | |
31 | ||
6426a772 JM |
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 | ||
36 | enum command_class | |
37 | { | |
38 | /* Special args to help_list */ | |
6e381ba0 | 39 | class_deprecated = -3, all_classes = -2, all_commands = -1, |
6426a772 | 40 | /* Classes of commands */ |
aff410f1 MS |
41 | no_class = -1, class_run = 0, class_vars, class_stack, class_files, |
42 | class_support, class_info, class_breakpoint, class_trace, | |
6b04bdb7 | 43 | class_alias, class_bookmark, class_obscure, class_maintenance, |
db5f229b MS |
44 | class_pseudo, class_tui, class_user, class_xdb, |
45 | no_set_class /* Used for "show" commands that have no corresponding | |
46 | "set" command. */ | |
6426a772 JM |
47 | }; |
48 | ||
18a642a1 AC |
49 | /* FIXME: cagney/2002-03-17: Once cmd_type() has been removed, ``enum |
50 | cmd_types'' can be moved from "command.h" to "cli-decode.h". */ | |
c906108c SS |
51 | /* Not a set/show command. Note that some commands which begin with |
52 | "set" or "show" might be in this category, if their syntax does | |
53 | not fall into one of the following categories. */ | |
c5aa993b JM |
54 | typedef enum cmd_types |
55 | { | |
56 | not_set_cmd, | |
57 | set_cmd, | |
58 | show_cmd | |
59 | } | |
60 | cmd_types; | |
c906108c SS |
61 | |
62 | /* Types of "set" or "show" command. */ | |
c5aa993b JM |
63 | typedef enum var_types |
64 | { | |
491144b5 CB |
65 | /* "on" or "off". *VAR is a bool which is true for on, |
66 | false for off. */ | |
c5aa993b | 67 | var_boolean, |
97c3646f AC |
68 | |
69 | /* "on" / "true" / "enable" or "off" / "false" / "disable" or | |
7f19b9a2 AC |
70 | "auto. *VAR is an ``enum auto_boolean''. NOTE: In general a |
71 | custom show command will need to be implemented - one that for | |
72 | "auto" prints both the "auto" and the current auto-selected | |
ebcd3b23 | 73 | value. */ |
97c3646f AC |
74 | var_auto_boolean, |
75 | ||
aff410f1 MS |
76 | /* Unsigned Integer. *VAR is an unsigned int. The user can type |
77 | 0 to mean "unlimited", which is stored in *VAR as UINT_MAX. */ | |
c5aa993b JM |
78 | var_uinteger, |
79 | ||
aff410f1 MS |
80 | /* Like var_uinteger but signed. *VAR is an int. The user can |
81 | type 0 to mean "unlimited", which is stored in *VAR as | |
6fc1c773 YQ |
82 | INT_MAX. The only remaining use of it is the Python API. |
83 | Don't use it elsewhere. */ | |
c5aa993b JM |
84 | var_integer, |
85 | ||
aff410f1 MS |
86 | /* String which the user enters with escapes (e.g. the user types |
87 | \n and it is a real newline in the stored string). | |
c5aa993b JM |
88 | *VAR is a malloc'd string, or NULL if the string is empty. */ |
89 | var_string, | |
90 | /* String which stores what the user types verbatim. | |
91 | *VAR is a malloc'd string, or NULL if the string is empty. */ | |
92 | var_string_noescape, | |
b4b4ac0b AC |
93 | /* String which stores a filename. (*VAR) is a malloc'd string, |
94 | or "" if the string was empty. */ | |
95 | var_optional_filename, | |
96 | /* String which stores a filename. (*VAR) is a malloc'd | |
97 | string. */ | |
c5aa993b | 98 | var_filename, |
a7c3d162 | 99 | /* ZeroableInteger. *VAR is an int. Like var_integer except |
c5aa993b JM |
100 | that zero really means zero. */ |
101 | var_zinteger, | |
1e8fb976 PA |
102 | /* ZeroableUnsignedInteger. *VAR is an unsigned int. Zero really |
103 | means zero. */ | |
104 | var_zuinteger, | |
b69b1fb1 YQ |
105 | /* ZeroableUnsignedInteger with unlimited value. *VAR is an int, |
106 | but its range is [0, INT_MAX]. -1 stands for unlimited and | |
107 | other negative numbers are not allowed. */ | |
6fc1c773 | 108 | var_zuinteger_unlimited, |
aff410f1 MS |
109 | /* Enumerated type. Can only have one of the specified values. |
110 | *VAR is a char pointer to the name of the element that we | |
111 | find. */ | |
c5aa993b JM |
112 | var_enum |
113 | } | |
114 | var_types; | |
c906108c SS |
115 | |
116 | /* This structure records one command'd definition. */ | |
18a642a1 | 117 | struct cmd_list_element; |
c906108c | 118 | |
0450cc4c | 119 | typedef void cmd_const_cfunc_ftype (const char *args, int from_tty); |
82ae6c8d | 120 | |
4034d0ff AT |
121 | /* This structure specifies notifications to be suppressed by a cli |
122 | command interpreter. */ | |
123 | ||
124 | struct cli_suppress_notification | |
125 | { | |
126 | /* Inferior, thread, frame selected notification suppressed? */ | |
127 | int user_selected_context; | |
128 | }; | |
129 | ||
130 | extern struct cli_suppress_notification cli_suppress_notification; | |
131 | ||
18d5d590 | 132 | /* Forward-declarations of the entry-points of cli/cli-decode.c. */ |
c906108c | 133 | |
50aeff07 PA |
134 | /* API to the manipulation of command lists. */ |
135 | ||
be09caf1 PW |
136 | /* Return TRUE if NAME is a valid user-defined command name. |
137 | This is a stricter subset of all gdb commands, | |
138 | see find_command_name_length. */ | |
139 | ||
7f008c9e | 140 | extern bool valid_user_defined_cmd_name_p (const char *name); |
5a56e9c5 | 141 | |
be09caf1 PW |
142 | /* Return TRUE if C is a valid command character. */ |
143 | ||
144 | extern bool valid_cmd_char_p (int c); | |
145 | ||
0450cc4c TT |
146 | /* Const-correct variant of the above. */ |
147 | ||
148 | extern struct cmd_list_element *add_cmd (const char *, enum command_class, | |
149 | cmd_const_cfunc_ftype *fun, | |
150 | const char *, | |
151 | struct cmd_list_element **); | |
152 | ||
153 | /* Like add_cmd, but no command function is specified. */ | |
154 | ||
155 | extern struct cmd_list_element *add_cmd (const char *, enum command_class, | |
156 | const char *, | |
157 | struct cmd_list_element **); | |
158 | ||
f67ffa6a AB |
159 | extern struct cmd_list_element *add_cmd_suppress_notification |
160 | (const char *name, enum command_class theclass, | |
161 | cmd_const_cfunc_ftype *fun, const char *doc, | |
162 | struct cmd_list_element **list, | |
163 | int *suppress_notification); | |
164 | ||
6f937416 | 165 | extern struct cmd_list_element *add_alias_cmd (const char *, const char *, |
a14ed312 KB |
166 | enum command_class, int, |
167 | struct cmd_list_element **); | |
168 | ||
21873064 YQ |
169 | extern struct cmd_list_element *add_alias_cmd (const char *, |
170 | cmd_list_element *, | |
171 | enum command_class, int, | |
172 | struct cmd_list_element **); | |
173 | ||
174 | ||
6f937416 | 175 | extern struct cmd_list_element *add_prefix_cmd (const char *, enum command_class, |
981a3fb3 | 176 | cmd_const_cfunc_ftype *fun, |
1947513d | 177 | const char *, |
a14ed312 | 178 | struct cmd_list_element **, |
64e61d29 | 179 | const char *, int, |
a14ed312 KB |
180 | struct cmd_list_element **); |
181 | ||
f67ffa6a AB |
182 | extern struct cmd_list_element *add_prefix_cmd_suppress_notification |
183 | (const char *name, enum command_class theclass, | |
184 | cmd_const_cfunc_ftype *fun, | |
185 | const char *doc, struct cmd_list_element **prefixlist, | |
186 | const char *prefixname, int allow_unknown, | |
187 | struct cmd_list_element **list, | |
188 | int *suppress_notification); | |
189 | ||
6f937416 | 190 | extern struct cmd_list_element *add_abbrev_prefix_cmd (const char *, |
a14ed312 | 191 | enum command_class, |
ee7ddd71 | 192 | cmd_const_cfunc_ftype *fun, |
1947513d | 193 | const char *, |
a14ed312 | 194 | struct cmd_list_element |
64e61d29 | 195 | **, const char *, int, |
a14ed312 KB |
196 | struct cmd_list_element |
197 | **); | |
198 | ||
eb4c3f4a TT |
199 | typedef void cmd_const_sfunc_ftype (const char *args, int from_tty, |
200 | struct cmd_list_element *c); | |
9f60d481 | 201 | extern void set_cmd_sfunc (struct cmd_list_element *cmd, |
eb4c3f4a | 202 | cmd_const_sfunc_ftype *sfunc); |
9f60d481 | 203 | |
eb3ff9a5 | 204 | /* A completion routine. Add possible completions to tracker. |
6e1dbf8c PA |
205 | |
206 | TEXT is the text beyond what was matched for the command itself | |
207 | (leading whitespace is skipped). It stops where we are supposed to | |
208 | stop completing (rl_point) and is '\0' terminated. WORD points in | |
209 | the same buffer as TEXT, and completions should be returned | |
210 | relative to this position. For example, suppose TEXT is "foo" and | |
211 | we want to complete to "foobar". If WORD is "oo", return "oobar"; | |
212 | if WORD is "baz/foo", return "baz/foobar". */ | |
eb3ff9a5 PA |
213 | typedef void completer_ftype (struct cmd_list_element *, |
214 | completion_tracker &tracker, | |
215 | const char *text, const char *word); | |
625e8578 | 216 | |
6e1dbf8c PA |
217 | /* Same, but for set_cmd_completer_handle_brkchars. */ |
218 | typedef void completer_handle_brkchars_ftype (struct cmd_list_element *, | |
eb3ff9a5 | 219 | completion_tracker &tracker, |
6e1dbf8c | 220 | const char *text, const char *word); |
7d793aa9 | 221 | |
625e8578 | 222 | extern void set_cmd_completer (struct cmd_list_element *, completer_ftype *); |
5ba2abeb | 223 | |
7d793aa9 SDJ |
224 | /* Set the completer_handle_brkchars callback. */ |
225 | ||
226 | extern void set_cmd_completer_handle_brkchars (struct cmd_list_element *, | |
6e1dbf8c | 227 | completer_handle_brkchars_ftype *); |
7d793aa9 | 228 | |
bbaca940 AC |
229 | /* HACK: cagney/2002-02-23: Code, mostly in tracepoints.c, grubs |
230 | around in cmd objects to test the value of the commands sfunc(). */ | |
0450cc4c TT |
231 | extern int cmd_cfunc_eq (struct cmd_list_element *cmd, |
232 | cmd_const_cfunc_ftype *cfun); | |
9f60d481 | 233 | |
ebcd3b23 | 234 | /* Each command object has a local context attached to it. */ |
aff410f1 MS |
235 | extern void set_cmd_context (struct cmd_list_element *cmd, |
236 | void *context); | |
7d0766f3 AC |
237 | extern void *get_cmd_context (struct cmd_list_element *cmd); |
238 | ||
239 | ||
5913bcb0 AC |
240 | /* Execute CMD's pre/post hook. Throw an error if the command fails. |
241 | If already executing this pre/post hook, or there is no pre/post | |
242 | hook, the call is silently ignored. */ | |
243 | extern void execute_cmd_pre_hook (struct cmd_list_element *cmd); | |
244 | extern void execute_cmd_post_hook (struct cmd_list_element *cmd); | |
245 | ||
1868c04e | 246 | /* Return the type of the command. */ |
1868c04e AC |
247 | extern enum cmd_types cmd_type (struct cmd_list_element *cmd); |
248 | ||
50aeff07 PA |
249 | /* Flag for an ambiguous cmd_list result. */ |
250 | #define CMD_LIST_AMBIGUOUS ((struct cmd_list_element *) -1) | |
1868c04e | 251 | |
6f937416 | 252 | extern struct cmd_list_element *lookup_cmd (const char **, |
a121b7c1 PA |
253 | struct cmd_list_element *, |
254 | const char *, | |
a14ed312 KB |
255 | int, int); |
256 | ||
6f937416 | 257 | extern struct cmd_list_element *lookup_cmd_1 (const char **, |
a14ed312 KB |
258 | struct cmd_list_element *, |
259 | struct cmd_list_element **, | |
260 | int); | |
c906108c | 261 | |
aff410f1 | 262 | extern struct cmd_list_element *deprecate_cmd (struct cmd_list_element *, |
429e55ea | 263 | const char * ); |
56382845 | 264 | |
6f937416 | 265 | extern void deprecated_cmd_warning (const char *); |
56382845 | 266 | |
6f937416 | 267 | extern int lookup_cmd_composition (const char *text, |
aff410f1 MS |
268 | struct cmd_list_element **alias, |
269 | struct cmd_list_element **prefix_cmd, | |
270 | struct cmd_list_element **cmd); | |
56382845 | 271 | |
6f937416 | 272 | extern struct cmd_list_element *add_com (const char *, enum command_class, |
0b39b52e | 273 | cmd_const_cfunc_ftype *fun, |
1947513d | 274 | const char *); |
c906108c | 275 | |
6f937416 | 276 | extern struct cmd_list_element *add_com_alias (const char *, const char *, |
a14ed312 | 277 | enum command_class, int); |
c906108c | 278 | |
4034d0ff AT |
279 | extern struct cmd_list_element *add_com_suppress_notification |
280 | (const char *name, enum command_class theclass, | |
1ee870c5 | 281 | cmd_const_cfunc_ftype *fun, const char *doc, |
4034d0ff AT |
282 | int *supress_notification); |
283 | ||
6f937416 | 284 | extern struct cmd_list_element *add_info (const char *, |
1d12d88f | 285 | cmd_const_cfunc_ftype *fun, |
1947513d | 286 | const char *); |
c906108c | 287 | |
1947513d TT |
288 | extern struct cmd_list_element *add_info_alias (const char *, const char *, |
289 | int); | |
c906108c | 290 | |
eb3ff9a5 PA |
291 | extern void complete_on_cmdlist (struct cmd_list_element *, |
292 | completion_tracker &tracker, | |
293 | const char *, const char *, int); | |
c906108c | 294 | |
eb3ff9a5 PA |
295 | extern void complete_on_enum (completion_tracker &tracker, |
296 | const char *const *enumlist, | |
297 | const char *, const char *); | |
c906108c | 298 | |
50aeff07 | 299 | /* Functions that implement commands about CLI commands. */ |
c906108c | 300 | |
64e61d29 | 301 | extern void help_list (struct cmd_list_element *, const char *, |
d9fcf2fb | 302 | enum command_class, struct ui_file *); |
c906108c | 303 | |
08546159 AC |
304 | /* Method for show a set/show variable's VALUE on FILE. If this |
305 | method isn't supplied deprecated_show_value_hack() is called (which | |
306 | is not good). */ | |
307 | typedef void (show_value_ftype) (struct ui_file *file, | |
308 | int from_tty, | |
309 | struct cmd_list_element *cmd, | |
310 | const char *value); | |
311 | /* NOTE: i18n: This function is not i18n friendly. Callers should | |
312 | instead print the value out directly. */ | |
313 | extern show_value_ftype deprecated_show_value_hack; | |
314 | ||
6f937416 | 315 | extern void add_setshow_enum_cmd (const char *name, |
fe978cb0 | 316 | enum command_class theclass, |
40478521 | 317 | const char *const *enumlist, |
1b295c3d AC |
318 | const char **var, |
319 | const char *set_doc, | |
320 | const char *show_doc, | |
321 | const char *help_doc, | |
eb4c3f4a | 322 | cmd_const_sfunc_ftype *set_func, |
08546159 | 323 | show_value_ftype *show_func, |
1b295c3d | 324 | struct cmd_list_element **set_list, |
7170dadf TT |
325 | struct cmd_list_element **show_list, |
326 | void *context = nullptr); | |
c906108c | 327 | |
6f937416 | 328 | extern void add_setshow_auto_boolean_cmd (const char *name, |
fe978cb0 | 329 | enum command_class theclass, |
e9e68a56 | 330 | enum auto_boolean *var, |
3b64bf98 AC |
331 | const char *set_doc, |
332 | const char *show_doc, | |
333 | const char *help_doc, | |
eb4c3f4a | 334 | cmd_const_sfunc_ftype *set_func, |
08546159 | 335 | show_value_ftype *show_func, |
e9e68a56 AC |
336 | struct cmd_list_element **set_list, |
337 | struct cmd_list_element **show_list); | |
97c3646f | 338 | |
2daf894e PA |
339 | extern cmd_list_element * |
340 | add_setshow_boolean_cmd (const char *name, | |
341 | enum command_class theclass, | |
491144b5 | 342 | bool *var, |
2daf894e PA |
343 | const char *set_doc, const char *show_doc, |
344 | const char *help_doc, | |
345 | cmd_const_sfunc_ftype *set_func, | |
346 | show_value_ftype *show_func, | |
347 | struct cmd_list_element **set_list, | |
348 | struct cmd_list_element **show_list); | |
f3796e26 | 349 | |
6f937416 | 350 | extern void add_setshow_filename_cmd (const char *name, |
fe978cb0 | 351 | enum command_class theclass, |
b3f42336 AC |
352 | char **var, |
353 | const char *set_doc, | |
354 | const char *show_doc, | |
355 | const char *help_doc, | |
eb4c3f4a | 356 | cmd_const_sfunc_ftype *set_func, |
08546159 | 357 | show_value_ftype *show_func, |
b3f42336 AC |
358 | struct cmd_list_element **set_list, |
359 | struct cmd_list_element **show_list); | |
360 | ||
6f937416 | 361 | extern void add_setshow_string_cmd (const char *name, |
fe978cb0 | 362 | enum command_class theclass, |
5efd5804 PA |
363 | char **var, |
364 | const char *set_doc, | |
365 | const char *show_doc, | |
366 | const char *help_doc, | |
eb4c3f4a | 367 | cmd_const_sfunc_ftype *set_func, |
5efd5804 PA |
368 | show_value_ftype *show_func, |
369 | struct cmd_list_element **set_list, | |
370 | struct cmd_list_element **show_list); | |
371 | ||
44478ab3 | 372 | extern struct cmd_list_element *add_setshow_string_noescape_cmd |
6f937416 | 373 | (const char *name, |
fe978cb0 | 374 | enum command_class theclass, |
44478ab3 TT |
375 | char **var, |
376 | const char *set_doc, | |
377 | const char *show_doc, | |
378 | const char *help_doc, | |
eb4c3f4a | 379 | cmd_const_sfunc_ftype *set_func, |
44478ab3 TT |
380 | show_value_ftype *show_func, |
381 | struct cmd_list_element **set_list, | |
382 | struct cmd_list_element **show_list); | |
26c41df3 | 383 | |
6f937416 | 384 | extern void add_setshow_optional_filename_cmd (const char *name, |
fe978cb0 | 385 | enum command_class theclass, |
b4b4ac0b AC |
386 | char **var, |
387 | const char *set_doc, | |
388 | const char *show_doc, | |
389 | const char *help_doc, | |
eb4c3f4a | 390 | cmd_const_sfunc_ftype *set_func, |
b4b4ac0b AC |
391 | show_value_ftype *show_func, |
392 | struct cmd_list_element **set_list, | |
393 | struct cmd_list_element **show_list); | |
394 | ||
6f937416 | 395 | extern void add_setshow_integer_cmd (const char *name, |
fe978cb0 | 396 | enum command_class theclass, |
5efd5804 PA |
397 | int *var, |
398 | const char *set_doc, | |
399 | const char *show_doc, | |
400 | const char *help_doc, | |
eb4c3f4a | 401 | cmd_const_sfunc_ftype *set_func, |
5efd5804 PA |
402 | show_value_ftype *show_func, |
403 | struct cmd_list_element **set_list, | |
404 | struct cmd_list_element **show_list); | |
c0d88b1b | 405 | |
6f937416 | 406 | extern void add_setshow_uinteger_cmd (const char *name, |
fe978cb0 | 407 | enum command_class theclass, |
5efd5804 PA |
408 | unsigned int *var, |
409 | const char *set_doc, | |
410 | const char *show_doc, | |
411 | const char *help_doc, | |
eb4c3f4a | 412 | cmd_const_sfunc_ftype *set_func, |
5efd5804 PA |
413 | show_value_ftype *show_func, |
414 | struct cmd_list_element **set_list, | |
415 | struct cmd_list_element **show_list); | |
15170568 | 416 | |
6f937416 | 417 | extern void add_setshow_zinteger_cmd (const char *name, |
fe978cb0 | 418 | enum command_class theclass, |
5efd5804 PA |
419 | int *var, |
420 | const char *set_doc, | |
421 | const char *show_doc, | |
422 | const char *help_doc, | |
eb4c3f4a | 423 | cmd_const_sfunc_ftype *set_func, |
5efd5804 PA |
424 | show_value_ftype *show_func, |
425 | struct cmd_list_element **set_list, | |
426 | struct cmd_list_element **show_list); | |
25d29d70 | 427 | |
6f937416 | 428 | extern void add_setshow_zuinteger_cmd (const char *name, |
fe978cb0 | 429 | enum command_class theclass, |
5efd5804 PA |
430 | unsigned int *var, |
431 | const char *set_doc, | |
432 | const char *show_doc, | |
433 | const char *help_doc, | |
eb4c3f4a | 434 | cmd_const_sfunc_ftype *set_func, |
6fc1c773 YQ |
435 | show_value_ftype *show_func, |
436 | struct cmd_list_element **set_list, | |
437 | struct cmd_list_element **show_list); | |
438 | ||
439 | extern void | |
6f937416 | 440 | add_setshow_zuinteger_unlimited_cmd (const char *name, |
fe978cb0 | 441 | enum command_class theclass, |
b69b1fb1 | 442 | int *var, |
6fc1c773 YQ |
443 | const char *set_doc, |
444 | const char *show_doc, | |
445 | const char *help_doc, | |
eb4c3f4a | 446 | cmd_const_sfunc_ftype *set_func, |
5efd5804 PA |
447 | show_value_ftype *show_func, |
448 | struct cmd_list_element **set_list, | |
449 | struct cmd_list_element **show_list); | |
1e8fb976 | 450 | |
c906108c SS |
451 | /* Do a "show" command for each thing on a command list. */ |
452 | ||
64e61d29 | 453 | extern void cmd_show_list (struct cmd_list_element *, int, const char *); |
c906108c | 454 | |
c25c4a8b | 455 | /* Used everywhere whenever at least one parameter is required and |
ebcd3b23 | 456 | none is specified. */ |
c25c4a8b | 457 | |
5b10184c | 458 | extern void error_no_arg (const char *) ATTRIBUTE_NORETURN; |
c906108c | 459 | |
68bb5386 PW |
460 | |
461 | /* Command line saving and repetition. | |
462 | Each input line executed is saved to possibly be repeated either | |
463 | when the user types an empty line, or be repeated by a command | |
464 | that wants to repeat the previously executed command. The below | |
465 | functions control command repetition. */ | |
466 | ||
467 | /* Commands call dont_repeat if they do not want to be repeated by null | |
468 | lines or by repeat_previous (). */ | |
469 | ||
470 | extern void dont_repeat (); | |
471 | ||
fdbc9870 PA |
472 | /* Commands call repeat_previous if they want to repeat the previous |
473 | command. Such commands that repeat the previous command must | |
474 | indicate to not repeat themselves, to avoid recursive repeat. | |
475 | repeat_previous marks the current command as not repeating, and | |
476 | ensures get_saved_command_line returns the previous command, so | |
477 | that the currently executing command can repeat it. If there's no | |
478 | previous command, throws an error. Otherwise, returns the result | |
479 | of get_saved_command_line, which now points at the command to | |
480 | repeat. */ | |
481 | ||
482 | extern const char *repeat_previous (); | |
68bb5386 PW |
483 | |
484 | /* Prevent dont_repeat from working, and return a cleanup that | |
485 | restores the previous state. */ | |
c906108c | 486 | |
1ac32117 | 487 | extern scoped_restore_tmpl<int> prevent_dont_repeat (void); |
47a80e90 | 488 | |
85c4be7c TT |
489 | /* Set the arguments that will be passed if the current command is |
490 | repeated. Note that the passed-in string must be a constant. */ | |
491 | ||
492 | extern void set_repeat_arguments (const char *args); | |
493 | ||
68bb5386 PW |
494 | /* Returns the saved command line to repeat. |
495 | When a command is being executed, this is the currently executing | |
496 | command line, unless the currently executing command has called | |
497 | repeat_previous (): in this case, get_saved_command_line returns | |
498 | the previously saved command line. */ | |
499 | ||
500 | extern char *get_saved_command_line (); | |
501 | ||
502 | /* Takes a copy of CMD, for possible repetition. */ | |
503 | ||
504 | extern void save_command_line (const char *cmd); | |
505 | ||
c906108c SS |
506 | /* Used to mark commands that don't do anything. If we just leave the |
507 | function field NULL, the command is interpreted as a help topic, or | |
508 | as a class of commands. */ | |
509 | ||
eb7c454d | 510 | extern void not_just_help_class_command (const char *, int); |
c906108c | 511 | |
aff410f1 | 512 | /* Check function pointer. */ |
f436dd25 MH |
513 | extern int cmd_func_p (struct cmd_list_element *cmd); |
514 | ||
aff410f1 MS |
515 | /* Call the command function. */ |
516 | extern void cmd_func (struct cmd_list_element *cmd, | |
95a6b0a1 | 517 | const char *args, int from_tty); |
f436dd25 | 518 | |
c906108c | 519 | #endif /* !defined (COMMAND_H) */ |