gdb: Remove deprecated assertion in setting::get
[binutils-gdb.git] / gdb / command.h
1 /* Header file for command creation.
2
3 Copyright (C) 1986-2021 Free Software Foundation, Inc.
4
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
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
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.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18 #if !defined (COMMAND_H)
19 #define COMMAND_H 1
20
21 #include "gdbsupport/gdb_vecs.h"
22 #include "gdbsupport/scoped_restore.h"
23
24 struct completion_tracker;
25
26 /* This file defines the public interface for any code wanting to
27 create commands. */
28
29 /* Command classes are top-level categories into which commands are
30 broken down for "help" purposes.
31
32 The class_alias is used for the user-defined aliases, defined
33 using the "alias" command.
34
35 Aliases pre-defined by GDB (e.g. the alias "bt" of the "backtrace" command)
36 are not using the class_alias.
37 Different pre-defined aliases of the same command do not necessarily
38 have the same classes. For example, class_stack is used for the
39 "backtrace" and its "bt" alias", while "info stack" (also an alias
40 of "backtrace" uses class_info. */
41
42 enum command_class
43 {
44 /* Classes of commands followed by a comment giving the name
45 to use in "help <classname>".
46 Note that help accepts unambiguous abbreviated class names. */
47
48 /* Special classes to help_list */
49 class_deprecated = -3,
50 all_classes = -2, /* help without <classname> */
51 all_commands = -1, /* all */
52
53 /* Classes of commands */
54 no_class = -1,
55 class_run = 0, /* running */
56 class_vars, /* data */
57 class_stack, /* stack */
58 class_files, /* files */
59 class_support, /* support */
60 class_info, /* status */
61 class_breakpoint, /* breakpoints */
62 class_trace, /* tracepoints */
63 class_alias, /* aliases */
64 class_bookmark,
65 class_obscure, /* obscure */
66 class_maintenance, /* internals */
67 class_tui, /* text-user-interface */
68 class_user, /* user-defined */
69
70 /* Used for "show" commands that have no corresponding "set" command. */
71 no_set_class
72 };
73
74 /* Types of "set" or "show" command. */
75 typedef enum var_types
76 {
77 /* "on" or "off". *VAR is a bool which is true for on,
78 false for off. */
79 var_boolean,
80
81 /* "on" / "true" / "enable" or "off" / "false" / "disable" or
82 "auto. *VAR is an ``enum auto_boolean''. NOTE: In general a
83 custom show command will need to be implemented - one that for
84 "auto" prints both the "auto" and the current auto-selected
85 value. */
86 var_auto_boolean,
87
88 /* Unsigned Integer. *VAR is an unsigned int. The user can type
89 0 to mean "unlimited", which is stored in *VAR as UINT_MAX. */
90 var_uinteger,
91
92 /* Like var_uinteger but signed. *VAR is an int. The user can
93 type 0 to mean "unlimited", which is stored in *VAR as
94 INT_MAX. The only remaining use of it is the Python API.
95 Don't use it elsewhere. */
96 var_integer,
97
98 /* String which the user enters with escapes (e.g. the user types
99 \n and it is a real newline in the stored string).
100 *VAR is a std::string, "" if the string is empty. */
101 var_string,
102 /* String which stores what the user types verbatim.
103 *VAR is std::string, "" if the string is empty. */
104 var_string_noescape,
105 /* String which stores a filename. (*VAR) is a std::string,
106 "" if the string was empty. */
107 var_optional_filename,
108 /* String which stores a filename. (*VAR) is a std::string. */
109 var_filename,
110 /* ZeroableInteger. *VAR is an int. Like var_integer except
111 that zero really means zero. */
112 var_zinteger,
113 /* ZeroableUnsignedInteger. *VAR is an unsigned int. Zero really
114 means zero. */
115 var_zuinteger,
116 /* ZeroableUnsignedInteger with unlimited value. *VAR is an int,
117 but its range is [0, INT_MAX]. -1 stands for unlimited and
118 other negative numbers are not allowed. */
119 var_zuinteger_unlimited,
120 /* Enumerated type. Can only have one of the specified values.
121 *VAR is a char pointer to the name of the element that we
122 find. */
123 var_enum
124 }
125 var_types;
126
127 /* Return true if a setting of type VAR_TYPE is backed with type T.
128
129 This function is left without definition intentionally. This template is
130 specialized for all valid types that are used to back var_types. Therefore
131 if one tries to instantiate this un-specialized template it means the T
132 parameter is not a type used to back a var_type and it is most likely a
133 programming error. */
134 template<typename T>
135 bool var_type_uses (var_types var_type) = delete;
136
137 /* Return true if a setting of type T is backed by a bool variable. */
138 template<>
139 inline bool var_type_uses<bool> (var_types t)
140 {
141 return t == var_boolean;
142 };
143
144 /* Return true if a setting of type T is backed by a auto_boolean variable.
145 */
146 template<>
147 inline bool var_type_uses<enum auto_boolean> (var_types t)
148 {
149 return t == var_auto_boolean;
150 }
151
152 /* Return true if a setting of type T is backed by an unsigned int variable.
153 */
154 template<>
155 inline bool var_type_uses<unsigned int> (var_types t)
156 {
157 return (t == var_uinteger || t == var_zinteger || t == var_zuinteger);
158 }
159
160 /* Return true if a setting of type T is backed by an int variable. */
161 template<>
162 inline bool var_type_uses<int> (var_types t)
163 {
164 return (t == var_integer || t == var_zinteger
165 || t == var_zuinteger_unlimited);
166 }
167
168 /* Return true if a setting of type T is backed by a std::string variable. */
169 template<>
170 inline bool var_type_uses<std::string> (var_types t)
171 {
172 return (t == var_string || t == var_string_noescape
173 || t == var_optional_filename || t == var_filename);
174 }
175
176 /* Return true if a setting of type T is backed by a const char * variable.
177 */
178 template<>
179 inline bool var_type_uses<const char *> (var_types t)
180 {
181 return t == var_enum;
182 }
183
184 /* Function signature for a callback used to get a value from a setting. */
185
186 template<typename T>
187 using setting_getter_ftype = const T &(*) ();
188
189 /* Function signature for a callback used to set a value to a setting. */
190
191 template<typename T>
192 using setting_setter_ftype = void (*) (const T &);
193
194 /* Generic/type-erased function pointer. */
195
196 using erased_func = void (*) ();
197
198 /* Interface for getting and setting a setting's value.
199
200 The underlying data can be of any VAR_TYPES type. */
201 struct setting
202 {
203 /* Create a setting backed by a variable of type T.
204
205 Type T must match the var type VAR_TYPE (see VAR_TYPE_USES). */
206 template<typename T>
207 setting (var_types var_type, T *var)
208 : m_var_type (var_type), m_var (var)
209 {
210 gdb_assert (var != nullptr);
211 gdb_assert (var_type_uses<T> (var_type));
212 }
213
214 /* A setting can also be constructed with a pre-validated
215 type-erased variable. Use the following function to
216 validate & type-erase said variable/function pointers. */
217
218 struct erased_args
219 {
220 void *var;
221 erased_func setter;
222 erased_func getter;
223 };
224
225 template<typename T>
226 static erased_args erase_args (var_types var_type,
227 T *var,
228 setting_setter_ftype<T> set_setting_func,
229 setting_getter_ftype<T> get_setting_func)
230 {
231 gdb_assert (var_type_uses<T> (var_type));
232 /* The getter and the setter must be both provided or both omitted. */
233 gdb_assert
234 ((set_setting_func == nullptr) == (get_setting_func == nullptr));
235
236 /* The caller must provide a pointer to a variable or get/set functions, but
237 not both. */
238 gdb_assert ((set_setting_func == nullptr) != (var == nullptr));
239
240 return {
241 var,
242 reinterpret_cast<erased_func> (set_setting_func),
243 reinterpret_cast<erased_func> (get_setting_func)
244 };
245 }
246
247 /* Create a setting backed by pre-validated type-erased args.
248 ERASED_VAR's fields' real types must match the var type VAR_TYPE
249 (see VAR_TYPE_USES). */
250 setting (var_types var_type, const erased_args &args)
251 : m_var_type (var_type),
252 m_var (args.var),
253 m_getter (args.getter),
254 m_setter (args.setter)
255 {
256 }
257
258 /* Create a setting backed by setter and getter functions.
259
260 Type T must match the var type VAR_TYPE (see VAR_TYPE_USES). */
261 template<typename T>
262 setting (var_types var_type,
263 setting_setter_ftype<T> setter,
264 setting_getter_ftype<T> getter)
265 : m_var_type (var_type)
266 {
267 gdb_assert (var_type_uses<T> (var_type));
268
269 /* Getters and setters are cast to and from the arbitrary `void (*) ()`
270 function pointer type. Make sure that the two types are really of the
271 same size. */
272 gdb_static_assert (sizeof (m_getter) == sizeof (getter));
273 gdb_static_assert (sizeof (m_setter) == sizeof (setter));
274
275 m_getter = reinterpret_cast<erased_func> (getter);
276 m_setter = reinterpret_cast<erased_func> (setter);
277 }
278
279 /* Access the type of the current setting. */
280 var_types type () const
281 { return m_var_type; }
282
283 /* Return the current value.
284
285 The template parameter T is the type of the variable used to store the
286 setting. */
287 template<typename T>
288 const T &get () const
289 {
290 gdb_assert (var_type_uses<T> (m_var_type));
291
292 if (m_var == nullptr)
293 {
294 gdb_assert (m_getter != nullptr);
295 auto getter = reinterpret_cast<setting_getter_ftype<T>> (m_getter);
296 return getter ();
297 }
298 else
299 return *static_cast<const T *> (m_var);
300 }
301
302 /* Sets the value of the setting to V. Returns true if the setting was
303 effectively changed, false if the update failed and the setting is left
304 unchanged.
305
306 If we have a user-provided setter, use it to set the setting. Otherwise
307 copy the value V to the internally referenced buffer.
308
309 The template parameter T indicates the type of the variable used to store
310 the setting.
311
312 The var_type of the setting must match T. */
313 template<typename T>
314 bool set (const T &v)
315 {
316 /* Check that the current instance is of one of the supported types for
317 this instantiation. */
318 gdb_assert (var_type_uses<T> (m_var_type));
319
320 const T old_value = this->get<T> ();
321
322 if (m_var == nullptr)
323 {
324 gdb_assert (m_setter != nullptr);
325 auto setter = reinterpret_cast<setting_setter_ftype<T>> (m_setter);
326 setter (v);
327 }
328 else
329 *static_cast<T *> (m_var) = v;
330
331 return old_value != this->get<T> ();
332 }
333
334 private:
335 /* The type of the variable M_VAR is pointing to, or that M_GETTER / M_SETTER
336 get or set. */
337 var_types m_var_type;
338
339 /* Pointer to the enclosed variable
340
341 Either M_VAR is non-nullptr, or both M_GETTER and M_SETTER are
342 non-nullptr. */
343 void *m_var = nullptr;
344
345 /* Pointer to a user provided getter. */
346 erased_func m_getter = nullptr;
347
348 /* Pointer to a user provided setter. */
349 erased_func m_setter = nullptr;
350 };
351
352 /* This structure records one command'd definition. */
353 struct cmd_list_element;
354
355 /* The "simple" signature of command callbacks, which doesn't include a
356 cmd_list_element parameter. */
357
358 typedef void cmd_simple_func_ftype (const char *args, int from_tty);
359
360 /* This structure specifies notifications to be suppressed by a cli
361 command interpreter. */
362
363 struct cli_suppress_notification
364 {
365 /* Inferior, thread, frame selected notification suppressed? */
366 int user_selected_context;
367 };
368
369 extern struct cli_suppress_notification cli_suppress_notification;
370
371 /* Forward-declarations of the entry-points of cli/cli-decode.c. */
372
373 /* API to the manipulation of command lists. */
374
375 /* Return TRUE if NAME is a valid user-defined command name.
376 This is a stricter subset of all gdb commands,
377 see find_command_name_length. */
378
379 extern bool valid_user_defined_cmd_name_p (const char *name);
380
381 /* Return TRUE if C is a valid command character. */
382
383 extern bool valid_cmd_char_p (int c);
384
385 /* Const-correct variant of the above. */
386
387 extern struct cmd_list_element *add_cmd (const char *, enum command_class,
388 cmd_simple_func_ftype *fun,
389 const char *,
390 struct cmd_list_element **);
391
392 /* Like add_cmd, but no command function is specified. */
393
394 extern struct cmd_list_element *add_cmd (const char *, enum command_class,
395 const char *,
396 struct cmd_list_element **);
397
398 extern struct cmd_list_element *add_cmd_suppress_notification
399 (const char *name, enum command_class theclass,
400 cmd_simple_func_ftype *fun, const char *doc,
401 struct cmd_list_element **list,
402 int *suppress_notification);
403
404 extern struct cmd_list_element *add_alias_cmd (const char *,
405 cmd_list_element *,
406 enum command_class, int,
407 struct cmd_list_element **);
408
409
410 extern struct cmd_list_element *add_prefix_cmd (const char *, enum command_class,
411 cmd_simple_func_ftype *fun,
412 const char *,
413 struct cmd_list_element **,
414 int,
415 struct cmd_list_element **);
416
417 /* Like add_prefix_cmd, but sets the callback to a function that
418 simply calls help_list. */
419
420 extern struct cmd_list_element *add_basic_prefix_cmd
421 (const char *, enum command_class, const char *, struct cmd_list_element **,
422 int, struct cmd_list_element **);
423
424 /* Like add_prefix_cmd, but useful for "show" prefixes. This sets the
425 callback to a function that simply calls cmd_show_list. */
426
427 extern struct cmd_list_element *add_show_prefix_cmd
428 (const char *, enum command_class, const char *, struct cmd_list_element **,
429 int, struct cmd_list_element **);
430
431 extern struct cmd_list_element *add_prefix_cmd_suppress_notification
432 (const char *name, enum command_class theclass,
433 cmd_simple_func_ftype *fun,
434 const char *doc, struct cmd_list_element **subcommands,
435 int allow_unknown,
436 struct cmd_list_element **list,
437 int *suppress_notification);
438
439 extern struct cmd_list_element *add_abbrev_prefix_cmd (const char *,
440 enum command_class,
441 cmd_simple_func_ftype *fun,
442 const char *,
443 struct cmd_list_element
444 **, int,
445 struct cmd_list_element
446 **);
447
448 typedef void cmd_func_ftype (const char *args, int from_tty,
449 cmd_list_element *c);
450
451 /* A completion routine. Add possible completions to tracker.
452
453 TEXT is the text beyond what was matched for the command itself
454 (leading whitespace is skipped). It stops where we are supposed to
455 stop completing (rl_point) and is '\0' terminated. WORD points in
456 the same buffer as TEXT, and completions should be returned
457 relative to this position. For example, suppose TEXT is "foo" and
458 we want to complete to "foobar". If WORD is "oo", return "oobar";
459 if WORD is "baz/foo", return "baz/foobar". */
460 typedef void completer_ftype (struct cmd_list_element *,
461 completion_tracker &tracker,
462 const char *text, const char *word);
463
464 /* Same, but for set_cmd_completer_handle_brkchars. */
465 typedef void completer_handle_brkchars_ftype (struct cmd_list_element *,
466 completion_tracker &tracker,
467 const char *text, const char *word);
468
469 extern void set_cmd_completer (struct cmd_list_element *, completer_ftype *);
470
471 /* Set the completer_handle_brkchars callback. */
472
473 extern void set_cmd_completer_handle_brkchars (struct cmd_list_element *,
474 completer_handle_brkchars_ftype *);
475
476 /* HACK: cagney/2002-02-23: Code, mostly in tracepoints.c, grubs
477 around in cmd objects to test the value of the commands sfunc(). */
478 extern int cmd_simple_func_eq (struct cmd_list_element *cmd,
479 cmd_simple_func_ftype *cfun);
480
481 /* Execute CMD's pre/post hook. Throw an error if the command fails.
482 If already executing this pre/post hook, or there is no pre/post
483 hook, the call is silently ignored. */
484 extern void execute_cmd_pre_hook (struct cmd_list_element *cmd);
485 extern void execute_cmd_post_hook (struct cmd_list_element *cmd);
486
487 /* Flag for an ambiguous cmd_list result. */
488 #define CMD_LIST_AMBIGUOUS ((struct cmd_list_element *) -1)
489
490 extern struct cmd_list_element *lookup_cmd (const char **,
491 struct cmd_list_element *,
492 const char *,
493 std::string *,
494 int, int);
495
496 /* This routine takes a line of TEXT and a CLIST in which to start the
497 lookup. When it returns it will have incremented the text pointer past
498 the section of text it matched, set *RESULT_LIST to point to the list in
499 which the last word was matched, and will return a pointer to the cmd
500 list element which the text matches. It will return NULL if no match at
501 all was possible. It will return -1 (cast appropriately, ick) if ambigous
502 matches are possible; in this case *RESULT_LIST will be set to point to
503 the list in which there are ambiguous choices (and *TEXT will be set to
504 the ambiguous text string).
505
506 if DEFAULT_ARGS is not null, *DEFAULT_ARGS is set to the found command
507 default args (possibly empty).
508
509 If the located command was an abbreviation, this routine returns the base
510 command of the abbreviation. Note that *DEFAULT_ARGS will contain the
511 default args defined for the alias.
512
513 It does no error reporting whatsoever; control will always return
514 to the superior routine.
515
516 In the case of an ambiguous return (-1), *RESULT_LIST will be set to point
517 at the prefix_command (ie. the best match) *or* (special case) will be NULL
518 if no prefix command was ever found. For example, in the case of "info a",
519 "info" matches without ambiguity, but "a" could be "args" or "address", so
520 *RESULT_LIST is set to the cmd_list_element for "info". So in this case
521 RESULT_LIST should not be interpreted as a pointer to the beginning of a
522 list; it simply points to a specific command. In the case of an ambiguous
523 return *TEXT is advanced past the last non-ambiguous prefix (e.g.
524 "info t" can be "info types" or "info target"; upon return *TEXT has been
525 advanced past "info ").
526
527 If RESULT_LIST is NULL, don't set *RESULT_LIST (but don't otherwise
528 affect the operation).
529
530 This routine does *not* modify the text pointed to by TEXT.
531
532 If IGNORE_HELP_CLASSES is nonzero, ignore any command list elements which
533 are actually help classes rather than commands (i.e. the function field of
534 the struct cmd_list_element is NULL).
535
536 When LOOKUP_FOR_COMPLETION_P is true the completion is being requested
537 for the completion engine, no warnings should be printed. */
538
539 extern struct cmd_list_element *lookup_cmd_1
540 (const char **text, struct cmd_list_element *clist,
541 struct cmd_list_element **result_list, std::string *default_args,
542 int ignore_help_classes, bool lookup_for_completion_p = false);
543
544 /* Look up the command called NAME in the command list LIST.
545
546 Unlike LOOKUP_CMD, partial matches are ignored and only exact matches
547 on NAME are considered.
548
549 LIST is a chain of struct cmd_list_element's.
550
551 If IGNORE_HELP_CLASSES is true (the default), ignore any command list
552 elements which are actually help classes rather than commands (i.e.
553 the function field of the struct cmd_list_element is null).
554
555 If found, return the struct cmd_list_element for that command,
556 otherwise return NULLPTR. */
557
558 extern struct cmd_list_element *lookup_cmd_exact
559 (const char *name,
560 struct cmd_list_element *list,
561 bool ignore_help_classes = true);
562
563 extern struct cmd_list_element *deprecate_cmd (struct cmd_list_element *,
564 const char * );
565
566 extern void deprecated_cmd_warning (const char *, struct cmd_list_element *);
567
568 extern int lookup_cmd_composition (const char *text,
569 struct cmd_list_element **alias,
570 struct cmd_list_element **prefix_cmd,
571 struct cmd_list_element **cmd);
572
573 extern struct cmd_list_element *add_com (const char *, enum command_class,
574 cmd_simple_func_ftype *fun,
575 const char *);
576
577 extern cmd_list_element *add_com_alias (const char *name,
578 cmd_list_element *target,
579 command_class theclass,
580 int abbrev_flag);
581
582 extern struct cmd_list_element *add_com_suppress_notification
583 (const char *name, enum command_class theclass,
584 cmd_simple_func_ftype *fun, const char *doc,
585 int *supress_notification);
586
587 extern struct cmd_list_element *add_info (const char *,
588 cmd_simple_func_ftype *fun,
589 const char *);
590
591 extern cmd_list_element *add_info_alias (const char *name,
592 cmd_list_element *target,
593 int abbrev_flag);
594
595 extern void complete_on_cmdlist (struct cmd_list_element *,
596 completion_tracker &tracker,
597 const char *, const char *, int);
598
599 extern void complete_on_enum (completion_tracker &tracker,
600 const char *const *enumlist,
601 const char *, const char *);
602
603 /* Functions that implement commands about CLI commands. */
604
605 extern void help_list (struct cmd_list_element *, const char *,
606 enum command_class, struct ui_file *);
607
608 /* Method for show a set/show variable's VALUE on FILE. If this
609 method isn't supplied deprecated_show_value_hack() is called (which
610 is not good). */
611 typedef void (show_value_ftype) (struct ui_file *file,
612 int from_tty,
613 struct cmd_list_element *cmd,
614 const char *value);
615 /* NOTE: i18n: This function is not i18n friendly. Callers should
616 instead print the value out directly. */
617 extern show_value_ftype deprecated_show_value_hack;
618
619 /* Return value type for the add_setshow_* functions. */
620
621 struct set_show_commands
622 {
623 cmd_list_element *set, *show;
624 };
625
626 extern set_show_commands add_setshow_enum_cmd
627 (const char *name, command_class theclass, const char *const *enumlist,
628 const char **var, const char *set_doc, const char *show_doc,
629 const char *help_doc, cmd_func_ftype *set_func,
630 show_value_ftype *show_func, cmd_list_element **set_list,
631 cmd_list_element **show_list);
632
633 extern set_show_commands add_setshow_enum_cmd
634 (const char *name, command_class theclass, const char *const *enumlist,
635 const char *set_doc, const char *show_doc,
636 const char *help_doc, setting_setter_ftype<const char *> set_func,
637 setting_getter_ftype<const char *> get_func, show_value_ftype *show_func,
638 cmd_list_element **set_list, cmd_list_element **show_list);
639
640 extern set_show_commands add_setshow_auto_boolean_cmd
641 (const char *name, command_class theclass, auto_boolean *var,
642 const char *set_doc, const char *show_doc, const char *help_doc,
643 cmd_func_ftype *set_func, show_value_ftype *show_func,
644 cmd_list_element **set_list, cmd_list_element **show_list);
645
646 extern set_show_commands add_setshow_auto_boolean_cmd
647 (const char *name, command_class theclass, const char *set_doc,
648 const char *show_doc, const char *help_doc,
649 setting_setter_ftype<enum auto_boolean> set_func,
650 setting_getter_ftype<enum auto_boolean> get_func,
651 show_value_ftype *show_func, cmd_list_element **set_list,
652 cmd_list_element **show_list);
653
654 extern set_show_commands add_setshow_boolean_cmd
655 (const char *name, command_class theclass, bool *var, const char *set_doc,
656 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
657 show_value_ftype *show_func, cmd_list_element **set_list,
658 cmd_list_element **show_list);
659
660 extern set_show_commands add_setshow_boolean_cmd
661 (const char *name, command_class theclass, const char *set_doc,
662 const char *show_doc, const char *help_doc,
663 setting_setter_ftype<bool> set_func,
664 setting_getter_ftype<bool> get_func, show_value_ftype *show_func,
665 cmd_list_element **set_list, cmd_list_element **show_list);
666
667 extern set_show_commands add_setshow_filename_cmd
668 (const char *name, command_class theclass, std::string *var, const char *set_doc,
669 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
670 show_value_ftype *show_func, cmd_list_element **set_list,
671 cmd_list_element **show_list);
672
673 extern set_show_commands add_setshow_filename_cmd
674 (const char *name, command_class theclass, const char *set_doc,
675 const char *show_doc, const char *help_doc,
676 setting_setter_ftype<std::string> set_func,
677 setting_getter_ftype<std::string> get_func, show_value_ftype *show_func,
678 cmd_list_element **set_list, cmd_list_element **show_list);
679
680 extern set_show_commands add_setshow_string_cmd
681 (const char *name, command_class theclass, std::string *var, const char *set_doc,
682 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
683 show_value_ftype *show_func, cmd_list_element **set_list,
684 cmd_list_element **show_list);
685
686 extern set_show_commands add_setshow_string_cmd
687 (const char *name, command_class theclass, const char *set_doc,
688 const char *show_doc, const char *help_doc,
689 setting_setter_ftype<std::string> set_func,
690 setting_getter_ftype<std::string> get_func,
691 show_value_ftype *show_func, cmd_list_element **set_list,
692 cmd_list_element **show_list);
693
694 extern set_show_commands add_setshow_string_noescape_cmd
695 (const char *name, command_class theclass, std::string *var, const char *set_doc,
696 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
697 show_value_ftype *show_func, cmd_list_element **set_list,
698 cmd_list_element **show_list);
699
700 extern set_show_commands add_setshow_string_noescape_cmd
701 (const char *name, command_class theclass, const char *set_doc,
702 const char *show_doc, const char *help_doc,
703 setting_setter_ftype<std::string> set_func,
704 setting_getter_ftype<std::string> get_func, show_value_ftype *show_func,
705 cmd_list_element **set_list, cmd_list_element **show_list);
706
707 extern set_show_commands add_setshow_optional_filename_cmd
708 (const char *name, command_class theclass, std::string *var, const char *set_doc,
709 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
710 show_value_ftype *show_func, cmd_list_element **set_list,
711 cmd_list_element **show_list);
712
713 extern set_show_commands add_setshow_optional_filename_cmd
714 (const char *name, command_class theclass, const char *set_doc,
715 const char *show_doc, const char *help_doc,
716 setting_setter_ftype<std::string> set_func,
717 setting_getter_ftype<std::string> get_func,
718 show_value_ftype *show_func, cmd_list_element **set_list,
719 cmd_list_element **show_list);
720
721 extern set_show_commands add_setshow_integer_cmd
722 (const char *name, command_class theclass, int *var, const char *set_doc,
723 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
724 show_value_ftype *show_func, cmd_list_element **set_list,
725 cmd_list_element **show_list);
726
727 extern set_show_commands add_setshow_integer_cmd
728 (const char *name, command_class theclass, const char *set_doc,
729 const char *show_doc, const char *help_doc,
730 setting_setter_ftype<int> set_func,
731 setting_getter_ftype<int> get_func, show_value_ftype *show_func,
732 cmd_list_element **set_list, cmd_list_element **show_list);
733
734 extern set_show_commands add_setshow_uinteger_cmd
735 (const char *name, command_class theclass, unsigned int *var,
736 const char *set_doc, const char *show_doc, const char *help_doc,
737 cmd_func_ftype *set_func, show_value_ftype *show_func,
738 cmd_list_element **set_list, cmd_list_element **show_list);
739
740 extern set_show_commands add_setshow_uinteger_cmd
741 (const char *name, command_class theclass, const char *set_doc,
742 const char *show_doc, const char *help_doc,
743 setting_setter_ftype<unsigned int> set_func,
744 setting_getter_ftype<unsigned int> get_func, show_value_ftype *show_func,
745 cmd_list_element **set_list, cmd_list_element **show_list);
746
747 extern set_show_commands add_setshow_zinteger_cmd
748 (const char *name, command_class theclass, int *var, const char *set_doc,
749 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
750 show_value_ftype *show_func, cmd_list_element **set_list,
751 cmd_list_element **show_list);
752
753 extern set_show_commands add_setshow_zinteger_cmd
754 (const char *name, command_class theclass, const char *set_doc,
755 const char *show_doc, const char *help_doc,
756 setting_setter_ftype<int> set_func,
757 setting_getter_ftype<int> get_func, show_value_ftype *show_func,
758 cmd_list_element **set_list, cmd_list_element **show_list);
759
760 extern set_show_commands add_setshow_zuinteger_cmd
761 (const char *name, command_class theclass, unsigned int *var,
762 const char *set_doc, const char *show_doc, const char *help_doc,
763 cmd_func_ftype *set_func, show_value_ftype *show_func,
764 cmd_list_element **set_list, cmd_list_element **show_list);
765
766 extern set_show_commands add_setshow_zuinteger_cmd
767 (const char *name, command_class theclass, const char *set_doc,
768 const char *show_doc, const char *help_doc,
769 setting_setter_ftype<unsigned int> set_func,
770 setting_getter_ftype<unsigned int> get_func, show_value_ftype *show_func,
771 cmd_list_element **set_list, cmd_list_element **show_list);
772
773 extern set_show_commands add_setshow_zuinteger_unlimited_cmd
774 (const char *name, command_class theclass, int *var, const char *set_doc,
775 const char *show_doc, const char *help_doc, cmd_func_ftype *set_func,
776 show_value_ftype *show_func, cmd_list_element **set_list,
777 cmd_list_element **show_list);
778
779 extern set_show_commands add_setshow_zuinteger_unlimited_cmd
780 (const char *name, command_class theclass, const char *set_doc,
781 const char *show_doc, const char *help_doc,
782 setting_setter_ftype<int> set_func, setting_getter_ftype<int> get_func,
783 show_value_ftype *show_func, cmd_list_element **set_list,
784 cmd_list_element **show_list);
785
786 /* Do a "show" command for each thing on a command list. */
787
788 extern void cmd_show_list (struct cmd_list_element *, int);
789
790 /* Used everywhere whenever at least one parameter is required and
791 none is specified. */
792
793 extern void error_no_arg (const char *) ATTRIBUTE_NORETURN;
794
795
796 /* Command line saving and repetition.
797 Each input line executed is saved to possibly be repeated either
798 when the user types an empty line, or be repeated by a command
799 that wants to repeat the previously executed command. The below
800 functions control command repetition. */
801
802 /* Commands call dont_repeat if they do not want to be repeated by null
803 lines or by repeat_previous (). */
804
805 extern void dont_repeat ();
806
807 /* Commands call repeat_previous if they want to repeat the previous
808 command. Such commands that repeat the previous command must
809 indicate to not repeat themselves, to avoid recursive repeat.
810 repeat_previous marks the current command as not repeating, and
811 ensures get_saved_command_line returns the previous command, so
812 that the currently executing command can repeat it. If there's no
813 previous command, throws an error. Otherwise, returns the result
814 of get_saved_command_line, which now points at the command to
815 repeat. */
816
817 extern const char *repeat_previous ();
818
819 /* Prevent dont_repeat from working, and return a cleanup that
820 restores the previous state. */
821
822 extern scoped_restore_tmpl<int> prevent_dont_repeat (void);
823
824 /* Set the arguments that will be passed if the current command is
825 repeated. Note that the passed-in string must be a constant. */
826
827 extern void set_repeat_arguments (const char *args);
828
829 /* Returns the saved command line to repeat.
830 When a command is being executed, this is the currently executing
831 command line, unless the currently executing command has called
832 repeat_previous (): in this case, get_saved_command_line returns
833 the previously saved command line. */
834
835 extern char *get_saved_command_line ();
836
837 /* Takes a copy of CMD, for possible repetition. */
838
839 extern void save_command_line (const char *cmd);
840
841 /* Used to mark commands that don't do anything. If we just leave the
842 function field NULL, the command is interpreted as a help topic, or
843 as a class of commands. */
844
845 extern void not_just_help_class_command (const char *, int);
846
847 /* Call the command function. */
848 extern void cmd_func (struct cmd_list_element *cmd,
849 const char *args, int from_tty);
850
851 #endif /* !defined (COMMAND_H) */