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