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