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