merge from gcc
[deliverable/binutils-gdb.git] / gdb / event-top.c
CommitLineData
b5a0ac70 1/* Top level stuff for GDB, the GNU debugger.
637537d0
AC
2
3 Copyright 1999, 2000, 2001, 2002, 2004, 2005 Free Software
4 Foundation, Inc.
5
b5a0ac70
SS
6 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
c5aa993b
JM
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
b5a0ac70
SS
24
25#include "defs.h"
0f71a2f6 26#include "top.h"
b5a0ac70 27#include "inferior.h"
e514a9d6 28#include "target.h"
c5aa993b 29#include "terminal.h" /* for job_control */
9e0b60a8 30#include "event-loop.h"
c2c6d25f 31#include "event-top.h"
4389a95a 32#include "interps.h"
042be3a9 33#include <signal.h>
60250e8b 34#include "exceptions.h"
b5a0ac70 35
104c1213
JM
36/* For dont_repeat() */
37#include "gdbcmd.h"
38
b5a0ac70 39/* readline include files */
dbda9972
AC
40#include "readline/readline.h"
41#include "readline/history.h"
b5a0ac70
SS
42
43/* readline defines this. */
44#undef savestring
45
c2c6d25f
JM
46static void rl_callback_read_char_wrapper (gdb_client_data client_data);
47static void command_line_handler (char *rl);
48static void command_line_handler_continuation (struct continuation_arg *arg);
49static void change_line_handler (void);
50static void change_annotation_level (void);
51static void command_handler (char *command);
c2c6d25f
JM
52static void async_do_nothing (gdb_client_data arg);
53static void async_disconnect (gdb_client_data arg);
54static void async_stop_sig (gdb_client_data arg);
55static void async_float_handler (gdb_client_data arg);
b5a0ac70
SS
56
57/* Signal handlers. */
6d318c73 58#ifdef SIGQUIT
c2c6d25f 59static void handle_sigquit (int sig);
6d318c73 60#endif
c2c6d25f
JM
61static void handle_sighup (int sig);
62static void handle_sigfpe (int sig);
d4f3574e 63#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
c2c6d25f 64static void handle_sigwinch (int sig);
0f71a2f6 65#endif
b5a0ac70
SS
66
67/* Functions to be invoked by the event loop in response to
68 signals. */
c2c6d25f
JM
69static void async_do_nothing (gdb_client_data);
70static void async_disconnect (gdb_client_data);
71static void async_float_handler (gdb_client_data);
72static void async_stop_sig (gdb_client_data);
b5a0ac70 73
b5a0ac70
SS
74/* Readline offers an alternate interface, via callback
75 functions. These are all included in the file callback.c in the
76 readline distribution. This file provides (mainly) a function, which
77 the event loop uses as callback (i.e. event handler) whenever an event
78 is detected on the standard input file descriptor.
79 readline_callback_read_char is called (by the GDB event loop) whenever
80 there is a new character ready on the input stream. This function
81 incrementally builds a buffer internal to readline where it
82 accumulates the line read up to the point of invocation. In the
83 special case in which the character read is newline, the function
84 invokes a GDB supplied callback routine, which does the processing of
85 a full command line. This latter routine is the asynchronous analog
86 of the old command_line_input in gdb. Instead of invoking (and waiting
87 for) readline to read the command line and pass it back to
88 command_loop for processing, the new command_line_handler function has
89 the command line already available as its parameter. INPUT_HANDLER is
90 to be set to the function that readline will invoke when a complete
91 line of input is ready. CALL_READLINE is to be set to the function
92 that readline offers as callback to the event_loop. */
93
c2c6d25f
JM
94void (*input_handler) (char *);
95void (*call_readline) (gdb_client_data);
b5a0ac70
SS
96
97/* Important variables for the event loop. */
98
99/* This is used to determine if GDB is using the readline library or
100 its own simplified form of readline. It is used by the asynchronous
0f71a2f6 101 form of the set editing command.
392a587b 102 ezannoni: as of 1999-04-29 I expect that this
b5a0ac70
SS
103 variable will not be used after gdb is changed to use the event
104 loop as default engine, and event-top.c is merged into top.c. */
105int async_command_editing_p;
106
107/* This variable contains the new prompt that the user sets with the
108 set prompt command. */
109char *new_async_prompt;
110
111/* This is the annotation suffix that will be used when the
112 annotation_level is 2. */
113char *async_annotation_suffix;
114
104c1213
JM
115/* This is used to display the notification of the completion of an
116 asynchronous execution command. */
117int exec_done_display_p = 0;
118
b5a0ac70
SS
119/* This is the file descriptor for the input stream that GDB uses to
120 read commands from. */
121int input_fd;
122
123/* This is the prompt stack. Prompts will be pushed on the stack as
124 needed by the different 'kinds' of user inputs GDB is asking
125 for. See event-loop.h. */
126struct prompts the_prompts;
127
128/* signal handling variables */
129/* Each of these is a pointer to a function that the event loop will
130 invoke if the corresponding signal has received. The real signal
131 handlers mark these functions as ready to be executed and the event
132 loop, in a later iteration, calls them. See the function
133 invoke_async_signal_handler. */
97bb9d91 134void *sigint_token;
b5a0ac70 135#ifdef SIGHUP
97bb9d91 136void *sighup_token;
b5a0ac70 137#endif
6d318c73 138#ifdef SIGQUIT
97bb9d91 139void *sigquit_token;
6d318c73 140#endif
97bb9d91 141void *sigfpe_token;
b5a0ac70 142#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
97bb9d91 143void *sigwinch_token;
b5a0ac70 144#endif
0f71a2f6 145#ifdef STOP_SIGNAL
97bb9d91 146void *sigtstp_token;
0f71a2f6
JM
147#endif
148
b5a0ac70
SS
149/* Structure to save a partially entered command. This is used when
150 the user types '\' at the end of a command line. This is necessary
151 because each line of input is handled by a different call to
152 command_line_handler, and normally there is no state retained
153 between different calls. */
154int more_to_come = 0;
155
156struct readline_input_state
157 {
158 char *linebuffer;
159 char *linebuffer_ptr;
160 }
161readline_input_state;
467d8519
TT
162
163/* This hook is called by rl_callback_read_char_wrapper after each
164 character is processed. */
165void (*after_char_processing_hook) ();
b5a0ac70
SS
166\f
167
701f9765 168/* Wrapper function for calling into the readline library. The event
c2c6d25f
JM
169 loop expects the callback function to have a paramter, while readline
170 expects none. */
171static void
172rl_callback_read_char_wrapper (gdb_client_data client_data)
173{
174 rl_callback_read_char ();
467d8519
TT
175 if (after_char_processing_hook)
176 (*after_char_processing_hook) ();
c2c6d25f
JM
177}
178
b5a0ac70 179/* Initialize all the necessary variables, start the event loop,
085dd6e6 180 register readline, and stdin, start the loop. */
b5a0ac70 181void
c2c6d25f 182cli_command_loop (void)
b5a0ac70 183{
0f71a2f6
JM
184 int length;
185 char *a_prompt;
9e0b60a8 186 char *gdb_prompt = get_prompt ();
b5a0ac70 187
0f71a2f6
JM
188 /* If we are using readline, set things up and display the first
189 prompt, otherwise just print the prompt. */
190 if (async_command_editing_p)
191 {
192 /* Tell readline what the prompt to display is and what function it
c5aa993b
JM
193 will need to call after a whole line is read. This also displays
194 the first prompt. */
9e0b60a8 195 length = strlen (PREFIX (0)) + strlen (gdb_prompt) + strlen (SUFFIX (0)) + 1;
0f71a2f6
JM
196 a_prompt = (char *) xmalloc (length);
197 strcpy (a_prompt, PREFIX (0));
9e0b60a8 198 strcat (a_prompt, gdb_prompt);
0f71a2f6
JM
199 strcat (a_prompt, SUFFIX (0));
200 rl_callback_handler_install (a_prompt, input_handler);
201 }
202 else
203 display_gdb_prompt (0);
b5a0ac70 204
085dd6e6
JM
205 /* Now it's time to start the event loop. */
206 start_event_loop ();
b5a0ac70
SS
207}
208
209/* Change the function to be invoked every time there is a character
210 ready on stdin. This is used when the user sets the editing off,
211 therefore bypassing readline, and letting gdb handle the input
212 itself, via gdb_readline2. Also it is used in the opposite case in
213 which the user sets editing on again, by restoring readline
214 handling of the input. */
392a587b 215static void
c2c6d25f 216change_line_handler (void)
b5a0ac70 217{
c2c6d25f
JM
218 /* NOTE: this operates on input_fd, not instream. If we are reading
219 commands from a file, instream will point to the file. However in
220 async mode, we always read commands from a file with editing
221 off. This means that the 'set editing on/off' will have effect
222 only on the interactive session. */
223
b5a0ac70
SS
224 if (async_command_editing_p)
225 {
226 /* Turn on editing by using readline. */
c2c6d25f 227 call_readline = rl_callback_read_char_wrapper;
0f71a2f6 228 input_handler = command_line_handler;
b5a0ac70
SS
229 }
230 else
231 {
232 /* Turn off editing by using gdb_readline2. */
233 rl_callback_handler_remove ();
234 call_readline = gdb_readline2;
0f71a2f6
JM
235
236 /* Set up the command handler as well, in case we are called as
c5aa993b 237 first thing from .gdbinit. */
0f71a2f6 238 input_handler = command_line_handler;
b5a0ac70 239 }
b5a0ac70
SS
240}
241
242/* Displays the prompt. The prompt that is displayed is the current
243 top of the prompt stack, if the argument NEW_PROMPT is
244 0. Otherwise, it displays whatever NEW_PROMPT is. This is used
245 after each gdb command has completed, and in the following cases:
0f71a2f6
JM
246 1. when the user enters a command line which is ended by '\'
247 indicating that the command will continue on the next line.
b5a0ac70 248 In that case the prompt that is displayed is the empty string.
0f71a2f6
JM
249 2. When the user is entering 'commands' for a breakpoint, or
250 actions for a tracepoint. In this case the prompt will be '>'
251 3. Other????
b5a0ac70
SS
252 FIXME: 2. & 3. not implemented yet for async. */
253void
c2c6d25f 254display_gdb_prompt (char *new_prompt)
b5a0ac70
SS
255{
256 int prompt_length = 0;
c5aa993b 257 char *gdb_prompt = get_prompt ();
b5a0ac70 258
4389a95a
AC
259 /* Each interpreter has its own rules on displaying the command
260 prompt. */
261 if (!current_interp_display_prompt_p ())
fb40c209 262 return;
fb40c209 263
6426a772 264 if (target_executing && sync_execution)
adf40b2e
JM
265 {
266 /* This is to trick readline into not trying to display the
6426a772
JM
267 prompt. Even though we display the prompt using this
268 function, readline still tries to do its own display if we
269 don't call rl_callback_handler_install and
270 rl_callback_handler_remove (which readline detects because a
271 global variable is not set). If readline did that, it could
272 mess up gdb signal handlers for SIGINT. Readline assumes
273 that between calls to rl_set_signals and rl_clear_signals gdb
274 doesn't do anything with the signal handlers. Well, that's
275 not the case, because when the target executes we change the
276 SIGINT signal handler. If we allowed readline to display the
277 prompt, the signal handler change would happen exactly
278 between the calls to the above two functions.
279 Calling rl_callback_handler_remove(), does the job. */
adf40b2e
JM
280
281 rl_callback_handler_remove ();
282 return;
283 }
284
b5a0ac70
SS
285 if (!new_prompt)
286 {
287 /* Just use the top of the prompt stack. */
288 prompt_length = strlen (PREFIX (0)) +
289 strlen (SUFFIX (0)) +
9e0b60a8 290 strlen (gdb_prompt) + 1;
b5a0ac70
SS
291
292 new_prompt = (char *) alloca (prompt_length);
293
294 /* Prefix needs to have new line at end. */
295 strcpy (new_prompt, PREFIX (0));
9e0b60a8 296 strcat (new_prompt, gdb_prompt);
b5a0ac70
SS
297 /* Suffix needs to have a new line at end and \032 \032 at
298 beginning. */
299 strcat (new_prompt, SUFFIX (0));
300 }
301
302 if (async_command_editing_p)
303 {
304 rl_callback_handler_remove ();
305 rl_callback_handler_install (new_prompt, input_handler);
306 }
adf40b2e 307 /* new_prompt at this point can be the top of the stack or the one passed in */
b5a0ac70
SS
308 else if (new_prompt)
309 {
310 /* Don't use a _filtered function here. It causes the assumed
311 character position to be off, since the newline we read from
312 the user is not accounted for. */
313 fputs_unfiltered (new_prompt, gdb_stdout);
b5a0ac70
SS
314 gdb_flush (gdb_stdout);
315 }
316}
317
318/* Used when the user requests a different annotation level, with
319 'set annotate'. It pushes a new prompt (with prefix and suffix) on top
320 of the prompt stack, if the annotation level desired is 2, otherwise
321 it pops the top of the prompt stack when we want the annotation level
adf40b2e 322 to be the normal ones (1 or 0). */
392a587b 323static void
c2c6d25f 324change_annotation_level (void)
b5a0ac70
SS
325{
326 char *prefix, *suffix;
327
328 if (!PREFIX (0) || !PROMPT (0) || !SUFFIX (0))
329 {
330 /* The prompt stack has not been initialized to "", we are
331 using gdb w/o the --async switch */
8a3fe4f8 332 warning (_("Command has same effect as set annotate"));
b5a0ac70
SS
333 return;
334 }
335
336 if (annotation_level > 1)
337 {
338 if (!strcmp (PREFIX (0), "") && !strcmp (SUFFIX (0), ""))
339 {
340 /* Push a new prompt if the previous annotation_level was not >1. */
341 prefix = (char *) alloca (strlen (async_annotation_suffix) + 10);
342 strcpy (prefix, "\n\032\032pre-");
343 strcat (prefix, async_annotation_suffix);
344 strcat (prefix, "\n");
345
346 suffix = (char *) alloca (strlen (async_annotation_suffix) + 6);
347 strcpy (suffix, "\n\032\032");
348 strcat (suffix, async_annotation_suffix);
349 strcat (suffix, "\n");
350
351 push_prompt (prefix, (char *) 0, suffix);
352 }
353 }
354 else
355 {
356 if (strcmp (PREFIX (0), "") && strcmp (SUFFIX (0), ""))
357 {
358 /* Pop the top of the stack, we are going back to annotation < 1. */
359 pop_prompt ();
360 }
361 }
362}
363
364/* Pushes a new prompt on the prompt stack. Each prompt has three
365 parts: prefix, prompt, suffix. Usually prefix and suffix are empty
366 strings, except when the annotation level is 2. Memory is allocated
367 within savestring for the new prompt. */
43ff13b4 368void
c2c6d25f 369push_prompt (char *prefix, char *prompt, char *suffix)
b5a0ac70
SS
370{
371 the_prompts.top++;
372 PREFIX (0) = savestring (prefix, strlen (prefix));
373
43ff13b4
JM
374 /* Note that this function is used by the set annotate 2
375 command. This is why we take care of saving the old prompt
376 in case a new one is not specified. */
b5a0ac70
SS
377 if (prompt)
378 PROMPT (0) = savestring (prompt, strlen (prompt));
379 else
380 PROMPT (0) = savestring (PROMPT (-1), strlen (PROMPT (-1)));
381
382 SUFFIX (0) = savestring (suffix, strlen (suffix));
383}
384
385/* Pops the top of the prompt stack, and frees the memory allocated for it. */
43ff13b4 386void
c2c6d25f 387pop_prompt (void)
b5a0ac70 388{
43ff13b4
JM
389 /* If we are not during a 'synchronous' execution command, in which
390 case, the top prompt would be empty. */
391 if (strcmp (PROMPT (0), ""))
392 /* This is for the case in which the prompt is set while the
393 annotation level is 2. The top prompt will be changed, but when
394 we return to annotation level < 2, we want that new prompt to be
395 in effect, until the user does another 'set prompt'. */
396 if (strcmp (PROMPT (0), PROMPT (-1)))
397 {
b8c9b27d 398 xfree (PROMPT (-1));
43ff13b4
JM
399 PROMPT (-1) = savestring (PROMPT (0), strlen (PROMPT (0)));
400 }
b5a0ac70 401
b8c9b27d
KB
402 xfree (PREFIX (0));
403 xfree (PROMPT (0));
404 xfree (SUFFIX (0));
b5a0ac70
SS
405 the_prompts.top--;
406}
c2c6d25f
JM
407
408/* When there is an event ready on the stdin file desriptor, instead
409 of calling readline directly throught the callback function, or
410 instead of calling gdb_readline2, give gdb a chance to detect
411 errors and do something. */
412void
2acceee2 413stdin_event_handler (int error, gdb_client_data client_data)
c2c6d25f
JM
414{
415 if (error)
416 {
a3f17187 417 printf_unfiltered (_("error detected on stdin\n"));
2acceee2 418 delete_file_handler (input_fd);
c2c6d25f
JM
419 discard_all_continuations ();
420 /* If stdin died, we may as well kill gdb. */
c5394b80 421 quit_command ((char *) 0, stdin == instream);
c2c6d25f
JM
422 }
423 else
6426a772 424 (*call_readline) (client_data);
c2c6d25f
JM
425}
426
6426a772
JM
427/* Re-enable stdin after the end of an execution command in
428 synchronous mode, or after an error from the target, and we aborted
429 the exec operation. */
430
431void
432async_enable_stdin (void *dummy)
433{
434 /* See NOTE in async_disable_stdin() */
435 /* FIXME: cagney/1999-09-27: Call this before clearing
436 sync_execution. Current target_terminal_ours() implementations
437 check for sync_execution before switching the terminal. */
438 target_terminal_ours ();
439 pop_prompt ();
440 sync_execution = 0;
441}
442
443/* Disable reads from stdin (the console) marking the command as
444 synchronous. */
445
446void
447async_disable_stdin (void)
448{
449 sync_execution = 1;
450 push_prompt ("", "", "");
451 /* FIXME: cagney/1999-09-27: At present this call is technically
452 redundant since infcmd.c and infrun.c both already call
453 target_terminal_inferior(). As the terminal handling (in
454 sync/async mode) is refined, the duplicate calls can be
455 eliminated (Here or in infcmd.c/infrun.c). */
456 target_terminal_inferior ();
2acceee2
JM
457 /* Add the reinstate of stdin to the list of cleanups to be done
458 in case the target errors out and dies. These cleanups are also
459 done in case of normal successful termination of the execution
460 command, by complete_execution(). */
6426a772
JM
461 make_exec_error_cleanup (async_enable_stdin, NULL);
462}
b5a0ac70 463\f
6426a772 464
b5a0ac70
SS
465/* Handles a gdb command. This function is called by
466 command_line_handler, which has processed one or more input lines
467 into COMMAND. */
392a587b 468/* NOTE: 1999-04-30 This is the asynchronous version of the command_loop
b5a0ac70
SS
469 function. The command_loop function will be obsolete when we
470 switch to use the event loop at every execution of gdb. */
392a587b 471static void
c2c6d25f 472command_handler (char *command)
b5a0ac70
SS
473{
474 struct cleanup *old_chain;
475 int stdin_is_tty = ISATTY (stdin);
43ff13b4
JM
476 struct continuation_arg *arg1;
477 struct continuation_arg *arg2;
b5a0ac70
SS
478 long time_at_cmd_start;
479#ifdef HAVE_SBRK
480 long space_at_cmd_start = 0;
481#endif
482 extern int display_time;
483 extern int display_space;
484
b5a0ac70
SS
485 quit_flag = 0;
486 if (instream == stdin && stdin_is_tty)
487 reinitialize_more_filter ();
e2273c6d 488 old_chain = make_cleanup (null_cleanup, 0);
b5a0ac70 489
b5a0ac70
SS
490 /* If readline returned a NULL command, it means that the
491 connection with the terminal is gone. This happens at the
492 end of a testsuite run, after Expect has hung up
493 but GDB is still alive. In such a case, we just quit gdb
494 killing the inferior program too. */
495 if (command == 0)
496 quit_command ((char *) 0, stdin == instream);
497
498 time_at_cmd_start = get_run_time ();
499
500 if (display_space)
501 {
502#ifdef HAVE_SBRK
b5a0ac70 503 char *lim = (char *) sbrk (0);
6dd77b81 504 space_at_cmd_start = lim - lim_at_start;
b5a0ac70
SS
505#endif
506 }
507
508 execute_command (command, instream == stdin);
c5aa993b 509
43ff13b4 510 /* Set things up for this function to be compete later, once the
701f9765 511 execution has completed, if we are doing an execution command,
43ff13b4 512 otherwise, just go ahead and finish. */
6426a772 513 if (target_can_async_p () && target_executing)
43ff13b4 514 {
c5aa993b 515 arg1 =
43ff13b4 516 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
c5aa993b 517 arg2 =
43ff13b4
JM
518 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
519 arg1->next = arg2;
520 arg2->next = NULL;
87c4a039
EZ
521 arg1->data.longint = time_at_cmd_start;
522#ifdef HAVE_SBRK
523 arg2->data.longint = space_at_cmd_start;
524#endif
43ff13b4
JM
525 add_continuation (command_line_handler_continuation, arg1);
526 }
b5a0ac70 527
43ff13b4
JM
528 /* Do any commands attached to breakpoint we stopped at. Only if we
529 are always running synchronously. Or if we have just executed a
530 command that doesn't start the target. */
6426a772 531 if (!target_can_async_p () || !target_executing)
43ff13b4
JM
532 {
533 bpstat_do_actions (&stop_bpstat);
534 do_cleanups (old_chain);
c5aa993b 535
43ff13b4
JM
536 if (display_time)
537 {
538 long cmd_time = get_run_time () - time_at_cmd_start;
539
a3f17187 540 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
43ff13b4
JM
541 cmd_time / 1000000, cmd_time % 1000000);
542 }
543
544 if (display_space)
545 {
546#ifdef HAVE_SBRK
43ff13b4 547 char *lim = (char *) sbrk (0);
6dd77b81 548 long space_now = lim - lim_at_start;
43ff13b4
JM
549 long space_diff = space_now - space_at_cmd_start;
550
a3f17187 551 printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
43ff13b4
JM
552 space_now,
553 (space_diff >= 0 ? '+' : '-'),
554 space_diff);
555#endif
556 }
557 }
558}
559
560/* Do any commands attached to breakpoint we stopped at. Only if we
561 are always running synchronously. Or if we have just executed a
562 command that doesn't start the target. */
563void
c2c6d25f 564command_line_handler_continuation (struct continuation_arg *arg)
c5aa993b 565{
43ff13b4
JM
566 extern int display_time;
567 extern int display_space;
568
57e687d9
MS
569 long time_at_cmd_start = arg->data.longint;
570 long space_at_cmd_start = arg->next->data.longint;
b5a0ac70 571
43ff13b4 572 bpstat_do_actions (&stop_bpstat);
c5aa993b
JM
573 /*do_cleanups (old_chain); *//*?????FIXME????? */
574
b5a0ac70
SS
575 if (display_time)
576 {
577 long cmd_time = get_run_time () - time_at_cmd_start;
578
a3f17187 579 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
b5a0ac70
SS
580 cmd_time / 1000000, cmd_time % 1000000);
581 }
b5a0ac70
SS
582 if (display_space)
583 {
584#ifdef HAVE_SBRK
b5a0ac70 585 char *lim = (char *) sbrk (0);
6dd77b81 586 long space_now = lim - lim_at_start;
b5a0ac70
SS
587 long space_diff = space_now - space_at_cmd_start;
588
a3f17187 589 printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
b5a0ac70
SS
590 space_now,
591 (space_diff >= 0 ? '+' : '-'),
592 space_diff);
593#endif
594 }
595}
596
597/* Handle a complete line of input. This is called by the callback
598 mechanism within the readline library. Deal with incomplete commands
599 as well, by saving the partial input in a global buffer. */
600
392a587b 601/* NOTE: 1999-04-30 This is the asynchronous version of the
b5a0ac70
SS
602 command_line_input function. command_line_input will become
603 obsolete once we use the event loop as the default mechanism in
604 GDB. */
605static void
c2c6d25f 606command_line_handler (char *rl)
b5a0ac70
SS
607{
608 static char *linebuffer = 0;
609 static unsigned linelength = 0;
52f0bd74 610 char *p;
b5a0ac70 611 char *p1;
b5a0ac70
SS
612 extern char *line;
613 extern int linesize;
614 char *nline;
615 char got_eof = 0;
616
617
618 int repeat = (instream == stdin);
619
620 if (annotation_level > 1 && instream == stdin)
621 {
a3f17187 622 printf_unfiltered (("\n\032\032post-"));
306d9ac5 623 puts_unfiltered (async_annotation_suffix);
a3f17187 624 printf_unfiltered (("\n"));
b5a0ac70
SS
625 }
626
627 if (linebuffer == 0)
628 {
629 linelength = 80;
630 linebuffer = (char *) xmalloc (linelength);
631 }
632
633 p = linebuffer;
634
635 if (more_to_come)
636 {
637 strcpy (linebuffer, readline_input_state.linebuffer);
638 p = readline_input_state.linebuffer_ptr;
b8c9b27d 639 xfree (readline_input_state.linebuffer);
b5a0ac70 640 more_to_come = 0;
adf40b2e 641 pop_prompt ();
b5a0ac70
SS
642 }
643
644#ifdef STOP_SIGNAL
645 if (job_control)
0f71a2f6 646 signal (STOP_SIGNAL, handle_stop_sig);
b5a0ac70
SS
647#endif
648
649 /* Make sure that all output has been output. Some machines may let
650 you get away with leaving out some of the gdb_flush, but not all. */
651 wrap_here ("");
652 gdb_flush (gdb_stdout);
653 gdb_flush (gdb_stderr);
654
655 if (source_file_name != NULL)
637537d0 656 ++source_line_number;
b5a0ac70
SS
657
658 /* If we are in this case, then command_handler will call quit
659 and exit from gdb. */
660 if (!rl || rl == (char *) EOF)
661 {
662 got_eof = 1;
663 command_handler (0);
664 }
665 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
666 {
667 linelength = strlen (rl) + 1 + (p - linebuffer);
668 nline = (char *) xrealloc (linebuffer, linelength);
669 p += nline - linebuffer;
670 linebuffer = nline;
671 }
672 p1 = rl;
673 /* Copy line. Don't copy null at end. (Leaves line alone
674 if this was just a newline) */
675 while (*p1)
676 *p++ = *p1++;
677
b8c9b27d 678 xfree (rl); /* Allocated in readline. */
b5a0ac70 679
4dd79c29 680 if (p > linebuffer && *(p - 1) == '\\')
b5a0ac70 681 {
b5a0ac70
SS
682 p--; /* Put on top of '\'. */
683
d96429cd
AS
684 readline_input_state.linebuffer = savestring (linebuffer,
685 strlen (linebuffer));
686 readline_input_state.linebuffer_ptr = p;
687
688 /* We will not invoke a execute_command if there is more
689 input expected to complete the command. So, we need to
690 print an empty prompt here. */
691 more_to_come = 1;
692 push_prompt ("", "", "");
693 display_gdb_prompt (0);
694 return;
b5a0ac70
SS
695 }
696
697#ifdef STOP_SIGNAL
698 if (job_control)
699 signal (STOP_SIGNAL, SIG_DFL);
700#endif
701
702#define SERVER_COMMAND_LENGTH 7
703 server_command =
704 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 705 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
b5a0ac70
SS
706 if (server_command)
707 {
708 /* Note that we don't set `line'. Between this and the check in
709 dont_repeat, this insures that repeating will still do the
710 right thing. */
711 *p = '\0';
712 command_handler (linebuffer + SERVER_COMMAND_LENGTH);
713 display_gdb_prompt (0);
714 return;
715 }
716
717 /* Do history expansion if that is wished. */
718 if (history_expansion_p && instream == stdin
719 && ISATTY (instream))
720 {
721 char *history_value;
722 int expanded;
723
724 *p = '\0'; /* Insert null now. */
725 expanded = history_expand (linebuffer, &history_value);
726 if (expanded)
727 {
728 /* Print the changes. */
729 printf_unfiltered ("%s\n", history_value);
730
731 /* If there was an error, call this function again. */
732 if (expanded < 0)
733 {
b8c9b27d 734 xfree (history_value);
b5a0ac70
SS
735 return;
736 }
737 if (strlen (history_value) > linelength)
738 {
739 linelength = strlen (history_value) + 1;
740 linebuffer = (char *) xrealloc (linebuffer, linelength);
741 }
742 strcpy (linebuffer, history_value);
743 p = linebuffer + strlen (linebuffer);
b8c9b27d 744 xfree (history_value);
b5a0ac70
SS
745 }
746 }
747
748 /* If we just got an empty line, and that is supposed
749 to repeat the previous command, return the value in the
750 global buffer. */
751 if (repeat && p == linebuffer && *p != '\\')
752 {
753 command_handler (line);
754 display_gdb_prompt (0);
755 return;
756 }
757
758 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
759 if (repeat && !*p1)
760 {
761 command_handler (line);
762 display_gdb_prompt (0);
763 return;
764 }
765
766 *p = 0;
767
768 /* Add line to history if appropriate. */
769 if (instream == stdin
770 && ISATTY (stdin) && *linebuffer)
771 add_history (linebuffer);
772
773 /* Note: lines consisting solely of comments are added to the command
774 history. This is useful when you type a command, and then
775 realize you don't want to execute it quite yet. You can comment
776 out the command and then later fetch it from the value history
777 and remove the '#'. The kill ring is probably better, but some
778 people are in the habit of commenting things out. */
779 if (*p1 == '#')
780 *p1 = '\0'; /* Found a comment. */
781
782 /* Save into global buffer if appropriate. */
783 if (repeat)
784 {
785 if (linelength > linesize)
786 {
787 line = xrealloc (line, linelength);
788 linesize = linelength;
789 }
790 strcpy (line, linebuffer);
791 if (!more_to_come)
792 {
793 command_handler (line);
794 display_gdb_prompt (0);
795 }
796 return;
797 }
798
799 command_handler (linebuffer);
800 display_gdb_prompt (0);
801 return;
802}
803
804/* Does reading of input from terminal w/o the editing features
805 provided by the readline library. */
806
392a587b 807/* NOTE: 1999-04-30 Asynchronous version of gdb_readline. gdb_readline
b5a0ac70
SS
808 will become obsolete when the event loop is made the default
809 execution for gdb. */
085dd6e6 810void
c2c6d25f 811gdb_readline2 (gdb_client_data client_data)
b5a0ac70
SS
812{
813 int c;
814 char *result;
815 int input_index = 0;
816 int result_size = 80;
7be570e7
JM
817 static int done_once = 0;
818
819 /* Unbuffer the input stream, so that, later on, the calls to fgetc
820 fetch only one char at the time from the stream. The fgetc's will
821 get up to the first newline, but there may be more chars in the
822 stream after '\n'. If we buffer the input and fgetc drains the
823 stream, getting stuff beyond the newline as well, a select, done
824 afterwards will not trigger. */
825 if (!done_once && !ISATTY (instream))
826 {
827 setbuf (instream, NULL);
828 done_once = 1;
829 }
b5a0ac70
SS
830
831 result = (char *) xmalloc (result_size);
832
833 /* We still need the while loop here, even though it would seem
834 obvious to invoke gdb_readline2 at every character entered. If
835 not using the readline library, the terminal is in cooked mode,
836 which sends the characters all at once. Poll will notice that the
837 input fd has changed state only after enter is pressed. At this
838 point we still need to fetch all the chars entered. */
839
840 while (1)
841 {
842 /* Read from stdin if we are executing a user defined command.
843 This is the right thing for prompt_for_continue, at least. */
844 c = fgetc (instream ? instream : stdin);
845
846 if (c == EOF)
847 {
848 if (input_index > 0)
849 /* The last line does not end with a newline. Return it, and
850 if we are called again fgetc will still return EOF and
851 we'll return NULL then. */
852 break;
b8c9b27d 853 xfree (result);
0f71a2f6 854 (*input_handler) (0);
b5a0ac70
SS
855 }
856
857 if (c == '\n')
b5a0ac70
SS
858 {
859 if (input_index > 0 && result[input_index - 1] == '\r')
860 input_index--;
861 break;
862 }
b5a0ac70
SS
863
864 result[input_index++] = c;
865 while (input_index >= result_size)
866 {
867 result_size *= 2;
868 result = (char *) xrealloc (result, result_size);
869 }
870 }
871
872 result[input_index++] = '\0';
0f71a2f6 873 (*input_handler) (result);
b5a0ac70
SS
874}
875\f
876
877/* Initialization of signal handlers and tokens. There is a function
878 handle_sig* for each of the signals GDB cares about. Specifically:
879 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
880 functions are the actual signal handlers associated to the signals
881 via calls to signal(). The only job for these functions is to
882 enqueue the appropriate event/procedure with the event loop. Such
883 procedures are the old signal handlers. The event loop will take
884 care of invoking the queued procedures to perform the usual tasks
885 associated with the reception of the signal. */
392a587b 886/* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
b5a0ac70
SS
887 init_signals will become obsolete as we move to have to event loop
888 as the default for gdb. */
889void
c2c6d25f 890async_init_signals (void)
c5aa993b 891{
b5a0ac70
SS
892 signal (SIGINT, handle_sigint);
893 sigint_token =
0f71a2f6 894 create_async_signal_handler (async_request_quit, NULL);
a7266fef 895 signal (SIGTERM, handle_sigterm);
b5a0ac70
SS
896
897 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
898 to the inferior and breakpoints will be ignored. */
899#ifdef SIGTRAP
900 signal (SIGTRAP, SIG_DFL);
901#endif
902
6d318c73 903#ifdef SIGQUIT
b5a0ac70
SS
904 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
905 passed to the inferior, which we don't want. It would be
906 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
907 on BSD4.3 systems using vfork, that can affect the
908 GDB process as well as the inferior (the signal handling tables
909 might be in memory, shared between the two). Since we establish
910 a handler for SIGQUIT, when we call exec it will set the signal
911 to SIG_DFL for us. */
912 signal (SIGQUIT, handle_sigquit);
913 sigquit_token =
0f71a2f6 914 create_async_signal_handler (async_do_nothing, NULL);
6d318c73 915#endif
b5a0ac70
SS
916#ifdef SIGHUP
917 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
918 sighup_token =
0f71a2f6 919 create_async_signal_handler (async_disconnect, NULL);
b5a0ac70
SS
920 else
921 sighup_token =
0f71a2f6 922 create_async_signal_handler (async_do_nothing, NULL);
b5a0ac70
SS
923#endif
924 signal (SIGFPE, handle_sigfpe);
925 sigfpe_token =
0f71a2f6 926 create_async_signal_handler (async_float_handler, NULL);
b5a0ac70
SS
927
928#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
929 signal (SIGWINCH, handle_sigwinch);
930 sigwinch_token =
0f71a2f6 931 create_async_signal_handler (SIGWINCH_HANDLER, NULL);
b5a0ac70 932#endif
0f71a2f6
JM
933#ifdef STOP_SIGNAL
934 sigtstp_token =
935 create_async_signal_handler (async_stop_sig, NULL);
936#endif
937
938}
939
c5aa993b 940void
97bb9d91 941mark_async_signal_handler_wrapper (void *token)
0f71a2f6 942{
c2c6d25f 943 mark_async_signal_handler ((struct async_signal_handler *) token);
b5a0ac70
SS
944}
945
946/* Tell the event loop what to do if SIGINT is received.
947 See event-signal.c. */
c5aa993b 948void
c2c6d25f 949handle_sigint (int sig)
b5a0ac70
SS
950{
951 signal (sig, handle_sigint);
952
953 /* If immediate_quit is set, we go ahead and process the SIGINT right
954 away, even if we usually would defer this to the event loop. The
955 assumption here is that it is safe to process ^C immediately if
956 immediate_quit is set. If we didn't, SIGINT would be really
957 processed only the next time through the event loop. To get to
958 that point, though, the command that we want to interrupt needs to
959 finish first, which is unacceptable. */
960 if (immediate_quit)
0f71a2f6 961 async_request_quit (0);
b5a0ac70
SS
962 else
963 /* If immediate quit is not set, we process SIGINT the next time
964 through the loop, which is fine. */
0f71a2f6 965 mark_async_signal_handler_wrapper (sigint_token);
b5a0ac70
SS
966}
967
a7266fef
AS
968/* Quit GDB if SIGTERM is received.
969 GDB would quit anyway, but this way it will clean up properly. */
970void
971handle_sigterm (int sig)
972{
973 signal (sig, handle_sigterm);
974 quit_force ((char *) 0, stdin == instream);
975}
976
b5a0ac70 977/* Do the quit. All the checks have been done by the caller. */
c5aa993b 978void
c2c6d25f 979async_request_quit (gdb_client_data arg)
b5a0ac70
SS
980{
981 quit_flag = 1;
b5a0ac70 982 quit ();
b5a0ac70
SS
983}
984
6d318c73 985#ifdef SIGQUIT
b5a0ac70
SS
986/* Tell the event loop what to do if SIGQUIT is received.
987 See event-signal.c. */
c5aa993b 988static void
c2c6d25f 989handle_sigquit (int sig)
b5a0ac70 990{
0f71a2f6 991 mark_async_signal_handler_wrapper (sigquit_token);
b5a0ac70
SS
992 signal (sig, handle_sigquit);
993}
6d318c73 994#endif
b5a0ac70
SS
995
996/* Called by the event loop in response to a SIGQUIT. */
c5aa993b 997static void
c2c6d25f 998async_do_nothing (gdb_client_data arg)
b5a0ac70
SS
999{
1000 /* Empty function body. */
1001}
1002
1003#ifdef SIGHUP
1004/* Tell the event loop what to do if SIGHUP is received.
1005 See event-signal.c. */
c5aa993b 1006static void
fba45db2 1007handle_sighup (int sig)
b5a0ac70 1008{
0f71a2f6 1009 mark_async_signal_handler_wrapper (sighup_token);
b5a0ac70
SS
1010 signal (sig, handle_sighup);
1011}
1012
0f71a2f6 1013/* Called by the event loop to process a SIGHUP */
c5aa993b 1014static void
c2c6d25f 1015async_disconnect (gdb_client_data arg)
b5a0ac70
SS
1016{
1017 catch_errors (quit_cover, NULL,
1018 "Could not kill the program being debugged",
1019 RETURN_MASK_ALL);
1020 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
1021 kill (getpid (), SIGHUP);
1022}
1023#endif
1024
0f71a2f6 1025#ifdef STOP_SIGNAL
c5aa993b 1026void
c2c6d25f 1027handle_stop_sig (int sig)
0f71a2f6 1028{
c5aa993b
JM
1029 mark_async_signal_handler_wrapper (sigtstp_token);
1030 signal (sig, handle_stop_sig);
0f71a2f6
JM
1031}
1032
1033static void
c2c6d25f 1034async_stop_sig (gdb_client_data arg)
0f71a2f6 1035{
c5aa993b 1036 char *prompt = get_prompt ();
0f71a2f6
JM
1037#if STOP_SIGNAL == SIGTSTP
1038 signal (SIGTSTP, SIG_DFL);
2acceee2
JM
1039#if HAVE_SIGPROCMASK
1040 {
1041 sigset_t zero;
46711df8 1042
2acceee2
JM
1043 sigemptyset (&zero);
1044 sigprocmask (SIG_SETMASK, &zero, 0);
1045 }
46711df8 1046#elif HAVE_SIGSETMASK
0f71a2f6 1047 sigsetmask (0);
2acceee2 1048#endif
0f71a2f6
JM
1049 kill (getpid (), SIGTSTP);
1050 signal (SIGTSTP, handle_stop_sig);
1051#else
1052 signal (STOP_SIGNAL, handle_stop_sig);
1053#endif
1054 printf_unfiltered ("%s", prompt);
1055 gdb_flush (gdb_stdout);
1056
1057 /* Forget about any previous command -- null line now will do nothing. */
1058 dont_repeat ();
1059}
1060#endif /* STOP_SIGNAL */
1061
b5a0ac70
SS
1062/* Tell the event loop what to do if SIGFPE is received.
1063 See event-signal.c. */
c5aa993b 1064static void
c2c6d25f 1065handle_sigfpe (int sig)
b5a0ac70 1066{
0f71a2f6 1067 mark_async_signal_handler_wrapper (sigfpe_token);
b5a0ac70
SS
1068 signal (sig, handle_sigfpe);
1069}
1070
1071/* Event loop will call this functin to process a SIGFPE. */
c5aa993b 1072static void
c2c6d25f 1073async_float_handler (gdb_client_data arg)
b5a0ac70
SS
1074{
1075 /* This message is based on ANSI C, section 4.7. Note that integer
1076 divide by zero causes this, so "float" is a misnomer. */
8a3fe4f8 1077 error (_("Erroneous arithmetic operation."));
b5a0ac70
SS
1078}
1079
1080/* Tell the event loop what to do if SIGWINCH is received.
1081 See event-signal.c. */
1082#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
c5aa993b 1083static void
c2c6d25f 1084handle_sigwinch (int sig)
b5a0ac70 1085{
0f71a2f6 1086 mark_async_signal_handler_wrapper (sigwinch_token);
b5a0ac70
SS
1087 signal (sig, handle_sigwinch);
1088}
1089#endif
1090\f
1091
1092/* Called by do_setshow_command. */
b5a0ac70 1093void
c2c6d25f 1094set_async_editing_command (char *args, int from_tty, struct cmd_list_element *c)
b5a0ac70
SS
1095{
1096 change_line_handler ();
1097}
1098
1099/* Called by do_setshow_command. */
b5a0ac70 1100void
c2c6d25f 1101set_async_annotation_level (char *args, int from_tty, struct cmd_list_element *c)
b5a0ac70
SS
1102{
1103 change_annotation_level ();
1104}
1105
1106/* Called by do_setshow_command. */
b5a0ac70 1107void
c2c6d25f 1108set_async_prompt (char *args, int from_tty, struct cmd_list_element *c)
b5a0ac70
SS
1109{
1110 PROMPT (0) = savestring (new_async_prompt, strlen (new_async_prompt));
1111}
1112
0f71a2f6
JM
1113/* Set things up for readline to be invoked via the alternate
1114 interface, i.e. via a callback function (rl_callback_read_char),
c5aa993b 1115 and hook up instream to the event loop. */
0f71a2f6 1116void
cee6ddeb 1117gdb_setup_readline (void)
0f71a2f6 1118{
362646f5
AC
1119 /* This function is a noop for the sync case. The assumption is
1120 that the sync setup is ALL done in gdb_init, and we would only
1121 mess it up here. The sync stuff should really go away over
1122 time. */
7cd012f3 1123 extern int batch_silent;
362646f5 1124
1a088d06
AS
1125 if (!batch_silent)
1126 gdb_stdout = stdio_fileopen (stdout);
362646f5
AC
1127 gdb_stderr = stdio_fileopen (stderr);
1128 gdb_stdlog = gdb_stderr; /* for moment */
1129 gdb_stdtarg = gdb_stderr; /* for moment */
1130
1131 /* If the input stream is connected to a terminal, turn on
1132 editing. */
1133 if (ISATTY (instream))
9e0b60a8 1134 {
362646f5
AC
1135 /* Tell gdb that we will be using the readline library. This
1136 could be overwritten by a command in .gdbinit like 'set
1137 editing on' or 'off'. */
1138 async_command_editing_p = 1;
c5201926 1139
362646f5
AC
1140 /* When a character is detected on instream by select or poll,
1141 readline will be invoked via this callback function. */
1142 call_readline = rl_callback_read_char_wrapper;
9e0b60a8 1143 }
362646f5
AC
1144 else
1145 {
1146 async_command_editing_p = 0;
1147 call_readline = gdb_readline2;
1148 }
1149
1150 /* When readline has read an end-of-line character, it passes the
1151 complete line to gdb for processing. command_line_handler is the
1152 function that does this. */
1153 input_handler = command_line_handler;
1154
1155 /* Tell readline to use the same input stream that gdb uses. */
1156 rl_instream = instream;
1157
1158 /* Get a file descriptor for the input stream, so that we can
1159 register it with the event loop. */
1160 input_fd = fileno (instream);
1161
1162 /* Now we need to create the event sources for the input file
1163 descriptor. */
1164 /* At this point in time, this is the only event source that we
1165 register with the even loop. Another source is going to be the
1166 target program (inferior), but that must be registered only when
1167 it actually exists (I.e. after we say 'run' or after we connect
1168 to a remote target. */
1169 add_file_handler (input_fd, stdin_event_handler, 0);
0f71a2f6 1170}
cee6ddeb 1171
7d5b6fdd
EZ
1172/* Disable command input through the standard CLI channels. Used in
1173 the suspend proc for interpreters that use the standard gdb readline
1174 interface, like the cli & the mi. */
1175void
1176gdb_disable_readline (void)
1177{
362646f5
AC
1178 /* FIXME - It is too heavyweight to delete and remake these every
1179 time you run an interpreter that needs readline. It is probably
1180 better to have the interpreters cache these, which in turn means
1181 that this needs to be moved into interpreter specific code. */
7d5b6fdd
EZ
1182
1183#if 0
362646f5
AC
1184 ui_file_delete (gdb_stdout);
1185 ui_file_delete (gdb_stderr);
1186 gdb_stdlog = NULL;
1187 gdb_stdtarg = NULL;
7d5b6fdd
EZ
1188#endif
1189
362646f5
AC
1190 rl_callback_handler_remove ();
1191 delete_file_handler (input_fd);
7d5b6fdd 1192}
This page took 0.46464 seconds and 4 git commands to generate.