Introduce display_mi_prompt
[deliverable/binutils-gdb.git] / gdb / interps.c
CommitLineData
4a8f6654
AC
1/* Manages interpreters for GDB, the GNU debugger.
2
618f726f 3 Copyright (C) 2000-2016 Free Software Foundation, Inc.
4a8f6654
AC
4
5 Written by Jim Ingham <jingham@apple.com> of Apple Computer, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
4a8f6654
AC
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
1777feb0 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4a8f6654
AC
21
22/* This is just a first cut at separating out the "interpreter"
23 functions of gdb into self-contained modules. There are a couple
24 of open areas that need to be sorted out:
25
26 1) The interpreter explicitly contains a UI_OUT, and can insert itself
27 into the event loop, but it doesn't explicitly contain hooks for readline.
28 I did this because it seems to me many interpreters won't want to use
29 the readline command interface, and it is probably simpler to just let
30 them take over the input in their resume proc. */
31
32#include "defs.h"
33#include "gdbcmd.h"
34#include "ui-out.h"
35#include "event-loop.h"
36#include "event-top.h"
37#include "interps.h"
38#include "completer.h"
4a8f6654 39#include "top.h" /* For command_loop. */
be34f849 40#include "continuations.h"
4a8f6654 41
cb814510
PA
42/* Each UI has its own independent set of interpreters. */
43
44struct ui_interp_info
45{
46 /* Each top level has its own independent set of interpreters. */
47 struct interp *interp_list;
48 struct interp *current_interpreter;
49 struct interp *top_level_interpreter;
50
51 /* The interpreter that is active while `interp_exec' is active, NULL
52 at all other times. */
53 struct interp *command_interpreter;
54};
55
8322445e 56/* Get UI's ui_interp_info object. Never returns NULL. */
cb814510
PA
57
58static struct ui_interp_info *
8322445e 59get_interp_info (struct ui *ui)
cb814510 60{
cb814510
PA
61 if (ui->interp_info == NULL)
62 ui->interp_info = XCNEW (struct ui_interp_info);
63 return ui->interp_info;
64}
b4a14fd0 65
8322445e
PA
66/* Get the current UI's ui_interp_info object. Never returns
67 NULL. */
68
69static struct ui_interp_info *
70get_current_interp_info (void)
71{
72 return get_interp_info (current_ui);
73}
74
4a8f6654
AC
75struct interp
76{
1777feb0 77 /* This is the name in "-i=" and set interpreter. */
4a8f6654
AC
78 const char *name;
79
80 /* Interpreters are stored in a linked list, this is the next
81 one... */
82 struct interp *next;
83
84 /* This is a cookie that an instance of the interpreter can use.
85 This is a bit confused right now as the exact initialization
86 sequence for it, and how it relates to the interpreter's uiout
87 object is a bit confused. */
88 void *data;
89
1777feb0 90 /* Has the init_proc been run? */
4a8f6654
AC
91 int inited;
92
4a8f6654
AC
93 const struct interp_procs *procs;
94 int quiet_p;
95};
96
1777feb0 97/* The magic initialization routine for this module. */
4a8f6654
AC
98
99void _initialize_interpreter (void);
100
8322445e
PA
101static struct interp *interp_lookup_existing (struct ui *ui,
102 const char *name);
103
4a8f6654
AC
104/* interp_new - This allocates space for a new interpreter,
105 fills the fields from the inputs, and returns a pointer to the
1777feb0 106 interpreter. */
4a8f6654 107struct interp *
8322445e 108interp_new (const char *name, const struct interp_procs *procs, void *data)
4a8f6654
AC
109{
110 struct interp *new_interp;
111
70ba0933 112 new_interp = XNEW (struct interp);
4a8f6654
AC
113
114 new_interp->name = xstrdup (name);
8322445e 115 new_interp->data = data;
4a8f6654
AC
116 new_interp->quiet_p = 0;
117 new_interp->procs = procs;
118 new_interp->inited = 0;
119
4d09c5b4
AB
120 /* Check for required procs. */
121 gdb_assert (procs->command_loop_proc != NULL);
122
4a8f6654
AC
123 return new_interp;
124}
125
8322445e
PA
126/* An interpreter factory. Maps an interpreter name to the factory
127 function that instantiates an interpreter by that name. */
128
129struct interp_factory
130{
131 /* This is the name in "-i=INTERP" and "interpreter-exec INTERP". */
132 const char *name;
133
134 /* The function that creates the interpreter. */
135 interp_factory_func func;
136};
137
138typedef struct interp_factory *interp_factory_p;
139DEF_VEC_P(interp_factory_p);
140
141/* The registered interpreter factories. */
142static VEC(interp_factory_p) *interpreter_factories = NULL;
143
144/* See interps.h. */
145
146void
147interp_factory_register (const char *name, interp_factory_func func)
148{
149 struct interp_factory *f;
150 int ix;
151
152 /* Assert that no factory for NAME is already registered. */
153 for (ix = 0;
154 VEC_iterate (interp_factory_p, interpreter_factories, ix, f);
155 ++ix)
156 if (strcmp (f->name, name) == 0)
157 {
158 internal_error (__FILE__, __LINE__,
159 _("interpreter factory already registered: \"%s\"\n"),
160 name);
161 }
162
163 f = XNEW (struct interp_factory);
164 f->name = name;
165 f->func = func;
166 VEC_safe_push (interp_factory_p, interpreter_factories, f);
167}
168
4a8f6654
AC
169/* Add interpreter INTERP to the gdb interpreter list. The
170 interpreter must not have previously been added. */
171void
8322445e 172interp_add (struct ui *ui, struct interp *interp)
4a8f6654 173{
8322445e 174 struct ui_interp_info *ui_interp = get_interp_info (ui);
cb814510 175
8322445e 176 gdb_assert (interp_lookup_existing (ui, interp->name) == NULL);
4a8f6654 177
cb814510
PA
178 interp->next = ui_interp->interp_list;
179 ui_interp->interp_list = interp;
4a8f6654
AC
180}
181
182/* This sets the current interpreter to be INTERP. If INTERP has not
183 been initialized, then this will also run the init proc. If the
184 init proc is successful, return 1, if it fails, set the old
185 interpreter back in place and return 0. If we can't restore the
186 old interpreter, then raise an internal error, since we are in
1777feb0 187 pretty bad shape at this point.
683f2885
VP
188
189 The TOP_LEVEL parameter tells if this new interpreter is
190 the top-level one. The top-level is what is requested
191 on the command line, and is responsible for reporting general
192 notification about target state changes. For example, if
193 MI is the top-level interpreter, then it will always report
194 events such as target stops and new thread creation, even if they
195 are caused by CLI commands. */
4a8f6654 196int
683f2885 197interp_set (struct interp *interp, int top_level)
4a8f6654 198{
cb814510
PA
199 struct ui_interp_info *ui_interp = get_current_interp_info ();
200 struct interp *old_interp = ui_interp->current_interpreter;
4a8f6654 201 int first_time = 0;
4a8f6654
AC
202 char buffer[64];
203
683f2885
VP
204 /* If we already have an interpreter, then trying to
205 set top level interpreter is kinda pointless. */
cb814510
PA
206 gdb_assert (!top_level || !ui_interp->current_interpreter);
207 gdb_assert (!top_level || !ui_interp->top_level_interpreter);
683f2885 208
cb814510 209 if (old_interp != NULL)
4a8f6654 210 {
79a45e25 211 ui_out_flush (current_uiout);
cb814510
PA
212 if (old_interp->procs->suspend_proc
213 && !old_interp->procs->suspend_proc (old_interp->data))
4a8f6654 214 {
8a3fe4f8 215 error (_("Could not suspend interpreter \"%s\"."),
cb814510 216 old_interp->name);
4a8f6654
AC
217 }
218 }
219 else
220 {
221 first_time = 1;
222 }
223
cb814510 224 ui_interp->current_interpreter = interp;
683f2885 225 if (top_level)
cb814510 226 ui_interp->top_level_interpreter = interp;
4a8f6654
AC
227
228 /* We use interpreter_p for the "set interpreter" variable, so we need
1777feb0 229 to make sure we have a malloc'ed copy for the set command to free. */
4a8f6654 230 if (interpreter_p != NULL
cb814510 231 && strcmp (interp->name, interpreter_p) != 0)
4a8f6654
AC
232 {
233 xfree (interpreter_p);
234
cb814510 235 interpreter_p = xstrdup (interp->name);
4a8f6654
AC
236 }
237
1777feb0 238 /* Run the init proc. If it fails, try to restore the old interp. */
4a8f6654
AC
239
240 if (!interp->inited)
241 {
242 if (interp->procs->init_proc != NULL)
243 {
4801a9a3 244 interp->data = interp->procs->init_proc (interp, top_level);
4a8f6654
AC
245 }
246 interp->inited = 1;
247 }
248
4801a9a3
PA
249 /* Do this only after the interpreter is initialized. */
250 current_uiout = interp->procs->ui_out_proc (interp);
251
907d819a 252 /* Clear out any installed interpreter hooks/event handlers. */
4a8f6654
AC
253 clear_interpreter_hooks ();
254
255 if (interp->procs->resume_proc != NULL
256 && (!interp->procs->resume_proc (interp->data)))
257 {
683f2885 258 if (old_interp == NULL || !interp_set (old_interp, 0))
4a8f6654 259 internal_error (__FILE__, __LINE__,
e2e0b3e5 260 _("Failed to initialize new interp \"%s\" %s"),
4a8f6654
AC
261 interp->name, "and could not restore old interp!\n");
262 return 0;
263 }
264
92bcb5f9 265 if (!first_time && !interp_quiet_p (interp))
4a8f6654 266 {
92bcb5f9
PA
267 xsnprintf (buffer, sizeof (buffer),
268 "Switching to interpreter \"%.24s\".\n", interp->name);
269 ui_out_text (current_uiout, buffer);
4a8f6654
AC
270 }
271
272 return 1;
273}
274
8322445e
PA
275/* Look up the interpreter for NAME. If no such interpreter exists,
276 return NULL, otherwise return a pointer to the interpreter. */
277
278static struct interp *
279interp_lookup_existing (struct ui *ui, const char *name)
4a8f6654 280{
8322445e 281 struct ui_interp_info *ui_interp = get_interp_info (ui);
4a8f6654
AC
282 struct interp *interp;
283
cb814510
PA
284 for (interp = ui_interp->interp_list;
285 interp != NULL;
286 interp = interp->next)
4a8f6654
AC
287 {
288 if (strcmp (interp->name, name) == 0)
289 return interp;
290 }
291
292 return NULL;
293}
294
8322445e
PA
295/* See interps.h. */
296
297struct interp *
298interp_lookup (struct ui *ui, const char *name)
299{
300 struct interp_factory *factory;
301 struct interp *interp;
302 int ix;
303
304 if (name == NULL || strlen (name) == 0)
305 return NULL;
306
307 /* Only create each interpreter once per top level. */
308 interp = interp_lookup_existing (ui, name);
309 if (interp != NULL)
310 return interp;
311
312 for (ix = 0;
313 VEC_iterate (interp_factory_p, interpreter_factories, ix, factory);
314 ++ix)
315 if (strcmp (factory->name, name) == 0)
316 {
317 interp = factory->func (name);
318 interp_add (ui, interp);
319 return interp;
320 }
321
322 return NULL;
323}
324
1777feb0 325/* Returns the current interpreter. */
4a8f6654
AC
326
327struct ui_out *
328interp_ui_out (struct interp *interp)
329{
cb814510 330 struct ui_interp_info *ui_interp = get_current_interp_info ();
4801a9a3 331
cb814510
PA
332 if (interp == NULL)
333 interp = ui_interp->current_interpreter;
334 return interp->procs->ui_out_proc (interp);
4801a9a3
PA
335}
336
37ce89eb
SS
337int
338current_interp_set_logging (int start_log, struct ui_file *out,
339 struct ui_file *logfile)
340{
cb814510
PA
341 struct ui_interp_info *ui_interp = get_current_interp_info ();
342 struct interp *interp = ui_interp->current_interpreter;
343
344 if (interp == NULL
345 || interp->procs->set_logging_proc == NULL)
37ce89eb
SS
346 return 0;
347
cb814510 348 return interp->procs->set_logging_proc (interp, start_log, out, logfile);
37ce89eb
SS
349}
350
c41535fd
EZ
351/* Temporarily overrides the current interpreter. */
352struct interp *
353interp_set_temp (const char *name)
354{
cb814510 355 struct ui_interp_info *ui_interp = get_current_interp_info ();
8322445e 356 struct interp *interp = interp_lookup (current_ui, name);
cb814510 357 struct interp *old_interp = ui_interp->current_interpreter;
c41535fd
EZ
358
359 if (interp)
cb814510 360 ui_interp->current_interpreter = interp;
c41535fd
EZ
361 return old_interp;
362}
363
4801a9a3 364/* Returns the interpreter's cookie. */
4a8f6654 365
4801a9a3
PA
366void *
367interp_data (struct interp *interp)
368{
369 return interp->data;
370}
371
372/* Returns the interpreter's name. */
373
374const char *
375interp_name (struct interp *interp)
376{
377 return interp->name;
4a8f6654
AC
378}
379
1777feb0 380/* Returns true if the current interp is the passed in name. */
4a8f6654
AC
381int
382current_interp_named_p (const char *interp_name)
383{
cb814510
PA
384 struct ui_interp_info *ui_interp = get_current_interp_info ();
385 struct interp *interp = ui_interp->current_interpreter;
386
387 if (interp != NULL)
388 return (strcmp (interp->name, interp_name) == 0);
4a8f6654
AC
389
390 return 0;
391}
392
17b2616c
PA
393/* The interpreter that was active when a command was executed.
394 Normally that'd always be CURRENT_INTERPRETER, except that MI's
395 -interpreter-exec command doesn't actually flip the current
396 interpreter when running its sub-command. The
397 `command_interpreter' global tracks when interp_exec is called
398 (IOW, when -interpreter-exec is called). If that is set, it is
399 INTERP in '-interpreter-exec INTERP "CMD"' or in 'interpreter-exec
400 INTERP "CMD". Otherwise, interp_exec isn't active, and so the
401 interpreter running the command is the current interpreter. */
402
403struct interp *
404command_interp (void)
405{
cb814510
PA
406 struct ui_interp_info *ui_interp = get_current_interp_info ();
407
408 if (ui_interp->command_interpreter != NULL)
409 return ui_interp->command_interpreter;
17b2616c 410 else
cb814510 411 return ui_interp->current_interpreter;
17b2616c
PA
412}
413
4a8f6654
AC
414/* Run the current command interpreter's main loop. */
415void
416current_interp_command_loop (void)
417{
cb814510
PA
418 struct ui_interp_info *ui_interp = get_current_interp_info ();
419 struct interp *interp = ui_interp->current_interpreter;
420
421 gdb_assert (ui_interp->current_interpreter != NULL);
4d09c5b4 422
cb814510 423 interp->procs->command_loop_proc (interp->data);
4a8f6654
AC
424}
425
3c216924
PA
426/* See interp.h */
427
428int
429interp_supports_command_editing (struct interp *interp)
430{
431 if (interp->procs->supports_command_editing_proc != NULL)
432 return interp->procs->supports_command_editing_proc (interp);
433 return 0;
434}
435
4a8f6654
AC
436int
437interp_quiet_p (struct interp *interp)
438{
cb814510
PA
439 struct ui_interp_info *ui_interp = get_current_interp_info ();
440
4a8f6654
AC
441 if (interp != NULL)
442 return interp->quiet_p;
443 else
cb814510 444 return ui_interp->current_interpreter->quiet_p;
4a8f6654
AC
445}
446
b9362cc7 447static int
4a8f6654
AC
448interp_set_quiet (struct interp *interp, int quiet)
449{
450 int old_val = interp->quiet_p;
abbb1732 451
4a8f6654
AC
452 interp->quiet_p = quiet;
453 return old_val;
454}
455
456/* interp_exec - This executes COMMAND_STR in the current
1777feb0 457 interpreter. */
4a8f6654 458
71fff37b 459struct gdb_exception
4a8f6654
AC
460interp_exec (struct interp *interp, const char *command_str)
461{
cb814510
PA
462 struct ui_interp_info *ui_interp = get_current_interp_info ();
463
17b2616c
PA
464 struct gdb_exception ex;
465 struct interp *save_command_interp;
466
34dc884e
DE
467 gdb_assert (interp->procs->exec_proc != NULL);
468
17b2616c 469 /* See `command_interp' for why we do this. */
cb814510
PA
470 save_command_interp = ui_interp->command_interpreter;
471 ui_interp->command_interpreter = interp;
17b2616c
PA
472
473 ex = interp->procs->exec_proc (interp->data, command_str);
474
cb814510 475 ui_interp->command_interpreter = save_command_interp;
17b2616c
PA
476
477 return ex;
4a8f6654
AC
478}
479
907d819a
MS
480/* A convenience routine that nulls out all the common command hooks.
481 Use it when removing your interpreter in its suspend proc. */
4a8f6654 482void
11308a41 483clear_interpreter_hooks (void)
4a8f6654 484{
9a4105ab 485 deprecated_print_frame_info_listing_hook = 0;
4a8f6654 486 /*print_frame_more_info_hook = 0; */
9a4105ab
AC
487 deprecated_query_hook = 0;
488 deprecated_warning_hook = 0;
9a4105ab 489 deprecated_interactive_hook = 0;
9a4105ab
AC
490 deprecated_readline_begin_hook = 0;
491 deprecated_readline_hook = 0;
492 deprecated_readline_end_hook = 0;
9a4105ab
AC
493 deprecated_context_hook = 0;
494 deprecated_target_wait_hook = 0;
495 deprecated_call_command_hook = 0;
9a4105ab 496 deprecated_error_begin_hook = 0;
4a8f6654
AC
497}
498
b9362cc7 499static void
4a8f6654
AC
500interpreter_exec_cmd (char *args, int from_tty)
501{
cb814510 502 struct ui_interp_info *ui_interp = get_current_interp_info ();
4a8f6654
AC
503 struct interp *old_interp, *interp_to_use;
504 char **prules = NULL;
505 char **trule = NULL;
506 unsigned int nrules;
507 unsigned int i;
508 int old_quiet, use_quiet;
5b3fca71 509 struct cleanup *cleanup;
4a8f6654 510
d1a41061
PP
511 if (args == NULL)
512 error_no_arg (_("interpreter-exec command"));
513
514 prules = gdb_buildargv (args);
5b3fca71 515 cleanup = make_cleanup_freeargv (prules);
4a8f6654
AC
516
517 nrules = 0;
d1a41061
PP
518 for (trule = prules; *trule != NULL; trule++)
519 nrules++;
4a8f6654
AC
520
521 if (nrules < 2)
8a3fe4f8 522 error (_("usage: interpreter-exec <interpreter> [ <command> ... ]"));
4a8f6654 523
cb814510 524 old_interp = ui_interp->current_interpreter;
4a8f6654 525
8322445e 526 interp_to_use = interp_lookup (current_ui, prules[0]);
4a8f6654 527 if (interp_to_use == NULL)
8a3fe4f8 528 error (_("Could not find interpreter \"%s\"."), prules[0]);
4a8f6654 529
1777feb0 530 /* Temporarily set interpreters quiet. */
4a8f6654
AC
531 old_quiet = interp_set_quiet (old_interp, 1);
532 use_quiet = interp_set_quiet (interp_to_use, 1);
533
683f2885 534 if (!interp_set (interp_to_use, 0))
8a3fe4f8 535 error (_("Could not switch to interpreter \"%s\"."), prules[0]);
4a8f6654
AC
536
537 for (i = 1; i < nrules; i++)
538 {
71fff37b 539 struct gdb_exception e = interp_exec (interp_to_use, prules[i]);
abbb1732 540
a7479e7e 541 if (e.reason < 0)
4a8f6654 542 {
683f2885 543 interp_set (old_interp, 0);
04d1f770
DJ
544 interp_set_quiet (interp_to_use, use_quiet);
545 interp_set_quiet (old_interp, old_quiet);
8a3fe4f8 546 error (_("error in command: \"%s\"."), prules[i]);
4a8f6654
AC
547 }
548 }
549
683f2885 550 interp_set (old_interp, 0);
4a8f6654
AC
551 interp_set_quiet (interp_to_use, use_quiet);
552 interp_set_quiet (old_interp, old_quiet);
5b3fca71
TT
553
554 do_cleanups (cleanup);
4a8f6654
AC
555}
556
1777feb0 557/* List the possible interpreters which could complete the given text. */
49c4e619 558static VEC (char_ptr) *
6f937416
PA
559interpreter_completer (struct cmd_list_element *ignore,
560 const char *text, const char *word)
4a8f6654 561{
8322445e 562 struct interp_factory *interp;
4a8f6654 563 int textlen;
49c4e619 564 VEC (char_ptr) *matches = NULL;
8322445e 565 int ix;
4a8f6654 566
4a8f6654 567 textlen = strlen (text);
8322445e
PA
568 for (ix = 0;
569 VEC_iterate (interp_factory_p, interpreter_factories, ix, interp);
570 ++ix)
4a8f6654
AC
571 {
572 if (strncmp (interp->name, text, textlen) == 0)
573 {
49c4e619
TT
574 char *match;
575
576 match = (char *) xmalloc (strlen (word) + strlen (interp->name) + 1);
4a8f6654 577 if (word == text)
49c4e619 578 strcpy (match, interp->name);
4a8f6654
AC
579 else if (word > text)
580 {
1777feb0 581 /* Return some portion of interp->name. */
49c4e619 582 strcpy (match, interp->name + (word - text));
4a8f6654
AC
583 }
584 else
585 {
1777feb0 586 /* Return some of text plus interp->name. */
49c4e619
TT
587 strncpy (match, word, text - word);
588 match[text - word] = '\0';
589 strcat (match, interp->name);
4a8f6654 590 }
49c4e619 591 VEC_safe_push (char_ptr, matches, match);
4a8f6654
AC
592 }
593 }
594
4a8f6654
AC
595 return matches;
596}
597
eb18d289
NR
598struct interp *
599top_level_interpreter (void)
600{
cb814510
PA
601 struct ui_interp_info *ui_interp = get_current_interp_info ();
602
603 return ui_interp->top_level_interpreter;
eb18d289
NR
604}
605
606void *
683f2885
VP
607top_level_interpreter_data (void)
608{
cb814510
PA
609 struct interp *interp;
610
611 interp = top_level_interpreter ();
612 gdb_assert (interp != NULL);
613 return interp->data;
683f2885
VP
614}
615
4a8f6654
AC
616/* This just adds the "interpreter-exec" command. */
617void
618_initialize_interpreter (void)
619{
620 struct cmd_list_element *c;
621
622 c = add_cmd ("interpreter-exec", class_support,
1a966eab
AC
623 interpreter_exec_cmd, _("\
624Execute a command in an interpreter. It takes two arguments:\n\
4a8f6654 625The first argument is the name of the interpreter to use.\n\
1a966eab 626The second argument is the command to execute.\n"), &cmdlist);
4a8f6654
AC
627 set_cmd_completer (c, interpreter_completer);
628}
This page took 1.787619 seconds and 4 git commands to generate.