Multiexec MI
[deliverable/binutils-gdb.git] / gdb / mi / mi-interp.c
CommitLineData
4a8f6654
AC
1/* MI Interpreter Definitions and Commands for GDB, the GNU debugger.
2
4c38e0a4 3 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
9b254dd1 4 Free Software Foundation, Inc.
4a8f6654
AC
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
4a8f6654
AC
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4a8f6654
AC
20
21#include "defs.h"
22#include "gdb_string.h"
23#include "interps.h"
24#include "event-top.h"
25#include "event-loop.h"
26#include "inferior.h"
27#include "ui-out.h"
28#include "top.h"
c1043fc2 29#include "exceptions.h"
4a8f6654
AC
30#include "mi-main.h"
31#include "mi-cmds.h"
32#include "mi-out.h"
33#include "mi-console.h"
66bb093b 34#include "mi-common.h"
683f2885
VP
35#include "observer.h"
36#include "gdbthread.h"
c86cf029 37#include "solist.h"
4a8f6654 38
4a8f6654
AC
39/* These are the interpreter setup, etc. functions for the MI interpreter */
40static void mi_execute_command_wrapper (char *cmd);
41static void mi_command_loop (int mi_version);
4a8f6654
AC
42
43/* These are hooks that we put in place while doing interpreter_exec
44 so we can report interesting things that happened "behind the mi's
45 back" in this command */
bee0189a
DJ
46static int mi_interp_query_hook (const char *ctlstr, va_list ap)
47 ATTR_FORMAT (printf, 1, 0);
4a8f6654 48
f786f615 49static void mi3_command_loop (void);
4a8f6654
AC
50static void mi2_command_loop (void);
51static void mi1_command_loop (void);
52
53static void mi_insert_notify_hooks (void);
54static void mi_remove_notify_hooks (void);
1d33d6ba 55static void mi_on_normal_stop (struct bpstats *bs, int print_frame);
4a8f6654 56
683f2885 57static void mi_new_thread (struct thread_info *t);
a07daef3 58static void mi_thread_exit (struct thread_info *t, int silent);
a79b8f6e
VP
59static void mi_inferior_added (struct inferior *inf);
60static void mi_inferior_appeared (struct inferior *inf);
61static void mi_inferior_exit (struct inferior *inf);
62static void mi_inferior_removed (struct inferior *inf);
e1ac3328 63static void mi_on_resume (ptid_t ptid);
c86cf029
VP
64static void mi_solib_loaded (struct so_list *solib);
65static void mi_solib_unloaded (struct so_list *solib);
f3b1572e 66static void mi_about_to_proceed (void);
683f2885 67
a79b8f6e
VP
68static int report_initial_inferior (struct inferior *inf, void *closure);
69
4a8f6654 70static void *
683f2885 71mi_interpreter_init (int top_level)
4a8f6654
AC
72{
73 struct mi_interp *mi = XMALLOC (struct mi_interp);
74
4a8f6654
AC
75 /* HACK: We need to force stdout/stderr to point at the console. This avoids
76 any potential side effects caused by legacy code that is still
77 using the TUI / fputs_unfiltered_hook. So we set up output channels for
78 this now, and swap them in when we are run. */
79
80 raw_stdout = stdio_fileopen (stdout);
81
82 /* Create MI channels */
83 mi->out = mi_console_file_new (raw_stdout, "~", '"');
84 mi->err = mi_console_file_new (raw_stdout, "&", '"');
85 mi->log = mi->err;
86 mi->targ = mi_console_file_new (raw_stdout, "@", '"');
87 mi->event_channel = mi_console_file_new (raw_stdout, "=", 0);
88
683f2885 89 if (top_level)
063bfe2e
VP
90 {
91 observer_attach_new_thread (mi_new_thread);
92 observer_attach_thread_exit (mi_thread_exit);
a79b8f6e 93 observer_attach_inferior_added (mi_inferior_added);
6c95b8df 94 observer_attach_inferior_appeared (mi_inferior_appeared);
4a92f99b 95 observer_attach_inferior_exit (mi_inferior_exit);
a79b8f6e 96 observer_attach_inferior_removed (mi_inferior_removed);
f7f9a841 97 observer_attach_normal_stop (mi_on_normal_stop);
e1ac3328 98 observer_attach_target_resumed (mi_on_resume);
c86cf029
VP
99 observer_attach_solib_loaded (mi_solib_loaded);
100 observer_attach_solib_unloaded (mi_solib_unloaded);
f3b1572e 101 observer_attach_about_to_proceed (mi_about_to_proceed);
a79b8f6e
VP
102
103 /* The initial inferior is created before this function is called, so we
104 need to report it explicitly. Use iteration in case future version
105 of GDB creates more than one inferior up-front. */
106 iterate_over_inferiors (report_initial_inferior, mi);
063bfe2e 107 }
683f2885 108
4a8f6654
AC
109 return mi;
110}
111
112static int
113mi_interpreter_resume (void *data)
114{
115 struct mi_interp *mi = data;
116 /* As per hack note in mi_interpreter_init, swap in the output channels... */
117
118 gdb_setup_readline ();
119
362646f5
AC
120 /* These overwrite some of the initialization done in
121 _intialize_event_loop. */
122 call_readline = gdb_readline2;
123 input_handler = mi_execute_command_wrapper;
124 add_file_handler (input_fd, stdin_event_handler, 0);
125 async_command_editing_p = 0;
126 /* FIXME: This is a total hack for now. PB's use of the MI
127 implicitly relies on a bug in the async support which allows
128 asynchronous commands to leak through the commmand loop. The bug
129 involves (but is not limited to) the fact that sync_execution was
130 erroneously initialized to 0. Duplicate by initializing it thus
131 here... */
132 sync_execution = 0;
4a8f6654
AC
133
134 gdb_stdout = mi->out;
135 /* Route error and log output through the MI */
136 gdb_stderr = mi->err;
137 gdb_stdlog = mi->log;
138 /* Route target output through the MI. */
139 gdb_stdtarg = mi->targ;
1f20321b
FR
140 /* Route target error through the MI as well. */
141 gdb_stdtargerr = mi->targ;
4a8f6654
AC
142
143 /* Replace all the hooks that we know about. There really needs to
144 be a better way of doing this... */
145 clear_interpreter_hooks ();
146
9a4105ab 147 deprecated_show_load_progress = mi_load_progress;
4a8f6654
AC
148
149 /* If we're _the_ interpreter, take control. */
150 if (current_interp_named_p (INTERP_MI1))
9a4105ab 151 deprecated_command_loop_hook = mi1_command_loop;
f786f615 152 else if (current_interp_named_p (INTERP_MI2))
9a4105ab 153 deprecated_command_loop_hook = mi2_command_loop;
f786f615 154 else if (current_interp_named_p (INTERP_MI3))
9a4105ab 155 deprecated_command_loop_hook = mi3_command_loop;
4a8f6654 156 else
9a4105ab 157 deprecated_command_loop_hook = mi2_command_loop;
4a8f6654
AC
158
159 return 1;
160}
161
162static int
163mi_interpreter_suspend (void *data)
164{
165 gdb_disable_readline ();
166 return 1;
167}
168
71fff37b 169static struct gdb_exception
4a8f6654
AC
170mi_interpreter_exec (void *data, const char *command)
171{
71fff37b 172 static struct gdb_exception ok;
4a8f6654
AC
173 char *tmp = alloca (strlen (command) + 1);
174 strcpy (tmp, command);
175 mi_execute_command_wrapper (tmp);
c1043fc2 176 return exception_none;
4a8f6654
AC
177}
178
179/* Never display the default gdb prompt in mi case. */
180static int
181mi_interpreter_prompt_p (void *data)
182{
183 return 0;
184}
185
ce8f13f8 186void
4a8f6654
AC
187mi_cmd_interpreter_exec (char *command, char **argv, int argc)
188{
189 struct interp *interp_to_use;
4a8f6654
AC
190 int i;
191 struct interp_procs *procs;
a13e061a
PA
192 char *mi_error_message = NULL;
193 struct cleanup *old_chain;
4a8f6654
AC
194
195 if (argc < 2)
a13e061a 196 error ("mi_cmd_interpreter_exec: Usage: -interpreter-exec interp command");
4a8f6654
AC
197
198 interp_to_use = interp_lookup (argv[0]);
199 if (interp_to_use == NULL)
a13e061a 200 error ("mi_cmd_interpreter_exec: could not find interpreter \"%s\"", argv[0]);
4a8f6654
AC
201
202 if (!interp_exec_p (interp_to_use))
a13e061a
PA
203 error ("mi_cmd_interpreter_exec: interpreter \"%s\" does not support command execution",
204 argv[0]);
4a8f6654
AC
205
206 /* Insert the MI out hooks, making sure to also call the interpreter's hooks
207 if it has any. */
208 /* KRS: We shouldn't need this... Events should be installed and they should
209 just ALWAYS fire something out down the MI channel... */
210 mi_insert_notify_hooks ();
211
212 /* Now run the code... */
213
a13e061a 214 old_chain = make_cleanup (null_cleanup, 0);
4a8f6654
AC
215 for (i = 1; i < argc; i++)
216 {
32c1e744
VP
217 struct gdb_exception e = interp_exec (interp_to_use, argv[i]);
218 if (e.reason < 0)
219 {
220 mi_error_message = xstrdup (e.message);
a13e061a 221 make_cleanup (xfree, mi_error_message);
32c1e744
VP
222 break;
223 }
4a8f6654
AC
224 }
225
226 mi_remove_notify_hooks ();
227
a13e061a
PA
228 if (mi_error_message != NULL)
229 error ("%s", mi_error_message);
230 do_cleanups (old_chain);
4a8f6654
AC
231}
232
233/*
234 * mi_insert_notify_hooks - This inserts a number of hooks that are meant to produce
235 * async-notify ("=") MI messages while running commands in another interpreter
236 * using mi_interpreter_exec. The canonical use for this is to allow access to
237 * the gdb CLI interpreter from within the MI, while still producing MI style output
238 * when actions in the CLI command change gdb's state.
239*/
240
241static void
242mi_insert_notify_hooks (void)
243{
9a4105ab 244 deprecated_query_hook = mi_interp_query_hook;
4a8f6654
AC
245}
246
247static void
11308a41 248mi_remove_notify_hooks (void)
4a8f6654 249{
9a4105ab 250 deprecated_query_hook = NULL;
4a8f6654
AC
251}
252
253static int
254mi_interp_query_hook (const char *ctlstr, va_list ap)
255{
256 return 1;
257}
258
4a8f6654
AC
259static void
260mi_execute_command_wrapper (char *cmd)
261{
262 mi_execute_command (cmd, stdin == instream);
263}
264
265static void
266mi1_command_loop (void)
267{
268 mi_command_loop (1);
269}
270
271static void
272mi2_command_loop (void)
273{
274 mi_command_loop (2);
275}
276
f786f615
AC
277static void
278mi3_command_loop (void)
279{
280 mi_command_loop (3);
281}
282
4a8f6654
AC
283static void
284mi_command_loop (int mi_version)
285{
4a8f6654
AC
286 /* Turn off 8 bit strings in quoted output. Any character with the
287 high bit set is printed using C's octal format. */
288 sevenbit_strings = 1;
289 /* Tell the world that we're alive */
290 fputs_unfiltered ("(gdb) \n", raw_stdout);
291 gdb_flush (raw_stdout);
362646f5 292 start_event_loop ();
4a8f6654
AC
293}
294
683f2885
VP
295static void
296mi_new_thread (struct thread_info *t)
297{
298 struct mi_interp *mi = top_level_interpreter_data ();
a79b8f6e
VP
299 struct inferior *inf = find_inferior_pid (ptid_get_pid (t->ptid));
300
301 gdb_assert (inf);
683f2885 302
3d043ef6 303 fprintf_unfiltered (mi->event_channel,
a79b8f6e
VP
304 "thread-created,id=\"%d\",group-id=\"i%d\"",
305 t->num, inf->num);
683f2885
VP
306 gdb_flush (mi->event_channel);
307}
308
063bfe2e 309static void
a07daef3 310mi_thread_exit (struct thread_info *t, int silent)
063bfe2e 311{
a07daef3 312 struct mi_interp *mi;
a79b8f6e 313 struct inferior *inf;
a07daef3
PA
314
315 if (silent)
316 return;
317
a79b8f6e
VP
318 inf = find_inferior_pid (ptid_get_pid (t->ptid));
319
a07daef3 320 mi = top_level_interpreter_data ();
063bfe2e 321 target_terminal_ours ();
3d043ef6 322 fprintf_unfiltered (mi->event_channel,
a79b8f6e
VP
323 "thread-exited,id=\"%d\",group-id=\"i%d\"",
324 t->num, inf->num);
063bfe2e
VP
325 gdb_flush (mi->event_channel);
326}
327
a79b8f6e
VP
328static void
329mi_inferior_added (struct inferior *inf)
330{
331 struct mi_interp *mi = top_level_interpreter_data ();
332 target_terminal_ours ();
333 fprintf_unfiltered (mi->event_channel,
334 "thread-group-added,id=\"i%d\"",
335 inf->num);
336 gdb_flush (mi->event_channel);
337}
338
339static void
340mi_inferior_appeared (struct inferior *inf)
4a92f99b
VP
341{
342 struct mi_interp *mi = top_level_interpreter_data ();
343 target_terminal_ours ();
a79b8f6e
VP
344 fprintf_unfiltered (mi->event_channel,
345 "thread-group-started,id=\"i%d\",pid=\"%d\"",
346 inf->num, inf->pid);
4a92f99b
VP
347 gdb_flush (mi->event_channel);
348}
349
350static void
a79b8f6e 351mi_inferior_exit (struct inferior *inf)
4a92f99b
VP
352{
353 struct mi_interp *mi = top_level_interpreter_data ();
354 target_terminal_ours ();
a79b8f6e
VP
355 fprintf_unfiltered (mi->event_channel, "thread-group-exited,id=\"i%d\"",
356 inf->num);
4a92f99b
VP
357 gdb_flush (mi->event_channel);
358}
359
a79b8f6e
VP
360static void
361mi_inferior_removed (struct inferior *inf)
362{
363 struct mi_interp *mi = top_level_interpreter_data ();
364 target_terminal_ours ();
365 fprintf_unfiltered (mi->event_channel,
366 "thread-group-removed,id=\"i%d\"",
367 inf->num);
368 gdb_flush (mi->event_channel);
369}
370
f7f9a841 371static void
1d33d6ba 372mi_on_normal_stop (struct bpstats *bs, int print_frame)
f7f9a841
VP
373{
374 /* Since this can be called when CLI command is executing,
375 using cli interpreter, be sure to use MI uiout for output,
376 not the current one. */
1d33d6ba 377 struct ui_out *mi_uiout = interp_ui_out (top_level_interpreter ());
f7f9a841
VP
378 struct mi_interp *mi = top_level_interpreter_data ();
379
1d33d6ba
VP
380 if (print_frame)
381 {
dc146f7c 382 int core;
1d33d6ba
VP
383 if (uiout != mi_uiout)
384 {
385 /* The normal_stop function has printed frame information into
386 CLI uiout, or some other non-MI uiout. There's no way we
387 can extract proper fields from random uiout object, so we print
388 the frame again. In practice, this can only happen when running
389 a CLI command in MI. */
390 struct ui_out *saved_uiout = uiout;
391 uiout = mi_uiout;
392 print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC);
393 uiout = saved_uiout;
394 }
395
396 ui_out_field_int (mi_uiout, "thread-id",
397 pid_to_thread_id (inferior_ptid));
398 if (non_stop)
399 {
400 struct cleanup *back_to = make_cleanup_ui_out_list_begin_end
401 (mi_uiout, "stopped-threads");
402 ui_out_field_int (mi_uiout, NULL,
403 pid_to_thread_id (inferior_ptid));
404 do_cleanups (back_to);
405 }
406 else
407 ui_out_field_string (mi_uiout, "stopped-threads", "all");
dc146f7c
VP
408
409 core = target_core_of_thread (inferior_ptid);
410 if (core != -1)
411 ui_out_field_int (mi_uiout, "core", core);
1d33d6ba
VP
412 }
413
f7f9a841 414 fputs_unfiltered ("*stopped", raw_stdout);
1d33d6ba
VP
415 mi_out_put (mi_uiout, raw_stdout);
416 mi_out_rewind (mi_uiout);
4333ada3 417 mi_print_timing_maybe ();
f7f9a841
VP
418 fputs_unfiltered ("\n", raw_stdout);
419 gdb_flush (raw_stdout);
420}
421
f3b1572e
PA
422static void
423mi_about_to_proceed (void)
424{
425 /* Suppress output while calling an inferior function. */
426
427 if (!ptid_equal (inferior_ptid, null_ptid))
428 {
429 struct thread_info *tp = inferior_thread ();
430 if (tp->in_infcall)
431 return;
432 }
433
434 mi_proceeded = 1;
435}
436
d90e17a7
PA
437static int
438mi_output_running_pid (struct thread_info *info, void *arg)
439{
440 ptid_t *ptid = arg;
441
442 if (ptid_get_pid (*ptid) == ptid_get_pid (info->ptid))
443 fprintf_unfiltered (raw_stdout,
444 "*running,thread-id=\"%d\"\n",
445 info->num);
446
447 return 0;
448}
449
450static int
451mi_inferior_count (struct inferior *inf, void *arg)
452{
453 if (inf->pid != 0)
454 {
455 int *count_p = arg;
456 (*count_p)++;
457 }
458
459 return 0;
460}
461
e1ac3328
VP
462static void
463mi_on_resume (ptid_t ptid)
464{
c5a4d20b
PA
465 struct thread_info *tp = NULL;
466
9944e9c2 467 if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
c5a4d20b
PA
468 tp = inferior_thread ();
469 else
e09875d4 470 tp = find_thread_ptid (ptid);
c5a4d20b
PA
471
472 /* Suppress output while calling an inferior function. */
473 if (tp->in_infcall)
474 return;
475
a2840c35
VP
476 /* To cater for older frontends, emit ^running, but do it only once
477 per each command. We do it here, since at this point we know
478 that the target was successfully resumed, and in non-async mode,
479 we won't return back to MI interpreter code until the target
480 is done running, so delaying the output of "^running" until then
481 will make it impossible for frontend to know what's going on.
482
483 In future (MI3), we'll be outputting "^done" here. */
f3b1572e 484 if (!running_result_record_printed && mi_proceeded)
a2840c35 485 {
c271b6e2
VP
486 fprintf_unfiltered (raw_stdout, "%s^running\n",
487 current_token ? current_token : "");
a2840c35
VP
488 }
489
e1ac3328
VP
490 if (PIDGET (ptid) == -1)
491 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"all\"\n");
d90e17a7 492 else if (ptid_is_pid (ptid))
bb599c81 493 {
ab730e72 494 int count = 0;
d90e17a7
PA
495
496 /* Backwards compatibility. If there's only one inferior,
497 output "all", otherwise, output each resumed thread
498 individually. */
499 iterate_over_inferiors (mi_inferior_count, &count);
500
501 if (count == 1)
502 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"all\"\n");
503 else
504 iterate_over_threads (mi_output_running_pid, &ptid);
bb599c81 505 }
e1ac3328
VP
506 else
507 {
e09875d4 508 struct thread_info *ti = find_thread_ptid (ptid);
e1ac3328
VP
509 gdb_assert (ti);
510 fprintf_unfiltered (raw_stdout, "*running,thread-id=\"%d\"\n", ti->num);
511 }
a2840c35 512
f3b1572e 513 if (!running_result_record_printed && mi_proceeded)
a2840c35
VP
514 {
515 running_result_record_printed = 1;
516 /* This is what gdb used to do historically -- printing prompt even if
517 it cannot actually accept any input. This will be surely removed
518 for MI3, and may be removed even earler. */
519 /* FIXME: review the use of target_is_async_p here -- is that
520 what we want? */
521 if (!target_is_async_p ())
522 fputs_unfiltered ("(gdb) \n", raw_stdout);
523 }
c1828f25 524 gdb_flush (raw_stdout);
e1ac3328
VP
525}
526
c86cf029
VP
527static void
528mi_solib_loaded (struct so_list *solib)
529{
530 struct mi_interp *mi = top_level_interpreter_data ();
531 target_terminal_ours ();
a79b8f6e
VP
532 if (gdbarch_has_global_solist (target_gdbarch))
533 fprintf_unfiltered (mi->event_channel,
534 "library-loaded,id=\"%s\",target-name=\"%s\","
535 "host-name=\"%s\",symbols-loaded=\"%d\"",
536 solib->so_original_name, solib->so_original_name,
537 solib->so_name, solib->symbols_loaded);
538 else
539 fprintf_unfiltered (mi->event_channel,
540 "library-loaded,id=\"%s\",target-name=\"%s\","
541 "host-name=\"%s\",symbols-loaded=\"%d\","
542 "thread-group=\"i%d\"",
543 solib->so_original_name, solib->so_original_name,
544 solib->so_name, solib->symbols_loaded,
545 current_inferior ()->num);
546
c86cf029
VP
547 gdb_flush (mi->event_channel);
548}
549
550static void
551mi_solib_unloaded (struct so_list *solib)
552{
553 struct mi_interp *mi = top_level_interpreter_data ();
554 target_terminal_ours ();
a79b8f6e
VP
555 if (gdbarch_has_global_solist (target_gdbarch))
556 fprintf_unfiltered (mi->event_channel,
557 "library-unloaded,id=\"%s\",target-name=\"%s\","
558 "host-name=\"%s\"",
559 solib->so_original_name, solib->so_original_name,
560 solib->so_name);
561 else
562 fprintf_unfiltered (mi->event_channel,
563 "library-unloaded,id=\"%s\",target-name=\"%s\","
564 "host-name=\"%s\",thread-group=\"i%d\"",
565 solib->so_original_name, solib->so_original_name,
566 solib->so_name, current_inferior ()->num);
567
c86cf029
VP
568 gdb_flush (mi->event_channel);
569}
570
a79b8f6e
VP
571static int
572report_initial_inferior (struct inferior *inf, void *closure)
573{
574 /* This function is called from mi_intepreter_init, and since
575 mi_inferior_added assumes that inferior is fully initialized
576 and top_level_interpreter_data is set, we cannot call
577 it here. */
578 struct mi_interp *mi = closure;
579 target_terminal_ours ();
580 fprintf_unfiltered (mi->event_channel,
581 "thread-group-added,id=\"i%d\"",
582 inf->num);
583 gdb_flush (mi->event_channel);
584 return 0;
585}
c86cf029 586
b9362cc7
AC
587extern initialize_file_ftype _initialize_mi_interp; /* -Wmissing-prototypes */
588
4a8f6654
AC
589void
590_initialize_mi_interp (void)
591{
592 static const struct interp_procs procs =
593 {
594 mi_interpreter_init, /* init_proc */
595 mi_interpreter_resume, /* resume_proc */
596 mi_interpreter_suspend, /* suspend_proc */
597 mi_interpreter_exec, /* exec_proc */
598 mi_interpreter_prompt_p /* prompt_proc_p */
599 };
600
2fcf52f0 601 /* The various interpreter levels. */
4a8f6654 602 interp_add (interp_new (INTERP_MI1, NULL, mi_out_new (1), &procs));
2fcf52f0
AC
603 interp_add (interp_new (INTERP_MI2, NULL, mi_out_new (2), &procs));
604 interp_add (interp_new (INTERP_MI3, NULL, mi_out_new (3), &procs));
4a8f6654 605
2fcf52f0
AC
606 /* "mi" selects the most recent released version. "mi2" was
607 released as part of GDB 6.0. */
608 interp_add (interp_new (INTERP_MI, NULL, mi_out_new (2), &procs));
4a8f6654 609}
This page took 0.593375 seconds and 4 git commands to generate.