Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / cli / cli-decode.h
CommitLineData
d318976c 1/* Header file for GDB command decoding library.
1bac305b 2
88b9d363 3 Copyright (C) 2000-2022 Free Software Foundation, Inc.
d318976c
FN
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
a9762ec7 7 the Free Software Foundation; either version 3 of the License, or
d318976c
FN
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
a9762ec7 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d318976c 17
1a5c2598
TT
18#ifndef CLI_CLI_DECODE_H
19#define CLI_CLI_DECODE_H
d318976c 20
50aeff07
PA
21/* This file defines the private interfaces for any code implementing
22 command internals. */
23
24/* Include the public interfaces. */
18a642a1 25#include "command.h"
2d7cc5c7 26#include "gdb_regex.h"
12973681 27#include "cli-script.h"
0d12e84c 28#include "completer.h"
8fe84d01 29
d318976c
FN
30/* Not a set/show command. Note that some commands which begin with
31 "set" or "show" might be in this category, if their syntax does
32 not fall into one of the following categories. */
cd4c4c07
TT
33enum cmd_types
34{
35 not_set_cmd,
36 set_cmd,
37 show_cmd
38};
d318976c
FN
39
40/* This structure records one command'd definition. */
41
42
d318976c 43struct cmd_list_element
64f30eb0
SM
44{
45 cmd_list_element (const char *name_, enum command_class theclass_,
46 const char *doc_)
47 : name (name_),
48 theclass (theclass_),
49 cmd_deprecated (0),
50 deprecated_warn_user (0),
51 malloced_replacement (0),
52 doc_allocated (0),
53 name_allocated (0),
54 hook_in (0),
55 allow_unknown (0),
56 abbrev_flag (0),
57 type (not_set_cmd),
58 var_type (var_boolean),
59 doc (doc_)
d318976c 60 {
64f30eb0
SM
61 memset (&function, 0, sizeof (function));
62 }
e2fc72e2 63
64f30eb0
SM
64 ~cmd_list_element ()
65 {
66 if (doc && doc_allocated)
67 xfree ((char *) doc);
68 if (name_allocated)
69 xfree ((char *) name);
70 }
71
72 DISABLE_COPY_AND_ASSIGN (cmd_list_element);
73
2f822da5
MB
74 /* For prefix commands, return a string containing prefix commands to
75 get here: this one plus any others needed to get to it. Ends in a
76 space. It is used before the word "command" in describing the
77 commands reached through this prefix.
78
413b49c2
SM
79 For non-prefix commands, return an empty string. */
80 std::string prefixname () const;
64f30eb0 81
1be99b11
SM
82 /* Return true if this command is an alias of another command. */
83 bool is_alias () const
84 { return this->alias_target != nullptr; }
85
3d0b3564
SM
86 /* Return true if this command is a prefix command. */
87 bool is_prefix () const
88 { return this->subcommands != nullptr; }
89
034dce7a
SM
90 /* Return true if this command is a "command class help" command. For
91 instance, a "stack" dummy command is registered so that one can do
92 "help stack" and show help for all commands of the "stack" class. */
93 bool is_command_class_help () const
94 { return this->func == nullptr; }
95
0f8e2034 96 void set_context (void *context)
d6ff04a3
SM
97 {
98 gdb_assert (m_context == nullptr);
99 m_context = context;
100 }
0f8e2034
SM
101
102 void *context () const
103 { return m_context; }
104
64f30eb0
SM
105 /* Points to next command in this list. */
106 struct cmd_list_element *next = nullptr;
107
108 /* Name of this command. */
109 const char *name;
e2fc72e2 110
64f30eb0
SM
111 /* Command class; class values are chosen by application program. */
112 enum command_class theclass;
e2fc72e2 113
64f30eb0
SM
114 /* When 1 indicated that this command is deprecated. It may be
115 removed from gdb's command set in the future. */
e2fc72e2 116
64f30eb0 117 unsigned int cmd_deprecated : 1;
d318976c 118
64f30eb0
SM
119 /* The user needs to be warned that this is a deprecated command.
120 The user should only be warned the first time a command is
121 used. */
d318976c 122
64f30eb0 123 unsigned int deprecated_warn_user : 1;
d318976c 124
64f30eb0
SM
125 /* When functions are deprecated at compile time (this is the way
126 it should, in general, be done) the memory containing the
127 replacement string is statically allocated. In some cases it
128 makes sense to deprecate commands at runtime (the testsuite is
129 one example). In this case the memory for replacement is
130 malloc'ed. When a command is undeprecated or re-deprecated at
131 runtime we don't want to risk calling free on statically
132 allocated memory, so we check this flag. */
9ea4267d 133
64f30eb0 134 unsigned int malloced_replacement : 1;
9ea4267d 135
64f30eb0 136 /* Set if the doc field should be xfree'd. */
9ea4267d 137
64f30eb0 138 unsigned int doc_allocated : 1;
9ea4267d 139
64f30eb0 140 /* Set if the name field should be xfree'd. */
9ea4267d 141
64f30eb0
SM
142 unsigned int name_allocated : 1;
143
144 /* Flag that specifies if this command is already running its hook. */
145 /* Prevents the possibility of hook recursion. */
146 unsigned int hook_in : 1;
147
148 /* For prefix commands only:
149 nonzero means do not get an error if subcommand is not
150 recognized; call the prefix's own function in that case. */
151 unsigned int allow_unknown : 1;
152
153 /* Nonzero says this is an abbreviation, and should not
154 be mentioned in lists of commands.
155 This allows "br<tab>" to complete to "break", which it
156 otherwise wouldn't. */
157 unsigned int abbrev_flag : 1;
158
159 /* Type of "set" or "show" command (or SET_NOT_SET if not "set"
160 or "show"). */
161 ENUM_BITFIELD (cmd_types) type : 2;
162
163 /* What kind of variable is *VAR? */
164 ENUM_BITFIELD (var_types) var_type : 4;
165
166 /* Function definition of this command. NULL for command class
167 names and for help topics that are not really commands. NOTE:
168 cagney/2002-02-02: This function signature is evolving. For
169 the moment suggest sticking with either set_cmd_cfunc() or
170 set_cmd_sfunc(). */
171 void (*func) (struct cmd_list_element *c, const char *args, int from_tty)
172 = nullptr;
173 /* The command's real callback. At present func() bounces through
174 to one of the below. */
175 union
176 {
177 /* If type is not_set_cmd, call it like this: */
178 cmd_const_cfunc_ftype *const_cfunc;
179 /* If type is set_cmd or show_cmd, first set the variables,
180 and then call this: */
181 cmd_const_sfunc_ftype *sfunc;
182 }
183 function;
184
64f30eb0
SM
185 /* Documentation of this command (or help topic).
186 First line is brief documentation; remaining lines form, with it,
187 the full documentation. First line should end with a period.
188 Entire string should also end with a period, not a newline. */
189 const char *doc;
190
191 /* For set/show commands. A method for printing the output to the
192 specified stream. */
193 show_value_ftype *show_value_func = nullptr;
194
195 /* If this command is deprecated, this is the replacement name. */
196 const char *replacement = nullptr;
197
64f30eb0
SM
198 /* Hook for another command to be executed before this command. */
199 struct cmd_list_element *hook_pre = nullptr;
200
201 /* Hook for another command to be executed after this command. */
202 struct cmd_list_element *hook_post = nullptr;
203
204 /* Default arguments to automatically prepend to the user
205 provided arguments when running this command or alias. */
206 std::string default_args;
207
208 /* Nonzero identifies a prefix command. For them, the address
209 of the variable containing the list of subcommands. */
14b42fc4 210 struct cmd_list_element **subcommands = nullptr;
64f30eb0 211
64f30eb0
SM
212 /* The prefix command of this command. */
213 struct cmd_list_element *prefix = nullptr;
214
215 /* Completion routine for this command. */
216 completer_ftype *completer = symbol_completer;
217
218 /* Handle the word break characters for this completer. Usually
219 this function need not be defined, but for some types of
220 completers (e.g., Python completers declared as methods inside
221 a class) the word break chars may need to be redefined
222 depending on the completer type (e.g., for filename
223 completers). */
224 completer_handle_brkchars_ftype *completer_handle_brkchars = nullptr;
225
226 /* Destruction routine for this command. If non-NULL, this is
227 called when this command instance is destroyed. This may be
228 used to finalize the CONTEXT field, if needed. */
229 void (*destroyer) (struct cmd_list_element *self, void *context) = nullptr;
230
231 /* Pointer to variable affected by "set" and "show". Doesn't
232 matter if type is not_set. */
233 void *var = nullptr;
234
235 /* Pointer to NULL terminated list of enumerated values (like
236 argv). */
237 const char *const *enums = nullptr;
238
239 /* Pointer to command strings of user-defined commands */
240 counted_command_line user_commands;
241
242 /* Pointer to command that is hooked by this one, (by hook_pre)
243 so the hook can be removed when this one is deleted. */
244 struct cmd_list_element *hookee_pre = nullptr;
245
246 /* Pointer to command that is hooked by this one, (by hook_post)
247 so the hook can be removed when this one is deleted. */
248 struct cmd_list_element *hookee_post = nullptr;
249
250 /* Pointer to command that is aliased by this one, so the
251 aliased command can be located in case it has been hooked. */
99858724 252 struct cmd_list_element *alias_target = nullptr;
64f30eb0
SM
253
254 /* Start of a linked list of all aliases of this command. */
255 struct cmd_list_element *aliases = nullptr;
256
257 /* Link pointer for aliases on an alias list. */
258 struct cmd_list_element *alias_chain = nullptr;
259
260 /* If non-null, the pointer to a field in 'struct
261 cli_suppress_notification', which will be set to true in cmd_func
262 when this command is being executed. It will be set back to false
263 when the command has been executed. */
264 int *suppress_notification = nullptr;
0f8e2034
SM
265
266private:
267 /* Local state (context) for this command. This can be anything. */
268 void *m_context = nullptr;
64f30eb0 269};
d318976c 270
ebcd3b23 271/* Functions that implement commands about CLI commands. */
d318976c 272
64669f3b 273extern void help_cmd (const char *, struct ui_file *);
d318976c 274
d318976c 275extern void apropos_cmd (struct ui_file *, struct cmd_list_element *,
66d8c862 276 bool verbose, compiled_regex &, const char *);
d318976c
FN
277
278/* Used to mark commands that don't do anything. If we just leave the
279 function field NULL, the command is interpreted as a help topic, or
280 as a class of commands. */
281
eb7c454d 282extern void not_just_help_class_command (const char *arg, int from_tty);
d318976c 283
590042fc
PW
284/* Print only the first line of STR on STREAM.
285 FOR_VALUE_PREFIX true indicates that the first line is output
286 to be a prefix to show a value (see deprecated_show_value_hack):
287 the first character is printed in uppercase, and the trailing
288 dot character is not printed. */
289
290extern void print_doc_line (struct ui_file *stream, const char *str,
291 bool for_value_prefix);
d318976c 292
9d0faba9
PA
293/* The enums of boolean commands. */
294extern const char * const boolean_enums[];
295
296/* The enums of auto-boolean commands. */
5b9afe8a 297extern const char * const auto_boolean_enums[];
d318976c 298
a9f116cb
GKB
299/* Verify whether a given cmd_list_element is a user-defined command.
300 Return 1 if it is user-defined. Return 0 otherwise. */
301
302extern int cli_user_command_p (struct cmd_list_element *);
303
604c4576
JG
304extern int find_command_name_length (const char *);
305
1a5c2598 306#endif /* CLI_CLI_DECODE_H */
This page took 1.508695 seconds and 4 git commands to generate.