]>
Commit | Line | Data |
---|---|---|
d318976c | 1 | /* GDB CLI command scripting. |
8926118c | 2 | |
d01e8234 | 3 | Copyright (C) 1986-2025 Free Software Foundation, Inc. |
d318976c FN |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
d318976c FN |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
d318976c | 19 | |
e5dc0d5d | 20 | #include "event-top.h" |
d318976c | 21 | #include "value.h" |
d318976c FN |
22 | #include <ctype.h> |
23 | ||
d318976c | 24 | #include "ui-out.h" |
d318976c | 25 | #include "top.h" |
13d03262 | 26 | #include "ui.h" |
40c03ae8 | 27 | #include "breakpoint.h" |
8588b356 | 28 | #include "tracepoint.h" |
d318976c FN |
29 | #include "cli/cli-cmds.h" |
30 | #include "cli/cli-decode.h" | |
31 | #include "cli/cli-script.h" | |
c6ac7fc9 | 32 | #include "cli/cli-style.h" |
d318976c | 33 | |
6dddc817 | 34 | #include "extension.h" |
b4a14fd0 | 35 | #include "interps.h" |
bb2ec1b3 | 36 | #include "compile/compile.h" |
8082468f | 37 | #include <string_view> |
8588b356 SM |
38 | #include "python/python.h" |
39 | #include "guile/guile.h" | |
d57a3c85 | 40 | |
df3ee9ca PA |
41 | #include <vector> |
42 | ||
ebcd3b23 | 43 | /* Prototypes for local functions. */ |
d318976c | 44 | |
d318976c | 45 | static enum command_control_type |
60b3cef2 | 46 | recurse_read_control_structure |
f8631e5e | 47 | (read_next_line_ftype read_next_line_func, |
60b3cef2 TT |
48 | struct command_line *current_cmd, |
49 | gdb::function_view<void (const char *)> validator); | |
d318976c | 50 | |
7a2c85f2 TT |
51 | static void do_define_command (const char *comname, int from_tty, |
52 | const counted_command_line *commands); | |
53 | ||
a33fc9ae | 54 | static void do_document_command (const char *comname, int from_tty, |
287de656 | 55 | const counted_command_line *commands); |
a33fc9ae | 56 | |
f8631e5e | 57 | static const char *read_next_line (std::string &buffer); |
3c1179ff | 58 | |
16026cd7 | 59 | /* Level of control structure when reading. */ |
d318976c FN |
60 | static int control_level; |
61 | ||
16026cd7 AS |
62 | /* Level of control structure when executing. */ |
63 | static int command_nest_depth = 1; | |
64 | ||
65 | /* This is to prevent certain commands being printed twice. */ | |
66 | static int suppress_next_print_command_trace = 0; | |
67 | ||
8588b356 SM |
68 | /* Command element for the 'while' command. */ |
69 | static cmd_list_element *while_cmd_element = nullptr; | |
70 | ||
71 | /* Command element for the 'if' command. */ | |
72 | static cmd_list_element *if_cmd_element = nullptr; | |
73 | ||
74 | /* Command element for the 'define' command. */ | |
75 | static cmd_list_element *define_cmd_element = nullptr; | |
76 | ||
a33fc9ae RK |
77 | /* Command element for the 'document' command. */ |
78 | static cmd_list_element *document_cmd_element = nullptr; | |
79 | ||
d318976c | 80 | /* Structure for arguments to user defined functions. */ |
df3ee9ca PA |
81 | |
82 | class user_args | |
83 | { | |
84 | public: | |
85 | /* Save the command line and store the locations of arguments passed | |
86 | to the user defined function. */ | |
87 | explicit user_args (const char *line); | |
88 | ||
89 | /* Insert the stored user defined arguments into the $arg arguments | |
90 | found in LINE. */ | |
91 | std::string insert_args (const char *line) const; | |
92 | ||
93 | private: | |
94 | /* Disable copy/assignment. (Since the elements of A point inside | |
95 | COMMAND, copying would need to reconstruct the A vector in the | |
96 | new copy.) */ | |
97 | user_args (const user_args &) =delete; | |
98 | user_args &operator= (const user_args &) =delete; | |
99 | ||
100 | /* It is necessary to store a copy of the command line to ensure | |
101 | that the arguments are not overwritten before they are used. */ | |
102 | std::string m_command_line; | |
103 | ||
104 | /* The arguments. Each element points inside M_COMMAND_LINE. */ | |
8082468f | 105 | std::vector<std::string_view> m_args; |
df3ee9ca PA |
106 | }; |
107 | ||
108 | /* The stack of arguments passed to user defined functions. We need a | |
109 | stack because user-defined functions can call other user-defined | |
110 | functions. */ | |
111 | static std::vector<std::unique_ptr<user_args>> user_args_stack; | |
112 | ||
113 | /* An RAII-base class used to push/pop args on the user args | |
114 | stack. */ | |
115 | struct scoped_user_args_level | |
116 | { | |
117 | /* Parse the command line and push the arguments in the user args | |
118 | stack. */ | |
119 | explicit scoped_user_args_level (const char *line) | |
d318976c | 120 | { |
df3ee9ca | 121 | user_args_stack.emplace_back (new user_args (line)); |
d318976c | 122 | } |
df3ee9ca PA |
123 | |
124 | /* Pop the current user arguments from the stack. */ | |
125 | ~scoped_user_args_level () | |
126 | { | |
127 | user_args_stack.pop_back (); | |
128 | } | |
129 | }; | |
d318976c FN |
130 | |
131 | \f | |
1e9c71b8 DE |
132 | /* Return non-zero if TYPE is a multi-line command (i.e., is terminated |
133 | by "end"). */ | |
134 | ||
135 | static int | |
136 | multi_line_command_p (enum command_control_type type) | |
137 | { | |
138 | switch (type) | |
139 | { | |
140 | case if_control: | |
141 | case while_control: | |
142 | case while_stepping_control: | |
143 | case commands_control: | |
bb2ec1b3 | 144 | case compile_control: |
1e9c71b8 | 145 | case python_control: |
ed3ef339 | 146 | case guile_control: |
7a2c85f2 | 147 | case define_control: |
a33fc9ae | 148 | case document_control: |
1e9c71b8 DE |
149 | return 1; |
150 | default: | |
151 | return 0; | |
152 | } | |
153 | } | |
154 | ||
d318976c FN |
155 | /* Allocate, initialize a new command line structure for one of the |
156 | control commands (if/while). */ | |
157 | ||
bb6203bf | 158 | static command_line_up |
604c4576 | 159 | build_command_line (enum command_control_type type, const char *args) |
d318976c | 160 | { |
7a2c85f2 TT |
161 | if (args == NULL || *args == '\0') |
162 | { | |
163 | if (type == if_control) | |
164 | error (_("if command requires an argument.")); | |
165 | else if (type == while_control) | |
166 | error (_("while command requires an argument.")); | |
167 | else if (type == define_control) | |
168 | error (_("define command requires an argument.")); | |
a33fc9ae RK |
169 | else if (type == document_control) |
170 | error (_("document command requires an argument.")); | |
7a2c85f2 | 171 | } |
c8c12293 | 172 | gdb_assert (args != NULL); |
d318976c | 173 | |
bb6203bf | 174 | return command_line_up (new command_line (type, xstrdup (args))); |
d318976c FN |
175 | } |
176 | ||
177 | /* Build and return a new command structure for the control commands | |
178 | such as "if" and "while". */ | |
179 | ||
12973681 | 180 | counted_command_line |
a121b7c1 | 181 | get_command_line (enum command_control_type type, const char *arg) |
d318976c | 182 | { |
d318976c | 183 | /* Allocate and build a new command line structure. */ |
bb6203bf | 184 | counted_command_line cmd (build_command_line (type, arg).release (), |
12973681 | 185 | command_lines_deleter ()); |
d318976c FN |
186 | |
187 | /* Read in the body of this command. */ | |
60b3cef2 | 188 | if (recurse_read_control_structure (read_next_line, cmd.get (), 0) |
a7bdde9e | 189 | == invalid_control) |
d318976c | 190 | { |
40c03ae8 | 191 | warning (_("Error reading in canned sequence of commands.")); |
d318976c FN |
192 | return NULL; |
193 | } | |
194 | ||
d318976c FN |
195 | return cmd; |
196 | } | |
197 | ||
198 | /* Recursively print a command (including full control structures). */ | |
8926118c | 199 | |
d318976c FN |
200 | void |
201 | print_command_lines (struct ui_out *uiout, struct command_line *cmd, | |
202 | unsigned int depth) | |
203 | { | |
204 | struct command_line *list; | |
205 | ||
206 | list = cmd; | |
207 | while (list) | |
208 | { | |
d318976c | 209 | if (depth) |
112e8700 | 210 | uiout->spaces (2 * depth); |
d318976c FN |
211 | |
212 | /* A simple command, print it and continue. */ | |
213 | if (list->control_type == simple_control) | |
214 | { | |
112e8700 SM |
215 | uiout->field_string (NULL, list->line); |
216 | uiout->text ("\n"); | |
d318976c FN |
217 | list = list->next; |
218 | continue; | |
219 | } | |
220 | ||
221 | /* loop_continue to jump to the start of a while loop, print it | |
dda83cd7 | 222 | and continue. */ |
d318976c FN |
223 | if (list->control_type == continue_control) |
224 | { | |
112e8700 SM |
225 | uiout->field_string (NULL, "loop_continue"); |
226 | uiout->text ("\n"); | |
d318976c FN |
227 | list = list->next; |
228 | continue; | |
229 | } | |
230 | ||
ebcd3b23 MS |
231 | /* loop_break to break out of a while loop, print it and |
232 | continue. */ | |
d318976c FN |
233 | if (list->control_type == break_control) |
234 | { | |
112e8700 SM |
235 | uiout->field_string (NULL, "loop_break"); |
236 | uiout->text ("\n"); | |
d318976c FN |
237 | list = list->next; |
238 | continue; | |
239 | } | |
240 | ||
ebcd3b23 MS |
241 | /* A while command. Recursively print its subcommands and |
242 | continue. */ | |
a7bdde9e VP |
243 | if (list->control_type == while_control |
244 | || list->control_type == while_stepping_control) | |
d318976c | 245 | { |
ebcd3b23 MS |
246 | /* For while-stepping, the line includes the 'while-stepping' |
247 | token. See comment in process_next_line for explanation. | |
248 | Here, take care not print 'while-stepping' twice. */ | |
a7bdde9e | 249 | if (list->control_type == while_control) |
112e8700 | 250 | uiout->field_fmt (NULL, "while %s", list->line); |
a7bdde9e | 251 | else |
112e8700 SM |
252 | uiout->field_string (NULL, list->line); |
253 | uiout->text ("\n"); | |
12973681 | 254 | print_command_lines (uiout, list->body_list_0.get (), depth + 1); |
d318976c | 255 | if (depth) |
112e8700 SM |
256 | uiout->spaces (2 * depth); |
257 | uiout->field_string (NULL, "end"); | |
258 | uiout->text ("\n"); | |
d318976c FN |
259 | list = list->next; |
260 | continue; | |
261 | } | |
262 | ||
ebcd3b23 | 263 | /* An if command. Recursively print both arms before |
30baf67b | 264 | continuing. */ |
d318976c FN |
265 | if (list->control_type == if_control) |
266 | { | |
112e8700 SM |
267 | uiout->field_fmt (NULL, "if %s", list->line); |
268 | uiout->text ("\n"); | |
ebcd3b23 | 269 | /* The true arm. */ |
12973681 | 270 | print_command_lines (uiout, list->body_list_0.get (), depth + 1); |
d318976c FN |
271 | |
272 | /* Show the false arm if it exists. */ | |
12973681 | 273 | if (list->body_list_1 != nullptr) |
d318976c FN |
274 | { |
275 | if (depth) | |
112e8700 SM |
276 | uiout->spaces (2 * depth); |
277 | uiout->field_string (NULL, "else"); | |
278 | uiout->text ("\n"); | |
12973681 | 279 | print_command_lines (uiout, list->body_list_1.get (), depth + 1); |
d318976c FN |
280 | } |
281 | ||
d318976c | 282 | if (depth) |
112e8700 SM |
283 | uiout->spaces (2 * depth); |
284 | uiout->field_string (NULL, "end"); | |
285 | uiout->text ("\n"); | |
d318976c FN |
286 | list = list->next; |
287 | continue; | |
288 | } | |
289 | ||
ebcd3b23 MS |
290 | /* A commands command. Print the breakpoint commands and |
291 | continue. */ | |
40c03ae8 EZ |
292 | if (list->control_type == commands_control) |
293 | { | |
294 | if (*(list->line)) | |
112e8700 | 295 | uiout->field_fmt (NULL, "commands %s", list->line); |
40c03ae8 | 296 | else |
112e8700 SM |
297 | uiout->field_string (NULL, "commands"); |
298 | uiout->text ("\n"); | |
12973681 | 299 | print_command_lines (uiout, list->body_list_0.get (), depth + 1); |
40c03ae8 | 300 | if (depth) |
112e8700 SM |
301 | uiout->spaces (2 * depth); |
302 | uiout->field_string (NULL, "end"); | |
303 | uiout->text ("\n"); | |
40c03ae8 EZ |
304 | list = list->next; |
305 | continue; | |
306 | } | |
307 | ||
d57a3c85 TJB |
308 | if (list->control_type == python_control) |
309 | { | |
112e8700 SM |
310 | uiout->field_string (NULL, "python"); |
311 | uiout->text ("\n"); | |
d57a3c85 | 312 | /* Don't indent python code at all. */ |
12973681 | 313 | print_command_lines (uiout, list->body_list_0.get (), 0); |
d57a3c85 | 314 | if (depth) |
112e8700 SM |
315 | uiout->spaces (2 * depth); |
316 | uiout->field_string (NULL, "end"); | |
317 | uiout->text ("\n"); | |
d57a3c85 TJB |
318 | list = list->next; |
319 | continue; | |
320 | } | |
321 | ||
bb2ec1b3 TT |
322 | if (list->control_type == compile_control) |
323 | { | |
112e8700 SM |
324 | uiout->field_string (NULL, "compile expression"); |
325 | uiout->text ("\n"); | |
12973681 | 326 | print_command_lines (uiout, list->body_list_0.get (), 0); |
bb2ec1b3 | 327 | if (depth) |
112e8700 SM |
328 | uiout->spaces (2 * depth); |
329 | uiout->field_string (NULL, "end"); | |
330 | uiout->text ("\n"); | |
bb2ec1b3 TT |
331 | list = list->next; |
332 | continue; | |
333 | } | |
334 | ||
ed3ef339 DE |
335 | if (list->control_type == guile_control) |
336 | { | |
112e8700 SM |
337 | uiout->field_string (NULL, "guile"); |
338 | uiout->text ("\n"); | |
12973681 | 339 | print_command_lines (uiout, list->body_list_0.get (), depth + 1); |
ed3ef339 | 340 | if (depth) |
112e8700 SM |
341 | uiout->spaces (2 * depth); |
342 | uiout->field_string (NULL, "end"); | |
343 | uiout->text ("\n"); | |
ed3ef339 DE |
344 | list = list->next; |
345 | continue; | |
346 | } | |
347 | ||
ebcd3b23 | 348 | /* Ignore illegal command type and try next. */ |
d318976c FN |
349 | list = list->next; |
350 | } /* while (list) */ | |
351 | } | |
d318976c | 352 | |
5913bcb0 AC |
353 | /* Handle pre-post hooks. */ |
354 | ||
a9921622 | 355 | class scoped_restore_hook_in |
5913bcb0 | 356 | { |
a9921622 | 357 | public: |
cdb27c12 | 358 | |
a9921622 TT |
359 | scoped_restore_hook_in (struct cmd_list_element *c) |
360 | : m_cmd (c) | |
361 | { | |
362 | } | |
363 | ||
364 | ~scoped_restore_hook_in () | |
365 | { | |
366 | m_cmd->hook_in = 0; | |
367 | } | |
368 | ||
369 | scoped_restore_hook_in (const scoped_restore_hook_in &) = delete; | |
370 | scoped_restore_hook_in &operator= (const scoped_restore_hook_in &) = delete; | |
371 | ||
372 | private: | |
373 | ||
374 | struct cmd_list_element *m_cmd; | |
375 | }; | |
5913bcb0 AC |
376 | |
377 | void | |
378 | execute_cmd_pre_hook (struct cmd_list_element *c) | |
379 | { | |
380 | if ((c->hook_pre) && (!c->hook_in)) | |
381 | { | |
a9921622 | 382 | scoped_restore_hook_in restore_hook (c); |
ebcd3b23 | 383 | c->hook_in = 1; /* Prevent recursive hooking. */ |
95a6b0a1 | 384 | execute_user_command (c->hook_pre, nullptr); |
5913bcb0 AC |
385 | } |
386 | } | |
387 | ||
388 | void | |
389 | execute_cmd_post_hook (struct cmd_list_element *c) | |
390 | { | |
391 | if ((c->hook_post) && (!c->hook_in)) | |
392 | { | |
a9921622 | 393 | scoped_restore_hook_in restore_hook (c); |
ebcd3b23 | 394 | c->hook_in = 1; /* Prevent recursive hooking. */ |
95a6b0a1 | 395 | execute_user_command (c->hook_post, nullptr); |
5913bcb0 AC |
396 | } |
397 | } | |
398 | ||
56bcdbea TT |
399 | /* See cli-script.h. */ |
400 | ||
401 | void | |
402 | execute_control_commands (struct command_line *cmdlines, int from_tty) | |
403 | { | |
56bcdbea TT |
404 | scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0); |
405 | scoped_restore save_nesting | |
406 | = make_scoped_restore (&command_nest_depth, command_nest_depth + 1); | |
407 | ||
408 | while (cmdlines) | |
409 | { | |
410 | enum command_control_type ret = execute_control_command (cmdlines, | |
411 | from_tty); | |
412 | if (ret != simple_control && ret != break_control) | |
413 | { | |
414 | warning (_("Error executing canned sequence of commands.")); | |
415 | break; | |
416 | } | |
417 | cmdlines = cmdlines->next; | |
418 | } | |
419 | } | |
420 | ||
421 | /* See cli-script.h. */ | |
422 | ||
423 | std::string | |
424 | execute_control_commands_to_string (struct command_line *commands, | |
e5348a7a | 425 | int from_tty, bool term_out) |
56bcdbea | 426 | { |
63a8c05f | 427 | std::string result; |
56bcdbea | 428 | |
63a8c05f TT |
429 | execute_fn_to_string (result, [&] () |
430 | { | |
431 | execute_control_commands (commands, from_tty); | |
e5348a7a | 432 | }, term_out); |
56bcdbea | 433 | |
63a8c05f | 434 | return result; |
56bcdbea TT |
435 | } |
436 | ||
d318976c | 437 | void |
95a6b0a1 | 438 | execute_user_command (struct cmd_list_element *c, const char *args) |
d318976c | 439 | { |
12973681 | 440 | counted_command_line cmdlines_copy; |
d318976c | 441 | |
12973681 TT |
442 | /* Ensure that the user commands can't be deleted while they are |
443 | executing. */ | |
444 | cmdlines_copy = c->user_commands; | |
445 | if (cmdlines_copy == 0) | |
d318976c FN |
446 | /* Null command */ |
447 | return; | |
12973681 | 448 | struct command_line *cmdlines = cmdlines_copy.get (); |
d318976c | 449 | |
df3ee9ca | 450 | scoped_user_args_level push_user_args (args); |
5fe41fbf | 451 | |
ac991630 | 452 | if (user_args_stack.size () > max_user_call_depth) |
8a3fe4f8 | 453 | error (_("Max user call depth exceeded -- command aborted.")); |
20f01a46 | 454 | |
8f9929bb GR |
455 | /* Set the instream to nullptr, indicating execution of a |
456 | user-defined function. */ | |
457 | scoped_restore restore_instream | |
458 | = make_scoped_restore (¤t_ui->instream, nullptr); | |
459 | ||
56bcdbea | 460 | execute_control_commands (cmdlines, 0); |
d318976c FN |
461 | } |
462 | ||
ebcd3b23 MS |
463 | /* This function is called every time GDB prints a prompt. It ensures |
464 | that errors and the like do not confuse the command tracing. */ | |
16026cd7 AS |
465 | |
466 | void | |
467 | reset_command_nest_depth (void) | |
468 | { | |
469 | command_nest_depth = 1; | |
470 | ||
471 | /* Just in case. */ | |
472 | suppress_next_print_command_trace = 0; | |
473 | } | |
474 | ||
475 | /* Print the command, prefixed with '+' to represent the call depth. | |
476 | This is slightly complicated because this function may be called | |
477 | from execute_command and execute_control_command. Unfortunately | |
478 | execute_command also prints the top level control commands. | |
479 | In these cases execute_command will call execute_control_command | |
480 | via while_command or if_command. Inner levels of 'if' and 'while' | |
481 | are dealt with directly. Therefore we can use these functions | |
482 | to determine whether the command has been printed already or not. */ | |
1263a9d5 | 483 | ATTRIBUTE_PRINTF (1, 2) |
16026cd7 | 484 | void |
1263a9d5 | 485 | print_command_trace (const char *fmt, ...) |
16026cd7 AS |
486 | { |
487 | int i; | |
488 | ||
489 | if (suppress_next_print_command_trace) | |
490 | { | |
491 | suppress_next_print_command_trace = 0; | |
492 | return; | |
493 | } | |
494 | ||
495 | if (!source_verbose && !trace_commands) | |
496 | return; | |
497 | ||
498 | for (i=0; i < command_nest_depth; i++) | |
6cb06a8c | 499 | gdb_printf ("+"); |
16026cd7 | 500 | |
1263a9d5 TT |
501 | va_list args; |
502 | ||
503 | va_start (args, fmt); | |
19a7b8ab | 504 | gdb_vprintf (fmt, args); |
1263a9d5 | 505 | va_end (args); |
0426ad51 | 506 | gdb_puts ("\n"); |
16026cd7 AS |
507 | } |
508 | ||
3a87ae65 SM |
509 | /* Helper for execute_control_command. */ |
510 | ||
511 | static enum command_control_type | |
56bcdbea | 512 | execute_control_command_1 (struct command_line *cmd, int from_tty) |
d318976c | 513 | { |
d318976c | 514 | struct command_line *current; |
d318976c FN |
515 | int loop; |
516 | enum command_control_type ret; | |
d318976c | 517 | |
4d2acc65 AC |
518 | /* Start by assuming failure, if a problem is detected, the code |
519 | below will simply "break" out of the switch. */ | |
520 | ret = invalid_control; | |
521 | ||
d318976c FN |
522 | switch (cmd->control_type) |
523 | { | |
524 | case simple_control: | |
b0646401 PA |
525 | { |
526 | /* A simple command, execute it and return. */ | |
01770bbd | 527 | std::string new_line = insert_user_defined_cmd_args (cmd->line); |
56bcdbea | 528 | execute_command (new_line.c_str (), from_tty); |
b0646401 PA |
529 | ret = cmd->control_type; |
530 | break; | |
531 | } | |
d318976c FN |
532 | |
533 | case continue_control: | |
16026cd7 AS |
534 | print_command_trace ("loop_continue"); |
535 | ||
536 | /* Return for "continue", and "break" so we can either | |
dda83cd7 | 537 | continue the loop at the top, or break out. */ |
16026cd7 AS |
538 | ret = cmd->control_type; |
539 | break; | |
540 | ||
d318976c | 541 | case break_control: |
16026cd7 AS |
542 | print_command_trace ("loop_break"); |
543 | ||
d318976c | 544 | /* Return for "continue", and "break" so we can either |
dda83cd7 | 545 | continue the loop at the top, or break out. */ |
d318976c FN |
546 | ret = cmd->control_type; |
547 | break; | |
548 | ||
549 | case while_control: | |
550 | { | |
1263a9d5 | 551 | print_command_trace ("while %s", cmd->line); |
16026cd7 | 552 | |
d318976c | 553 | /* Parse the loop control expression for the while statement. */ |
01770bbd | 554 | std::string new_line = insert_user_defined_cmd_args (cmd->line); |
4d01a485 | 555 | expression_up expr = parse_expression (new_line.c_str ()); |
d318976c FN |
556 | |
557 | ret = simple_control; | |
558 | loop = 1; | |
559 | ||
560 | /* Keep iterating so long as the expression is true. */ | |
561 | while (loop == 1) | |
562 | { | |
7ebaa5f7 | 563 | bool cond_result; |
d318976c FN |
564 | |
565 | QUIT; | |
566 | ||
567 | /* Evaluate the expression. */ | |
65558ca5 TT |
568 | { |
569 | scoped_value_mark mark; | |
43048e46 | 570 | value *val = expr->evaluate (); |
65558ca5 TT |
571 | cond_result = value_true (val); |
572 | } | |
d318976c FN |
573 | |
574 | /* If the value is false, then break out of the loop. */ | |
575 | if (!cond_result) | |
576 | break; | |
577 | ||
578 | /* Execute the body of the while statement. */ | |
12973681 | 579 | current = cmd->body_list_0.get (); |
d318976c FN |
580 | while (current) |
581 | { | |
b51b225e TT |
582 | scoped_restore save_nesting |
583 | = make_scoped_restore (&command_nest_depth, command_nest_depth + 1); | |
56bcdbea | 584 | ret = execute_control_command_1 (current, from_tty); |
d318976c FN |
585 | |
586 | /* If we got an error, or a "break" command, then stop | |
587 | looping. */ | |
588 | if (ret == invalid_control || ret == break_control) | |
589 | { | |
590 | loop = 0; | |
591 | break; | |
592 | } | |
593 | ||
594 | /* If we got a "continue" command, then restart the loop | |
595 | at this point. */ | |
596 | if (ret == continue_control) | |
597 | break; | |
598 | ||
599 | /* Get the next statement. */ | |
600 | current = current->next; | |
601 | } | |
602 | } | |
603 | ||
604 | /* Reset RET so that we don't recurse the break all the way down. */ | |
605 | if (ret == break_control) | |
606 | ret = simple_control; | |
607 | ||
608 | break; | |
609 | } | |
610 | ||
611 | case if_control: | |
612 | { | |
1263a9d5 | 613 | print_command_trace ("if %s", cmd->line); |
16026cd7 | 614 | |
d318976c | 615 | /* Parse the conditional for the if statement. */ |
01770bbd | 616 | std::string new_line = insert_user_defined_cmd_args (cmd->line); |
4d01a485 | 617 | expression_up expr = parse_expression (new_line.c_str ()); |
d318976c FN |
618 | |
619 | current = NULL; | |
620 | ret = simple_control; | |
621 | ||
622 | /* Evaluate the conditional. */ | |
65558ca5 TT |
623 | { |
624 | scoped_value_mark mark; | |
43048e46 | 625 | value *val = expr->evaluate (); |
65558ca5 TT |
626 | |
627 | /* Choose which arm to take commands from based on the value | |
628 | of the conditional expression. */ | |
629 | if (value_true (val)) | |
630 | current = cmd->body_list_0.get (); | |
631 | else if (cmd->body_list_1 != nullptr) | |
632 | current = cmd->body_list_1.get (); | |
633 | } | |
d318976c FN |
634 | |
635 | /* Execute commands in the given arm. */ | |
636 | while (current) | |
637 | { | |
b51b225e TT |
638 | scoped_restore save_nesting |
639 | = make_scoped_restore (&command_nest_depth, command_nest_depth + 1); | |
56bcdbea | 640 | ret = execute_control_command_1 (current, from_tty); |
d318976c FN |
641 | |
642 | /* If we got an error, get out. */ | |
643 | if (ret != simple_control) | |
644 | break; | |
645 | ||
646 | /* Get the next statement in the body. */ | |
647 | current = current->next; | |
648 | } | |
649 | ||
650 | break; | |
651 | } | |
1e9c71b8 | 652 | |
40c03ae8 EZ |
653 | case commands_control: |
654 | { | |
ebcd3b23 MS |
655 | /* Breakpoint commands list, record the commands in the |
656 | breakpoint's command list and return. */ | |
01770bbd | 657 | std::string new_line = insert_user_defined_cmd_args (cmd->line); |
b0646401 | 658 | ret = commands_from_control_command (new_line.c_str (), cmd); |
40c03ae8 EZ |
659 | break; |
660 | } | |
1e9c71b8 | 661 | |
bb2ec1b3 | 662 | case compile_control: |
c4375bc5 | 663 | #if defined(HAVE_COMPILE) |
5c65b58a JK |
664 | eval_compile_command (cmd, NULL, cmd->control_u.compile.scope, |
665 | cmd->control_u.compile.scope_data); | |
bb2ec1b3 | 666 | ret = simple_control; |
c4375bc5 GL |
667 | #else |
668 | error (_("compile support has not been compiled into gdb")); | |
669 | #endif | |
bb2ec1b3 TT |
670 | break; |
671 | ||
7a2c85f2 TT |
672 | case define_control: |
673 | print_command_trace ("define %s", cmd->line); | |
674 | do_define_command (cmd->line, 0, &cmd->body_list_0); | |
675 | ret = simple_control; | |
676 | break; | |
677 | ||
a33fc9ae RK |
678 | case document_control: |
679 | print_command_trace ("document %s", cmd->line); | |
680 | do_document_command (cmd->line, 0, &cmd->body_list_0); | |
681 | ret = simple_control; | |
682 | break; | |
683 | ||
d57a3c85 | 684 | case python_control: |
ed3ef339 | 685 | case guile_control: |
d57a3c85 | 686 | { |
6dddc817 | 687 | eval_ext_lang_from_control_command (cmd); |
d57a3c85 TJB |
688 | ret = simple_control; |
689 | break; | |
690 | } | |
d318976c FN |
691 | |
692 | default: | |
40c03ae8 | 693 | warning (_("Invalid control type in canned commands structure.")); |
4d2acc65 | 694 | break; |
d318976c FN |
695 | } |
696 | ||
d318976c FN |
697 | return ret; |
698 | } | |
699 | ||
3a87ae65 | 700 | enum command_control_type |
56bcdbea | 701 | execute_control_command (struct command_line *cmd, int from_tty) |
3a87ae65 | 702 | { |
65d1cd5f TV |
703 | if (!current_uiout->is_mi_like_p ()) |
704 | return execute_control_command_1 (cmd, from_tty); | |
705 | ||
3a87ae65 SM |
706 | /* Make sure we use the console uiout. It's possible that we are executing |
707 | breakpoint commands while running the MI interpreter. */ | |
708 | interp *console = interp_lookup (current_ui, INTERP_CONSOLE); | |
709 | scoped_restore save_uiout | |
29f94340 | 710 | = make_scoped_restore (¤t_uiout, console->interp_ui_out ()); |
3a87ae65 | 711 | |
56bcdbea | 712 | return execute_control_command_1 (cmd, from_tty); |
3a87ae65 SM |
713 | } |
714 | ||
d57a3c85 | 715 | /* Like execute_control_command, but first set |
ebcd3b23 | 716 | suppress_next_print_command_trace. */ |
d57a3c85 TJB |
717 | |
718 | enum command_control_type | |
719 | execute_control_command_untraced (struct command_line *cmd) | |
720 | { | |
721 | suppress_next_print_command_trace = 1; | |
722 | return execute_control_command (cmd); | |
723 | } | |
724 | ||
725 | ||
d318976c FN |
726 | /* "while" command support. Executes a body of statements while the |
727 | loop condition is nonzero. */ | |
728 | ||
2370e853 | 729 | static void |
0b39b52e | 730 | while_command (const char *arg, int from_tty) |
d318976c | 731 | { |
d318976c | 732 | control_level = 1; |
12973681 | 733 | counted_command_line command = get_command_line (while_control, arg); |
d318976c FN |
734 | |
735 | if (command == NULL) | |
736 | return; | |
737 | ||
b7b633e9 | 738 | scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0); |
b4a14fd0 | 739 | |
93921405 | 740 | execute_control_command_untraced (command.get ()); |
d318976c FN |
741 | } |
742 | ||
743 | /* "if" command support. Execute either the true or false arm depending | |
744 | on the value of the if conditional. */ | |
745 | ||
2370e853 | 746 | static void |
0b39b52e | 747 | if_command (const char *arg, int from_tty) |
d318976c | 748 | { |
d318976c | 749 | control_level = 1; |
12973681 | 750 | counted_command_line command = get_command_line (if_control, arg); |
d318976c FN |
751 | |
752 | if (command == NULL) | |
753 | return; | |
754 | ||
b7b633e9 | 755 | scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0); |
b4a14fd0 | 756 | |
93921405 | 757 | execute_control_command_untraced (command.get ()); |
d318976c FN |
758 | } |
759 | ||
df3ee9ca PA |
760 | /* Bind the incoming arguments for a user defined command to $arg0, |
761 | $arg1 ... $argN. */ | |
d318976c | 762 | |
df3ee9ca | 763 | user_args::user_args (const char *command_line) |
d318976c | 764 | { |
df3ee9ca | 765 | const char *p; |
d318976c | 766 | |
df3ee9ca PA |
767 | if (command_line == NULL) |
768 | return; | |
d318976c | 769 | |
df3ee9ca PA |
770 | m_command_line = command_line; |
771 | p = m_command_line.c_str (); | |
e28493f2 | 772 | |
d318976c FN |
773 | while (*p) |
774 | { | |
df3ee9ca | 775 | const char *start_arg; |
d318976c FN |
776 | int squote = 0; |
777 | int dquote = 0; | |
778 | int bsquote = 0; | |
779 | ||
d318976c FN |
780 | /* Strip whitespace. */ |
781 | while (*p == ' ' || *p == '\t') | |
782 | p++; | |
783 | ||
784 | /* P now points to an argument. */ | |
785 | start_arg = p; | |
d318976c FN |
786 | |
787 | /* Get to the end of this argument. */ | |
788 | while (*p) | |
789 | { | |
790 | if (((*p == ' ' || *p == '\t')) && !squote && !dquote && !bsquote) | |
791 | break; | |
792 | else | |
793 | { | |
794 | if (bsquote) | |
795 | bsquote = 0; | |
796 | else if (*p == '\\') | |
797 | bsquote = 1; | |
798 | else if (squote) | |
799 | { | |
800 | if (*p == '\'') | |
801 | squote = 0; | |
802 | } | |
803 | else if (dquote) | |
804 | { | |
805 | if (*p == '"') | |
806 | dquote = 0; | |
807 | } | |
808 | else | |
809 | { | |
810 | if (*p == '\'') | |
811 | squote = 1; | |
812 | else if (*p == '"') | |
813 | dquote = 1; | |
814 | } | |
815 | p++; | |
816 | } | |
817 | } | |
818 | ||
df3ee9ca | 819 | m_args.emplace_back (start_arg, p - start_arg); |
d318976c | 820 | } |
d318976c FN |
821 | } |
822 | ||
ebcd3b23 MS |
823 | /* Given character string P, return a point to the first argument |
824 | ($arg), or NULL if P contains no arguments. */ | |
d318976c | 825 | |
b0646401 PA |
826 | static const char * |
827 | locate_arg (const char *p) | |
d318976c FN |
828 | { |
829 | while ((p = strchr (p, '$'))) | |
830 | { | |
61012eef | 831 | if (startswith (p, "$arg") |
c03c782f | 832 | && (isdigit (p[4]) || p[4] == 'c')) |
d318976c FN |
833 | return p; |
834 | p++; | |
835 | } | |
836 | return NULL; | |
837 | } | |
838 | ||
01770bbd | 839 | /* See cli-script.h. */ |
d318976c | 840 | |
01770bbd PA |
841 | std::string |
842 | insert_user_defined_cmd_args (const char *line) | |
d318976c | 843 | { |
01770bbd | 844 | /* If we are not in a user-defined command, treat $argc, $arg0, et |
61d9b92f | 845 | cetera as normal convenience variables. */ |
df3ee9ca | 846 | if (user_args_stack.empty ()) |
b0646401 | 847 | return line; |
61d9b92f | 848 | |
df3ee9ca PA |
849 | const std::unique_ptr<user_args> &args = user_args_stack.back (); |
850 | return args->insert_args (line); | |
851 | } | |
852 | ||
853 | /* Insert the user defined arguments stored in user_args into the $arg | |
854 | arguments found in line. */ | |
855 | ||
856 | std::string | |
857 | user_args::insert_args (const char *line) const | |
858 | { | |
b0646401 PA |
859 | std::string new_line; |
860 | const char *p; | |
d318976c FN |
861 | |
862 | while ((p = locate_arg (line))) | |
863 | { | |
b0646401 | 864 | new_line.append (line, p - line); |
d318976c | 865 | |
c03c782f AS |
866 | if (p[4] == 'c') |
867 | { | |
df3ee9ca PA |
868 | new_line += std::to_string (m_args.size ()); |
869 | line = p + 5; | |
c03c782f AS |
870 | } |
871 | else | |
d318976c | 872 | { |
df3ee9ca PA |
873 | char *tmp; |
874 | unsigned long i; | |
875 | ||
876 | errno = 0; | |
877 | i = strtoul (p + 4, &tmp, 10); | |
878 | if ((i == 0 && tmp == p + 4) || errno != 0) | |
879 | line = p + 4; | |
880 | else if (i >= m_args.size ()) | |
881 | error (_("Missing argument %ld in user function."), i); | |
882 | else | |
883 | { | |
8345c4a2 | 884 | new_line.append (m_args[i].data (), m_args[i].length ()); |
df3ee9ca PA |
885 | line = tmp; |
886 | } | |
d318976c | 887 | } |
d318976c FN |
888 | } |
889 | /* Don't forget the tail. */ | |
b0646401 | 890 | new_line.append (line); |
d318976c | 891 | |
b0646401 | 892 | return new_line; |
d318976c FN |
893 | } |
894 | ||
895 | \f | |
2181a6c6 | 896 | /* Read next line from stdin. Passed to read_command_line_1 and |
3c1179ff | 897 | recurse_read_control_structure whenever we need to read commands |
2181a6c6 | 898 | from stdin. */ |
d318976c | 899 | |
992a7040 | 900 | static const char * |
f8631e5e | 901 | read_next_line (std::string &buffer) |
d318976c | 902 | { |
f38d3ad1 | 903 | struct ui *ui = current_ui; |
3c1179ff | 904 | char *prompt_ptr, control_prompt[256]; |
d318976c | 905 | int i = 0; |
268a799a | 906 | int from_tty = ui->instream == ui->stdin_stream; |
d318976c FN |
907 | |
908 | if (control_level >= 254) | |
8a3fe4f8 | 909 | error (_("Control nesting too deep!")); |
d318976c FN |
910 | |
911 | /* Set a prompt based on the nesting of the control commands. */ | |
268a799a | 912 | if (from_tty |
f38d3ad1 | 913 | || (ui->instream == 0 && deprecated_readline_hook != NULL)) |
d318976c FN |
914 | { |
915 | for (i = 0; i < control_level; i++) | |
916 | control_prompt[i] = ' '; | |
917 | control_prompt[i] = '>'; | |
918 | control_prompt[i + 1] = '\0'; | |
919 | prompt_ptr = (char *) &control_prompt[0]; | |
920 | } | |
921 | else | |
922 | prompt_ptr = NULL; | |
923 | ||
f8631e5e | 924 | return command_line_input (buffer, prompt_ptr, "commands"); |
3c1179ff VP |
925 | } |
926 | ||
604c4576 JG |
927 | /* Given an input line P, skip the command and return a pointer to the |
928 | first argument. */ | |
929 | ||
930 | static const char * | |
931 | line_first_arg (const char *p) | |
932 | { | |
933 | const char *first_arg = p + find_command_name_length (p); | |
934 | ||
f1735a53 | 935 | return skip_spaces (first_arg); |
604c4576 JG |
936 | } |
937 | ||
ebcd3b23 MS |
938 | /* Process one input line. If the command is an "end", return such an |
939 | indication to the caller. If PARSE_COMMANDS is true, strip leading | |
940 | whitespace (trailing whitespace is always stripped) in the line, | |
941 | attempt to recognize GDB control commands, and also return an | |
942 | indication if the command is an "else" or a nop. | |
943 | ||
3c1179ff VP |
944 | Otherwise, only "end" is recognized. */ |
945 | ||
946 | static enum misc_command_type | |
bb6203bf | 947 | process_next_line (const char *p, command_line_up *command, |
60b3cef2 TT |
948 | int parse_commands, |
949 | gdb::function_view<void (const char *)> validator) | |
950 | ||
3c1179ff | 951 | { |
60b3cef2 TT |
952 | const char *p_end; |
953 | const char *p_start; | |
3c1179ff | 954 | int not_handled = 0; |
d318976c FN |
955 | |
956 | /* Not sure what to do here. */ | |
957 | if (p == NULL) | |
958 | return end_command; | |
959 | ||
311a4e6b | 960 | /* Strip trailing whitespace. */ |
50cb2941 JK |
961 | p_end = p + strlen (p); |
962 | while (p_end > p && (p_end[-1] == ' ' || p_end[-1] == '\t')) | |
963 | p_end--; | |
d318976c | 964 | |
50cb2941 | 965 | p_start = p; |
3630a92d | 966 | /* Strip leading whitespace. */ |
50cb2941 JK |
967 | while (p_start < p_end && (*p_start == ' ' || *p_start == '\t')) |
968 | p_start++; | |
d318976c | 969 | |
ebcd3b23 | 970 | /* 'end' is always recognized, regardless of parse_commands value. |
3630a92d | 971 | We also permit whitespace before end and after. */ |
61012eef | 972 | if (p_end - p_start == 3 && startswith (p_start, "end")) |
3630a92d | 973 | return end_command; |
604c4576 | 974 | |
311a4e6b | 975 | if (parse_commands) |
d318976c | 976 | { |
604c4576 JG |
977 | /* Resolve command abbreviations (e.g. 'ws' for 'while-stepping'). */ |
978 | const char *cmd_name = p; | |
979 | struct cmd_list_element *cmd | |
cf00cd6f | 980 | = lookup_cmd_1 (&cmd_name, cmdlist, NULL, NULL, 1); |
f1735a53 | 981 | cmd_name = skip_spaces (cmd_name); |
dc4bde35 | 982 | bool inline_cmd = *cmd_name != '\0'; |
604c4576 | 983 | |
ebcd3b23 | 984 | /* If commands are parsed, we skip initial spaces. Otherwise, |
3630a92d VP |
985 | which is the case for Python commands and documentation |
986 | (see the 'document' command), spaces are preserved. */ | |
50cb2941 | 987 | p = p_start; |
3630a92d | 988 | |
311a4e6b | 989 | /* Blanks and comments don't really do anything, but we need to |
ebcd3b23 MS |
990 | distinguish them from else, end and other commands which can |
991 | be executed. */ | |
50cb2941 | 992 | if (p_end == p || p[0] == '#') |
311a4e6b TJB |
993 | return nop_command; |
994 | ||
995 | /* Is the else clause of an if control structure? */ | |
61012eef | 996 | if (p_end - p == 4 && startswith (p, "else")) |
311a4e6b TJB |
997 | return else_command; |
998 | ||
ebcd3b23 MS |
999 | /* Check for while, if, break, continue, etc and build a new |
1000 | command line structure for them. */ | |
8588b356 | 1001 | if (cmd == while_stepping_cmd_element) |
a7bdde9e VP |
1002 | { |
1003 | /* Because validate_actionline and encode_action lookup | |
1004 | command's line as command, we need the line to | |
1005 | include 'while-stepping'. | |
1006 | ||
1007 | For 'ws' alias, the command will have 'ws', not expanded | |
ebcd3b23 | 1008 | to 'while-stepping'. This is intentional -- we don't |
a7bdde9e | 1009 | really want frontend to send a command list with 'ws', |
ebcd3b23 MS |
1010 | and next break-info returning command line with |
1011 | 'while-stepping'. This should work, but might cause the | |
1012 | breakpoint to be marked as changed while it's actually | |
1013 | not. */ | |
a7bdde9e VP |
1014 | *command = build_command_line (while_stepping_control, p); |
1015 | } | |
8588b356 SM |
1016 | else if (cmd == while_cmd_element) |
1017 | *command = build_command_line (while_control, line_first_arg (p)); | |
1018 | else if (cmd == if_cmd_element) | |
1019 | *command = build_command_line (if_control, line_first_arg (p)); | |
1020 | else if (cmd == commands_cmd_element) | |
1021 | *command = build_command_line (commands_control, line_first_arg (p)); | |
1022 | else if (cmd == define_cmd_element) | |
7a2c85f2 | 1023 | *command = build_command_line (define_control, line_first_arg (p)); |
a33fc9ae RK |
1024 | else if (cmd == document_cmd_element) |
1025 | *command = build_command_line (document_control, line_first_arg (p)); | |
8588b356 | 1026 | else if (cmd == python_cmd_element && !inline_cmd) |
311a4e6b TJB |
1027 | { |
1028 | /* Note that we ignore the inline "python command" form | |
1029 | here. */ | |
1030 | *command = build_command_line (python_control, ""); | |
1031 | } | |
8588b356 | 1032 | else if (cmd == compile_cmd_element && !inline_cmd) |
bb2ec1b3 TT |
1033 | { |
1034 | /* Note that we ignore the inline "compile command" form | |
1035 | here. */ | |
1036 | *command = build_command_line (compile_control, ""); | |
1037 | (*command)->control_u.compile.scope = COMPILE_I_INVALID_SCOPE; | |
1038 | } | |
8588b356 | 1039 | else if (cmd == guile_cmd_element && !inline_cmd) |
ed3ef339 DE |
1040 | { |
1041 | /* Note that we ignore the inline "guile command" form here. */ | |
1042 | *command = build_command_line (guile_control, ""); | |
1043 | } | |
61012eef | 1044 | else if (p_end - p == 10 && startswith (p, "loop_break")) |
bb6203bf | 1045 | *command = command_line_up (new command_line (break_control)); |
61012eef | 1046 | else if (p_end - p == 13 && startswith (p, "loop_continue")) |
bb6203bf | 1047 | *command = command_line_up (new command_line (continue_control)); |
311a4e6b TJB |
1048 | else |
1049 | not_handled = 1; | |
d318976c | 1050 | } |
311a4e6b TJB |
1051 | |
1052 | if (!parse_commands || not_handled) | |
d318976c FN |
1053 | { |
1054 | /* A normal command. */ | |
bb6203bf AH |
1055 | *command = command_line_up (new command_line (simple_control, |
1056 | savestring (p, p_end - p))); | |
d318976c FN |
1057 | } |
1058 | ||
a7bdde9e | 1059 | if (validator) |
bb6203bf | 1060 | validator ((*command)->line); |
a7bdde9e | 1061 | |
d318976c FN |
1062 | /* Nothing special. */ |
1063 | return ok_command; | |
1064 | } | |
1065 | ||
ebcd3b23 MS |
1066 | /* Recursively read in the control structures and create a |
1067 | command_line structure from them. Use read_next_line_func to | |
1068 | obtain lines of the command. */ | |
d318976c FN |
1069 | |
1070 | static enum command_control_type | |
f8631e5e | 1071 | recurse_read_control_structure (read_next_line_ftype read_next_line_func, |
a7bdde9e | 1072 | struct command_line *current_cmd, |
60b3cef2 | 1073 | gdb::function_view<void (const char *)> validator) |
d318976c | 1074 | { |
d318976c FN |
1075 | enum misc_command_type val; |
1076 | enum command_control_type ret; | |
bb6203bf | 1077 | struct command_line *child_tail; |
12973681 | 1078 | counted_command_line *current_body = ¤t_cmd->body_list_0; |
bb6203bf | 1079 | command_line_up next; |
d318976c | 1080 | |
bb6203bf | 1081 | child_tail = nullptr; |
d318976c FN |
1082 | |
1083 | /* Sanity checks. */ | |
1084 | if (current_cmd->control_type == simple_control) | |
8a3fe4f8 | 1085 | error (_("Recursed on a simple control type.")); |
d318976c | 1086 | |
d318976c FN |
1087 | /* Read lines from the input stream and build control structures. */ |
1088 | while (1) | |
1089 | { | |
1090 | dont_repeat (); | |
1091 | ||
f8631e5e | 1092 | std::string buffer; |
bb6203bf | 1093 | next = nullptr; |
f8631e5e | 1094 | val = process_next_line (read_next_line_func (buffer), &next, |
ed3ef339 | 1095 | current_cmd->control_type != python_control |
bb2ec1b3 TT |
1096 | && current_cmd->control_type != guile_control |
1097 | && current_cmd->control_type != compile_control, | |
60b3cef2 | 1098 | validator); |
d318976c FN |
1099 | |
1100 | /* Just skip blanks and comments. */ | |
1101 | if (val == nop_command) | |
1102 | continue; | |
1103 | ||
1104 | if (val == end_command) | |
1105 | { | |
1e9c71b8 | 1106 | if (multi_line_command_p (current_cmd->control_type)) |
d318976c | 1107 | { |
40c03ae8 | 1108 | /* Success reading an entire canned sequence of commands. */ |
d318976c FN |
1109 | ret = simple_control; |
1110 | break; | |
1111 | } | |
1112 | else | |
1113 | { | |
1114 | ret = invalid_control; | |
1115 | break; | |
1116 | } | |
1117 | } | |
1118 | ||
1119 | /* Not the end of a control structure. */ | |
1120 | if (val == else_command) | |
1121 | { | |
1122 | if (current_cmd->control_type == if_control | |
12973681 | 1123 | && current_body == ¤t_cmd->body_list_0) |
d318976c | 1124 | { |
12973681 | 1125 | current_body = ¤t_cmd->body_list_1; |
bb6203bf | 1126 | child_tail = nullptr; |
d318976c FN |
1127 | continue; |
1128 | } | |
1129 | else | |
1130 | { | |
1131 | ret = invalid_control; | |
1132 | break; | |
1133 | } | |
1134 | } | |
1135 | ||
bb6203bf AH |
1136 | /* Transfer ownership of NEXT to the command's body list. */ |
1137 | if (child_tail != nullptr) | |
d318976c | 1138 | { |
bb6203bf AH |
1139 | child_tail->next = next.release (); |
1140 | child_tail = child_tail->next; | |
d318976c FN |
1141 | } |
1142 | else | |
bb6203bf AH |
1143 | { |
1144 | child_tail = next.get (); | |
1145 | *current_body = counted_command_line (next.release (), | |
1146 | command_lines_deleter ()); | |
1147 | } | |
d318976c FN |
1148 | |
1149 | /* If the latest line is another control structure, then recurse | |
dda83cd7 | 1150 | on it. */ |
bb6203bf | 1151 | if (multi_line_command_p (child_tail->control_type)) |
d318976c FN |
1152 | { |
1153 | control_level++; | |
bb6203bf AH |
1154 | ret = recurse_read_control_structure (read_next_line_func, |
1155 | child_tail, | |
60b3cef2 | 1156 | validator); |
d318976c FN |
1157 | control_level--; |
1158 | ||
1159 | if (ret != simple_control) | |
1160 | break; | |
1161 | } | |
1162 | } | |
1163 | ||
1164 | dont_repeat (); | |
1165 | ||
1166 | return ret; | |
1167 | } | |
1168 | ||
1169 | /* Read lines from the input stream and accumulate them in a chain of | |
1170 | struct command_line's, which is then returned. For input from a | |
1171 | terminal, the special command "end" is used to mark the end of the | |
311a4e6b TJB |
1172 | input, and is not included in the returned chain of commands. |
1173 | ||
1174 | If PARSE_COMMANDS is true, strip leading whitespace (trailing whitespace | |
1175 | is always stripped) in the line and attempt to recognize GDB control | |
1176 | commands. Otherwise, only "end" is recognized. */ | |
d318976c FN |
1177 | |
1178 | #define END_MESSAGE "End with a line saying just \"end\"." | |
1179 | ||
12973681 | 1180 | counted_command_line |
295dc222 | 1181 | read_command_lines (const char *prompt_arg, int from_tty, int parse_commands, |
60b3cef2 | 1182 | gdb::function_view<void (const char *)> validator) |
d318976c | 1183 | { |
efd3baf0 | 1184 | if (from_tty && current_ui->input_interactive_p ()) |
d318976c | 1185 | { |
698ba934 DJ |
1186 | if (deprecated_readline_begin_hook) |
1187 | { | |
ebcd3b23 | 1188 | /* Note - intentional to merge messages with no newline. */ |
9a2b4c1b MS |
1189 | (*deprecated_readline_begin_hook) ("%s %s\n", prompt_arg, |
1190 | END_MESSAGE); | |
698ba934 DJ |
1191 | } |
1192 | else | |
c119e040 | 1193 | printf_unfiltered ("%s\n%s\n", prompt_arg, END_MESSAGE); |
d318976c FN |
1194 | } |
1195 | ||
c41535fd EZ |
1196 | |
1197 | /* Reading commands assumes the CLI behavior, so temporarily | |
1198 | override the current interpreter with CLI. */ | |
12973681 | 1199 | counted_command_line head (nullptr, command_lines_deleter ()); |
c41535fd EZ |
1200 | if (current_interp_named_p (INTERP_CONSOLE)) |
1201 | head = read_command_lines_1 (read_next_line, parse_commands, | |
60b3cef2 | 1202 | validator); |
c41535fd EZ |
1203 | else |
1204 | { | |
be0d7abb | 1205 | scoped_restore_interp interp_restorer (INTERP_CONSOLE); |
c41535fd EZ |
1206 | |
1207 | head = read_command_lines_1 (read_next_line, parse_commands, | |
60b3cef2 | 1208 | validator); |
c41535fd | 1209 | } |
3c1179ff | 1210 | |
efd3baf0 | 1211 | if (from_tty && current_ui->input_interactive_p () |
268a799a | 1212 | && deprecated_readline_end_hook) |
3c1179ff VP |
1213 | { |
1214 | (*deprecated_readline_end_hook) (); | |
1215 | } | |
1216 | return (head); | |
1217 | } | |
1218 | ||
1219 | /* Act the same way as read_command_lines, except that each new line is | |
1220 | obtained using READ_NEXT_LINE_FUNC. */ | |
1221 | ||
12973681 | 1222 | counted_command_line |
f8631e5e | 1223 | read_command_lines_1 (read_next_line_ftype read_next_line_func, |
60b3cef2 TT |
1224 | int parse_commands, |
1225 | gdb::function_view<void (const char *)> validator) | |
3c1179ff | 1226 | { |
bb6203bf | 1227 | struct command_line *tail; |
12973681 | 1228 | counted_command_line head (nullptr, command_lines_deleter ()); |
3c1179ff VP |
1229 | enum command_control_type ret; |
1230 | enum misc_command_type val; | |
bb6203bf | 1231 | command_line_up next; |
3c1179ff VP |
1232 | |
1233 | control_level = 0; | |
93921405 | 1234 | tail = NULL; |
d318976c FN |
1235 | |
1236 | while (1) | |
1237 | { | |
f429d7d0 | 1238 | dont_repeat (); |
f8631e5e SM |
1239 | |
1240 | std::string buffer; | |
1241 | val = process_next_line (read_next_line_func (buffer), &next, parse_commands, | |
60b3cef2 | 1242 | validator); |
d318976c FN |
1243 | |
1244 | /* Ignore blank lines or comments. */ | |
1245 | if (val == nop_command) | |
1246 | continue; | |
1247 | ||
1248 | if (val == end_command) | |
1249 | { | |
1250 | ret = simple_control; | |
1251 | break; | |
1252 | } | |
1253 | ||
1254 | if (val != ok_command) | |
1255 | { | |
1256 | ret = invalid_control; | |
1257 | break; | |
1258 | } | |
1259 | ||
1e9c71b8 | 1260 | if (multi_line_command_p (next->control_type)) |
d318976c FN |
1261 | { |
1262 | control_level++; | |
bb6203bf | 1263 | ret = recurse_read_control_structure (read_next_line_func, next.get (), |
60b3cef2 | 1264 | validator); |
d318976c FN |
1265 | control_level--; |
1266 | ||
1267 | if (ret == invalid_control) | |
1268 | break; | |
1269 | } | |
1270 | ||
bb6203bf | 1271 | /* Transfer ownership of NEXT to the HEAD list. */ |
d318976c FN |
1272 | if (tail) |
1273 | { | |
bb6203bf AH |
1274 | tail->next = next.release (); |
1275 | tail = tail->next; | |
d318976c FN |
1276 | } |
1277 | else | |
1278 | { | |
bb6203bf AH |
1279 | tail = next.get (); |
1280 | head = counted_command_line (next.release (), | |
1281 | command_lines_deleter ()); | |
d318976c | 1282 | } |
d318976c FN |
1283 | } |
1284 | ||
1285 | dont_repeat (); | |
1286 | ||
93921405 TT |
1287 | if (ret == invalid_control) |
1288 | return NULL; | |
d318976c | 1289 | |
3c1179ff | 1290 | return head; |
d318976c FN |
1291 | } |
1292 | ||
1293 | /* Free a chain of struct command_line's. */ | |
1294 | ||
1295 | void | |
1296 | free_command_lines (struct command_line **lptr) | |
1297 | { | |
d5b5ac79 AC |
1298 | struct command_line *l = *lptr; |
1299 | struct command_line *next; | |
d318976c FN |
1300 | |
1301 | while (l) | |
1302 | { | |
d318976c | 1303 | next = l->next; |
12973681 | 1304 | delete l; |
d318976c FN |
1305 | l = next; |
1306 | } | |
0d70f41b | 1307 | *lptr = NULL; |
d318976c | 1308 | } |
d318976c | 1309 | \f |
adb483fe DJ |
1310 | /* Validate that *COMNAME is a valid name for a command. Return the |
1311 | containing command list, in case it starts with a prefix command. | |
1312 | The prefix must already exist. *COMNAME is advanced to point after | |
1313 | any prefix, and a NUL character overwrites the space after the | |
1314 | prefix. */ | |
1315 | ||
1316 | static struct cmd_list_element ** | |
0b39b52e | 1317 | validate_comname (const char **comname) |
d318976c | 1318 | { |
adb483fe | 1319 | struct cmd_list_element **list = &cmdlist; |
0b39b52e | 1320 | const char *p, *last_word; |
d318976c | 1321 | |
adb483fe | 1322 | if (*comname == 0) |
e2e0b3e5 | 1323 | error_no_arg (_("name of command to define")); |
d318976c | 1324 | |
adb483fe DJ |
1325 | /* Find the last word of the argument. */ |
1326 | p = *comname + strlen (*comname); | |
1327 | while (p > *comname && isspace (p[-1])) | |
1328 | p--; | |
1329 | while (p > *comname && !isspace (p[-1])) | |
1330 | p--; | |
1331 | last_word = p; | |
1332 | ||
1333 | /* Find the corresponding command list. */ | |
1334 | if (last_word != *comname) | |
1335 | { | |
1336 | struct cmd_list_element *c; | |
adb483fe DJ |
1337 | |
1338 | /* Separate the prefix and the command. */ | |
0b39b52e TT |
1339 | std::string prefix (*comname, last_word - 1); |
1340 | const char *tem = prefix.c_str (); | |
adb483fe | 1341 | |
cf00cd6f | 1342 | c = lookup_cmd (&tem, cmdlist, "", NULL, 0, 1); |
3d0b3564 | 1343 | if (!c->is_prefix ()) |
0b39b52e | 1344 | error (_("\"%s\" is not a prefix command."), prefix.c_str ()); |
adb483fe | 1345 | |
14b42fc4 | 1346 | list = c->subcommands; |
adb483fe DJ |
1347 | *comname = last_word; |
1348 | } | |
1349 | ||
1350 | p = *comname; | |
d318976c FN |
1351 | while (*p) |
1352 | { | |
be09caf1 | 1353 | if (!valid_cmd_char_p (*p)) |
8a3fe4f8 | 1354 | error (_("Junk in argument list: \"%s\""), p); |
d318976c FN |
1355 | p++; |
1356 | } | |
adb483fe DJ |
1357 | |
1358 | return list; | |
d318976c FN |
1359 | } |
1360 | ||
1361 | /* This is just a placeholder in the command data structures. */ | |
1362 | static void | |
898241a5 | 1363 | user_defined_command (const char *ignore, int from_tty) |
d318976c FN |
1364 | { |
1365 | } | |
1366 | ||
7a2c85f2 TT |
1367 | /* Define a user-defined command. If COMMANDS is NULL, then this is a |
1368 | top-level call and the commands will be read using | |
1369 | read_command_lines. Otherwise, it is a "define" command in an | |
1370 | existing command and the commands are provided. In the | |
1371 | non-top-level case, various prompts and warnings are disabled. */ | |
1372 | ||
2370e853 | 1373 | static void |
7a2c85f2 TT |
1374 | do_define_command (const char *comname, int from_tty, |
1375 | const counted_command_line *commands) | |
d318976c | 1376 | { |
d318976c FN |
1377 | enum cmd_hook_type |
1378 | { | |
1379 | CMD_NO_HOOK = 0, | |
1380 | CMD_PRE_HOOK, | |
1381 | CMD_POST_HOOK | |
1382 | }; | |
d36fc00b | 1383 | struct cmd_list_element *c, *newc, *hookc = 0, **list; |
a9b49cbc | 1384 | const char *comfull; |
d318976c FN |
1385 | int hook_type = CMD_NO_HOOK; |
1386 | int hook_name_size = 0; | |
1387 | ||
1388 | #define HOOK_STRING "hook-" | |
1389 | #define HOOK_LEN 5 | |
1390 | #define HOOK_POST_STRING "hookpost-" | |
1391 | #define HOOK_POST_LEN 9 | |
1392 | ||
adb483fe DJ |
1393 | comfull = comname; |
1394 | list = validate_comname (&comname); | |
d318976c | 1395 | |
a9b49cbc | 1396 | c = lookup_cmd_exact (comname, *list); |
d318976c | 1397 | |
7a2c85f2 | 1398 | if (c && commands == nullptr) |
d318976c | 1399 | { |
ab4e3d93 | 1400 | int q; |
cdb27c12 | 1401 | |
fe978cb0 | 1402 | if (c->theclass == class_user || c->theclass == class_alias) |
c6ac7fc9 PW |
1403 | { |
1404 | /* if C is a prefix command that was previously defined, | |
1405 | tell the user its subcommands will be kept, and ask | |
1406 | if ok to redefine the command. */ | |
3d0b3564 | 1407 | if (c->is_prefix ()) |
c6ac7fc9 PW |
1408 | q = (c->user_commands.get () == nullptr |
1409 | || query (_("Keeping subcommands of prefix command \"%s\".\n" | |
1410 | "Redefine command \"%s\"? "), c->name, c->name)); | |
1411 | else | |
1412 | q = query (_("Redefine command \"%s\"? "), c->name); | |
1413 | } | |
d318976c | 1414 | else |
e2e0b3e5 | 1415 | q = query (_("Really redefine built-in command \"%s\"? "), c->name); |
ab4e3d93 | 1416 | if (!q) |
8a3fe4f8 | 1417 | error (_("Command \"%s\" not redefined."), c->name); |
d318976c FN |
1418 | } |
1419 | ||
1420 | /* If this new command is a hook, then mark the command which it | |
1421 | is hooking. Note that we allow hooking `help' commands, so that | |
1422 | we can hook the `stop' pseudo-command. */ | |
1423 | ||
1424 | if (!strncmp (comname, HOOK_STRING, HOOK_LEN)) | |
1425 | { | |
1426 | hook_type = CMD_PRE_HOOK; | |
1427 | hook_name_size = HOOK_LEN; | |
1428 | } | |
1429 | else if (!strncmp (comname, HOOK_POST_STRING, HOOK_POST_LEN)) | |
1430 | { | |
1431 | hook_type = CMD_POST_HOOK; | |
1432 | hook_name_size = HOOK_POST_LEN; | |
1433 | } | |
c6ac7fc9 | 1434 | |
d318976c FN |
1435 | if (hook_type != CMD_NO_HOOK) |
1436 | { | |
a9b49cbc MB |
1437 | /* Look up cmd it hooks. */ |
1438 | hookc = lookup_cmd_exact (comname + hook_name_size, *list, | |
1439 | /* ignore_help_classes = */ false); | |
7a2c85f2 | 1440 | if (!hookc && commands == nullptr) |
d318976c | 1441 | { |
9a2b4c1b MS |
1442 | warning (_("Your new `%s' command does not " |
1443 | "hook any existing command."), | |
adb483fe | 1444 | comfull); |
9e2f0ad4 | 1445 | if (!query (_("Proceed? "))) |
8a3fe4f8 | 1446 | error (_("Not confirmed.")); |
d318976c FN |
1447 | } |
1448 | } | |
1449 | ||
1b36a34b | 1450 | comname = xstrdup (comname); |
d318976c | 1451 | |
7a2c85f2 TT |
1452 | counted_command_line cmds; |
1453 | if (commands == nullptr) | |
1454 | { | |
1455 | std::string prompt | |
1456 | = string_printf ("Type commands for definition of \"%s\".", comfull); | |
60b3cef2 | 1457 | cmds = read_command_lines (prompt.c_str (), from_tty, 1, 0); |
7a2c85f2 TT |
1458 | } |
1459 | else | |
1460 | cmds = *commands; | |
d318976c | 1461 | |
c6ac7fc9 | 1462 | { |
14b42fc4 SM |
1463 | struct cmd_list_element **c_subcommands |
1464 | = c == nullptr ? nullptr : c->subcommands; | |
c6ac7fc9 PW |
1465 | |
1466 | newc = add_cmd (comname, class_user, user_defined_command, | |
1467 | (c != nullptr && c->theclass == class_user) | |
1468 | ? c->doc : xstrdup ("User-defined."), list); | |
1469 | newc->user_commands = std::move (cmds); | |
1470 | ||
1471 | /* If we define or re-define a command that was previously defined | |
1472 | as a prefix, keep the prefix information. */ | |
14b42fc4 | 1473 | if (c_subcommands != nullptr) |
c6ac7fc9 | 1474 | { |
14b42fc4 | 1475 | newc->subcommands = c_subcommands; |
c6ac7fc9 PW |
1476 | /* allow_unknown: see explanation in equivalent logic in |
1477 | define_prefix_command (). */ | |
1478 | newc->allow_unknown = newc->user_commands.get () != nullptr; | |
1479 | } | |
1480 | } | |
d318976c FN |
1481 | |
1482 | /* If this new command is a hook, then mark both commands as being | |
1483 | tied. */ | |
1484 | if (hookc) | |
1485 | { | |
1486 | switch (hook_type) | |
dda83cd7 SM |
1487 | { |
1488 | case CMD_PRE_HOOK: | |
1489 | hookc->hook_pre = newc; /* Target gets hooked. */ | |
1490 | newc->hookee_pre = hookc; /* We are marked as hooking target cmd. */ | |
1491 | break; | |
1492 | case CMD_POST_HOOK: | |
1493 | hookc->hook_post = newc; /* Target gets hooked. */ | |
1494 | newc->hookee_post = hookc; /* We are marked as hooking | |
9a2b4c1b | 1495 | target cmd. */ |
dda83cd7 SM |
1496 | break; |
1497 | default: | |
1498 | /* Should never come here as hookc would be 0. */ | |
f34652de | 1499 | internal_error (_("bad switch")); |
dda83cd7 | 1500 | } |
d318976c FN |
1501 | } |
1502 | } | |
1503 | ||
7a2c85f2 TT |
1504 | static void |
1505 | define_command (const char *comname, int from_tty) | |
1506 | { | |
1507 | do_define_command (comname, from_tty, nullptr); | |
1508 | } | |
1509 | ||
effcf7b1 PW |
1510 | /* Document a user-defined command or user defined alias. If COMMANDS is NULL, |
1511 | then this is a top-level call and the document will be read using | |
1512 | read_command_lines. Otherwise, it is a "document" command in an existing | |
1513 | command and the commands are provided. */ | |
2370e853 | 1514 | static void |
a33fc9ae | 1515 | do_document_command (const char *comname, int from_tty, |
287de656 | 1516 | const counted_command_line *commands) |
d318976c | 1517 | { |
effcf7b1 | 1518 | struct cmd_list_element *alias, *prefix_cmd, *c; |
0b39b52e | 1519 | const char *comfull; |
d318976c | 1520 | |
adb483fe | 1521 | comfull = comname; |
effcf7b1 | 1522 | validate_comname (&comname); |
d318976c | 1523 | |
effcf7b1 | 1524 | lookup_cmd_composition (comfull, &alias, &prefix_cmd, &c); |
b70e9270 TT |
1525 | if (c == nullptr) |
1526 | error (_("Undefined command: \"%s\"."), comfull); | |
276d9db2 HD |
1527 | else if (c == CMD_LIST_AMBIGUOUS) |
1528 | error (_("Ambiguous command: \"%s\"."), comfull); | |
d318976c | 1529 | |
effcf7b1 PW |
1530 | if (c->theclass != class_user |
1531 | && (alias == nullptr || alias->theclass != class_alias)) | |
1532 | { | |
1533 | if (alias == nullptr) | |
1534 | error (_("Command \"%s\" is built-in."), comfull); | |
1535 | else | |
1536 | error (_("Alias \"%s\" is built-in."), comfull); | |
1537 | } | |
1538 | ||
1539 | /* If we found an alias of class_alias, the user is documenting this | |
1540 | user-defined alias. */ | |
1541 | if (alias != nullptr) | |
1542 | c = alias; | |
d318976c | 1543 | |
a33fc9ae RK |
1544 | counted_command_line doclines; |
1545 | ||
1546 | if (commands == nullptr) | |
1547 | { | |
effcf7b1 | 1548 | std::string prompt |
287de656 | 1549 | = string_printf ("Type documentation for \"%s\".", comfull); |
a33fc9ae RK |
1550 | doclines = read_command_lines (prompt.c_str (), from_tty, 0, 0); |
1551 | } | |
1552 | else | |
1553 | doclines = *commands; | |
d318976c | 1554 | |
effcf7b1 PW |
1555 | if (c->doc_allocated) |
1556 | xfree ((char *) c->doc); | |
d318976c FN |
1557 | |
1558 | { | |
d5b5ac79 AC |
1559 | struct command_line *cl1; |
1560 | int len = 0; | |
1947513d | 1561 | char *doc; |
d318976c | 1562 | |
93921405 | 1563 | for (cl1 = doclines.get (); cl1; cl1 = cl1->next) |
d318976c FN |
1564 | len += strlen (cl1->line) + 1; |
1565 | ||
1947513d TT |
1566 | doc = (char *) xmalloc (len + 1); |
1567 | *doc = 0; | |
d318976c | 1568 | |
93921405 | 1569 | for (cl1 = doclines.get (); cl1; cl1 = cl1->next) |
d318976c | 1570 | { |
1947513d | 1571 | strcat (doc, cl1->line); |
d318976c | 1572 | if (cl1->next) |
1947513d | 1573 | strcat (doc, "\n"); |
d318976c | 1574 | } |
1947513d TT |
1575 | |
1576 | c->doc = doc; | |
effcf7b1 | 1577 | c->doc_allocated = 1; |
d318976c | 1578 | } |
d318976c | 1579 | } |
c6ac7fc9 | 1580 | |
a33fc9ae RK |
1581 | static void |
1582 | document_command (const char *comname, int from_tty) | |
1583 | { | |
1584 | do_document_command (comname, from_tty, nullptr); | |
1585 | } | |
1586 | ||
c6ac7fc9 PW |
1587 | /* Implementation of the "define-prefix" command. */ |
1588 | ||
1589 | static void | |
1590 | define_prefix_command (const char *comname, int from_tty) | |
1591 | { | |
1592 | struct cmd_list_element *c, **list; | |
c6ac7fc9 PW |
1593 | const char *comfull; |
1594 | ||
1595 | comfull = comname; | |
1596 | list = validate_comname (&comname); | |
1597 | ||
a9b49cbc | 1598 | c = lookup_cmd_exact (comname, *list); |
c6ac7fc9 PW |
1599 | |
1600 | if (c != nullptr && c->theclass != class_user) | |
1601 | error (_("Command \"%s\" is built-in."), comfull); | |
1602 | ||
3d0b3564 | 1603 | if (c != nullptr && c->is_prefix ()) |
c6ac7fc9 PW |
1604 | { |
1605 | /* c is already a user defined prefix command. */ | |
1606 | return; | |
1607 | } | |
1608 | ||
1609 | /* If the command does not exist at all, create it. */ | |
1610 | if (c == nullptr) | |
1611 | { | |
1612 | comname = xstrdup (comname); | |
1613 | c = add_cmd (comname, class_user, user_defined_command, | |
1614 | xstrdup ("User-defined."), list); | |
1615 | } | |
1616 | ||
14b42fc4 | 1617 | /* Allocate the c->subcommands, which marks the command as a prefix |
c6ac7fc9 | 1618 | command. */ |
14b42fc4 SM |
1619 | c->subcommands = new struct cmd_list_element*; |
1620 | *(c->subcommands) = nullptr; | |
c6ac7fc9 PW |
1621 | /* If the prefix command C is not a command, then it must be followed |
1622 | by known subcommands. Otherwise, if C is also a normal command, | |
1623 | it can be followed by C args that must not cause a 'subcommand' | |
1624 | not recognised error, and thus we must allow unknown. */ | |
1625 | c->allow_unknown = c->user_commands.get () != nullptr; | |
1626 | } | |
1627 | ||
e83f6121 AB |
1628 | /* See cli/cli-script.h. */ |
1629 | ||
1630 | bool | |
1631 | commands_equal (const command_line *a, const command_line *b) | |
1632 | { | |
1633 | if ((a == nullptr) != (b == nullptr)) | |
1634 | return false; | |
1635 | ||
1636 | while (a != nullptr) | |
1637 | { | |
1638 | /* We are either at the end of both command lists, or there's | |
1639 | another command in both lists. */ | |
1640 | if ((a->next == nullptr) != (b->next == nullptr)) | |
1641 | return false; | |
1642 | ||
1643 | /* There's a command line for both, or neither. */ | |
1644 | if ((a->line == nullptr) != (b->line == nullptr)) | |
1645 | return false; | |
1646 | ||
1647 | /* Check control_type matches. */ | |
1648 | if (a->control_type != b->control_type) | |
1649 | return false; | |
1650 | ||
1651 | if (a->control_type == compile_control) | |
1652 | { | |
1653 | if (a->control_u.compile.scope != b->control_u.compile.scope) | |
1654 | return false; | |
1655 | ||
1656 | /* This is where we "fail safe". The scope_data is a 'void *' | |
1657 | pointer which changes in meaning based on the value of | |
1658 | 'scope'. It is possible that two different 'void *' pointers | |
1659 | could point to the equal scope data, however, we just assume | |
1660 | that if the pointers are different, then the scope_data is | |
1661 | different. This could be improved in the future. */ | |
1662 | if (a->control_u.compile.scope_data | |
1663 | != b->control_u.compile.scope_data) | |
1664 | return false; | |
1665 | } | |
1666 | ||
1667 | /* Check lines are identical. */ | |
1668 | if (a->line != nullptr && strcmp (a->line, b->line) != 0) | |
1669 | return false; | |
1670 | ||
1671 | /* Check body_list_0. */ | |
1672 | if (!commands_equal (a->body_list_0.get (), b->body_list_0.get ())) | |
1673 | return false; | |
1674 | ||
1675 | /* Check body_list_1. */ | |
1676 | if (!commands_equal (a->body_list_1.get (), b->body_list_1.get ())) | |
1677 | return false; | |
1678 | ||
1679 | /* Move to the next element in each chain. */ | |
1680 | a = a->next; | |
1681 | b = b->next; | |
1682 | } | |
1683 | ||
1684 | return true; | |
1685 | } | |
1686 | ||
d318976c | 1687 | \f |
ebcd3b23 | 1688 | /* Used to implement source_command. */ |
d318976c FN |
1689 | |
1690 | void | |
05159abe | 1691 | script_from_file (FILE *stream, const char *file) |
d318976c | 1692 | { |
d318976c | 1693 | if (stream == NULL) |
f34652de | 1694 | internal_error (_("called with NULL file pointer!")); |
d318976c | 1695 | |
2ec845e7 TT |
1696 | scoped_restore restore_line_number |
1697 | = make_scoped_restore (&source_line_number, 0); | |
6caa91b6 SM |
1698 | scoped_restore restore_file |
1699 | = make_scoped_restore<std::string, const std::string &> (&source_file_name, | |
1700 | file); | |
cdb27c12 | 1701 | |
2ec845e7 | 1702 | scoped_restore save_async = make_scoped_restore (¤t_ui->async, 0); |
d318976c | 1703 | |
a70b8144 | 1704 | try |
2ec845e7 TT |
1705 | { |
1706 | read_command_file (stream); | |
1707 | } | |
230d2906 | 1708 | catch (const gdb_exception_error &e) |
2ec845e7 TT |
1709 | { |
1710 | /* Re-throw the error, but with the file name information | |
1711 | prepended. */ | |
1712 | throw_error (e.error, | |
1713 | _("%s:%d: Error in sourced command file:\n%s"), | |
3d6e9d23 TT |
1714 | source_file_name.c_str (), source_line_number, |
1715 | e.what ()); | |
2ec845e7 | 1716 | } |
d318976c FN |
1717 | } |
1718 | ||
adb483fe DJ |
1719 | /* Print the definition of user command C to STREAM. Or, if C is a |
1720 | prefix command, show the definitions of all user commands under C | |
1721 | (recursively). PREFIX and NAME combined are the name of the | |
1722 | current command. */ | |
d318976c | 1723 | void |
6f937416 | 1724 | show_user_1 (struct cmd_list_element *c, const char *prefix, const char *name, |
adb483fe | 1725 | struct ui_file *stream) |
d318976c | 1726 | { |
c6ac7fc9 PW |
1727 | if (cli_user_command_p (c)) |
1728 | { | |
1729 | struct command_line *cmdlines = c->user_commands.get (); | |
1730 | ||
6cb06a8c TT |
1731 | gdb_printf (stream, "User %scommand \"", |
1732 | c->is_prefix () ? "prefix" : ""); | |
b5f91cd4 | 1733 | fprintf_styled (stream, command_style.style (), "%s%s", |
c6ac7fc9 | 1734 | prefix, name); |
6cb06a8c | 1735 | gdb_printf (stream, "\":\n"); |
c6ac7fc9 PW |
1736 | if (cmdlines) |
1737 | { | |
1738 | print_command_lines (current_uiout, cmdlines, 1); | |
0426ad51 | 1739 | gdb_puts ("\n", stream); |
c6ac7fc9 PW |
1740 | } |
1741 | } | |
d318976c | 1742 | |
3d0b3564 | 1743 | if (c->is_prefix ()) |
adb483fe | 1744 | { |
2f822da5 | 1745 | const std::string prefixname = c->prefixname (); |
cdb27c12 | 1746 | |
14b42fc4 | 1747 | for (c = *c->subcommands; c != NULL; c = c->next) |
3d0b3564 | 1748 | if (c->theclass == class_user || c->is_prefix ()) |
2f822da5 | 1749 | show_user_1 (c, prefixname.c_str (), c->name, gdb_stdout); |
adb483fe DJ |
1750 | } |
1751 | ||
d318976c FN |
1752 | } |
1753 | ||
5fe70629 | 1754 | INIT_GDB_FILE (cli_script) |
2370e853 | 1755 | { |
c6ac7fc9 PW |
1756 | struct cmd_list_element *c; |
1757 | ||
1758 | /* "document", "define" and "define-prefix" use command_completer, | |
1759 | as this helps the user to either type the command name and/or | |
1760 | its prefixes. */ | |
a33fc9ae | 1761 | document_cmd_element = add_com ("document", class_support, document_command, |
287de656 | 1762 | _("\ |
effcf7b1 PW |
1763 | Document a user-defined command or user-defined alias.\n\ |
1764 | Give command or alias name as argument. Give documentation on following lines.\n\ | |
2370e853 | 1765 | End with a line of just \"end\".")); |
a33fc9ae | 1766 | set_cmd_completer (document_cmd_element, command_completer); |
8588b356 | 1767 | define_cmd_element = add_com ("define", class_support, define_command, _("\ |
2370e853 TT |
1768 | Define a new command name. Command name is argument.\n\ |
1769 | Definition appears on following lines, one command per line.\n\ | |
1770 | End with a line of just \"end\".\n\ | |
1771 | Use the \"document\" command to give documentation for the new command.\n\ | |
87a8eca7 PW |
1772 | Commands defined in this way may accept an unlimited number of arguments\n\ |
1773 | accessed via $arg0 .. $argN. $argc tells how many arguments have\n\ | |
1774 | been passed.")); | |
c6ac7fc9 PW |
1775 | set_cmd_completer (define_cmd_element, command_completer); |
1776 | c = add_com ("define-prefix", class_support, define_prefix_command, | |
1777 | _("\ | |
1778 | Define or mark a command as a user-defined prefix command.\n\ | |
1779 | User defined prefix commands can be used as prefix commands for\n\ | |
1780 | other user defined commands.\n\ | |
1781 | If the command already exists, it is changed to a prefix command.")); | |
1782 | set_cmd_completer (c, command_completer); | |
2370e853 | 1783 | |
8588b356 | 1784 | while_cmd_element = add_com ("while", class_support, while_command, _("\ |
2370e853 TT |
1785 | Execute nested commands WHILE the conditional expression is non zero.\n\ |
1786 | The conditional expression must follow the word `while' and must in turn be\n\ | |
1787 | followed by a new line. The nested commands must be entered one per line,\n\ | |
1788 | and should be terminated by the word `end'.")); | |
1789 | ||
8588b356 | 1790 | if_cmd_element = add_com ("if", class_support, if_command, _("\ |
2370e853 TT |
1791 | Execute nested commands once IF the conditional expression is non zero.\n\ |
1792 | The conditional expression must follow the word `if' and must in turn be\n\ | |
1793 | followed by a new line. The nested commands must be entered one per line,\n\ | |
1794 | and should be terminated by the word 'else' or `end'. If an else clause\n\ | |
1795 | is used, the same rules apply to its nested commands as to the first ones.")); | |
1796 | } |