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