Use struct buffer in gdb_readline_no_editing_callback
[external/binutils.git] / gdb / event-top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3    Copyright (C) 1999-2016 Free Software Foundation, Inc.
4
5    Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "top.h"
24 #include "inferior.h"
25 #include "infrun.h"
26 #include "target.h"
27 #include "terminal.h"           /* for job_control */
28 #include "event-loop.h"
29 #include "event-top.h"
30 #include "interps.h"
31 #include <signal.h>
32 #include "cli/cli-script.h"     /* for reset_command_nest_depth */
33 #include "main.h"
34 #include "gdbthread.h"
35 #include "observer.h"
36 #include "continuations.h"
37 #include "gdbcmd.h"             /* for dont_repeat() */
38 #include "annotate.h"
39 #include "maint.h"
40 #include "buffer.h"
41
42 /* readline include files.  */
43 #include "readline/readline.h"
44 #include "readline/history.h"
45
46 /* readline defines this.  */
47 #undef savestring
48
49 static void rl_callback_read_char_wrapper (gdb_client_data client_data);
50 static void command_line_handler (char *rl);
51 static void change_line_handler (void);
52 static void command_handler (char *command);
53 static char *top_level_prompt (void);
54
55 /* Signal handlers.  */
56 #ifdef SIGQUIT
57 static void handle_sigquit (int sig);
58 #endif
59 #ifdef SIGHUP
60 static void handle_sighup (int sig);
61 #endif
62 static void handle_sigfpe (int sig);
63
64 /* Functions to be invoked by the event loop in response to
65    signals.  */
66 #if defined (SIGQUIT) || defined (SIGHUP)
67 static void async_do_nothing (gdb_client_data);
68 #endif
69 #ifdef SIGHUP
70 static void async_disconnect (gdb_client_data);
71 #endif
72 static void async_float_handler (gdb_client_data);
73 #ifdef STOP_SIGNAL
74 static void async_stop_sig (gdb_client_data);
75 #endif
76 static void async_sigterm_handler (gdb_client_data arg);
77
78 /* Readline offers an alternate interface, via callback
79    functions.  These are all included in the file callback.c in the
80    readline distribution.  This file provides (mainly) a function, which
81    the event loop uses as callback (i.e. event handler) whenever an event
82    is detected on the standard input file descriptor.
83    readline_callback_read_char is called (by the GDB event loop) whenever
84    there is a new character ready on the input stream.  This function
85    incrementally builds a buffer internal to readline where it
86    accumulates the line read up to the point of invocation.  In the
87    special case in which the character read is newline, the function
88    invokes a GDB supplied callback routine, which does the processing of
89    a full command line.  This latter routine is the asynchronous analog
90    of the old command_line_input in gdb.  Instead of invoking (and waiting
91    for) readline to read the command line and pass it back to
92    command_loop for processing, the new command_line_handler function has
93    the command line already available as its parameter.  INPUT_HANDLER is
94    to be set to the function that readline will invoke when a complete
95    line of input is ready.  CALL_READLINE is to be set to the function
96    that readline offers as callback to the event_loop.  */
97
98 void (*input_handler) (char *);
99 void (*call_readline) (gdb_client_data);
100
101 /* Important variables for the event loop.  */
102
103 /* This is used to determine if GDB is using the readline library or
104    its own simplified form of readline.  It is used by the asynchronous
105    form of the set editing command.
106    ezannoni: as of 1999-04-29 I expect that this
107    variable will not be used after gdb is changed to use the event
108    loop as default engine, and event-top.c is merged into top.c.  */
109 int async_command_editing_p;
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 /* Used by the stdin event handler to compensate for missed stdin events.
120    Setting this to a non-zero value inside an stdin callback makes the callback
121    run again.  */
122 int call_stdin_event_handler_again_p;
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 static struct async_signal_handler *sigint_token;
131 #ifdef SIGHUP
132 static struct async_signal_handler *sighup_token;
133 #endif
134 #ifdef SIGQUIT
135 static struct async_signal_handler *sigquit_token;
136 #endif
137 static struct async_signal_handler *sigfpe_token;
138 #ifdef STOP_SIGNAL
139 static struct async_signal_handler *sigtstp_token;
140 #endif
141 static struct async_signal_handler *async_sigterm_token;
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 static 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) (void);
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
164    readline 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.  The DATA is the
175    interpreter data cookie, ignored for now.  */
176
177 void
178 cli_command_loop (void *data)
179 {
180   display_gdb_prompt (0);
181
182   /* Now it's time to start the event loop.  */
183   start_event_loop ();
184 }
185
186 /* Change the function to be invoked every time there is a character
187    ready on stdin.  This is used when the user sets the editing off,
188    therefore bypassing readline, and letting gdb handle the input
189    itself, via gdb_readline_no_editing_callback.  Also it is used in
190    the opposite case in which the user sets editing on again, by
191    restoring readline handling of the input.  */
192 static void
193 change_line_handler (void)
194 {
195   /* NOTE: this operates on input_fd, not instream.  If we are reading
196      commands from a file, instream will point to the file.  However in
197      async mode, we always read commands from a file with editing
198      off.  This means that the 'set editing on/off' will have effect
199      only on the interactive session.  */
200
201   if (async_command_editing_p)
202     {
203       /* Turn on editing by using readline.  */
204       call_readline = rl_callback_read_char_wrapper;
205       input_handler = command_line_handler;
206     }
207   else
208     {
209       /* Turn off editing by using gdb_readline_no_editing_callback.  */
210       gdb_rl_callback_handler_remove ();
211       call_readline = gdb_readline_no_editing_callback;
212
213       /* Set up the command handler as well, in case we are called as
214          first thing from .gdbinit.  */
215       input_handler = command_line_handler;
216     }
217 }
218
219 /* The functions below are wrappers for rl_callback_handler_remove and
220    rl_callback_handler_install that keep track of whether the callback
221    handler is installed in readline.  This is necessary because after
222    handling a target event of a background execution command, we may
223    need to reinstall the callback handler if it was removed due to a
224    secondary prompt.  See gdb_readline_wrapper_line.  We don't
225    unconditionally install the handler for every target event because
226    that also clears the line buffer, thus installing it while the user
227    is typing would lose input.  */
228
229 /* Whether we've registered a callback handler with readline.  */
230 static int callback_handler_installed;
231
232 /* See event-top.h, and above.  */
233
234 void
235 gdb_rl_callback_handler_remove (void)
236 {
237   rl_callback_handler_remove ();
238   callback_handler_installed = 0;
239 }
240
241 /* See event-top.h, and above.  Note this wrapper doesn't have an
242    actual callback parameter because we always install
243    INPUT_HANDLER.  */
244
245 void
246 gdb_rl_callback_handler_install (const char *prompt)
247 {
248   /* Calling rl_callback_handler_install resets readline's input
249      buffer.  Calling this when we were already processing input
250      therefore loses input.  */
251   gdb_assert (!callback_handler_installed);
252
253   rl_callback_handler_install (prompt, input_handler);
254   callback_handler_installed = 1;
255 }
256
257 /* See event-top.h, and above.  */
258
259 void
260 gdb_rl_callback_handler_reinstall (void)
261 {
262   if (!callback_handler_installed)
263     {
264       /* Passing NULL as prompt argument tells readline to not display
265          a prompt.  */
266       gdb_rl_callback_handler_install (NULL);
267     }
268 }
269
270 /* Displays the prompt.  If the argument NEW_PROMPT is NULL, the
271    prompt that is displayed is the current top level prompt.
272    Otherwise, it displays whatever NEW_PROMPT is as a local/secondary
273    prompt.
274
275    This is used after each gdb command has completed, and in the
276    following cases:
277
278    1. When the user enters a command line which is ended by '\'
279    indicating that the command will continue on the next line.  In
280    that case the prompt that is displayed is the empty string.
281
282    2. When the user is entering 'commands' for a breakpoint, or
283    actions for a tracepoint.  In this case the prompt will be '>'
284
285    3. On prompting for pagination.  */
286
287 void
288 display_gdb_prompt (const char *new_prompt)
289 {
290   char *actual_gdb_prompt = NULL;
291   struct cleanup *old_chain;
292
293   annotate_display_prompt ();
294
295   /* Reset the nesting depth used when trace-commands is set.  */
296   reset_command_nest_depth ();
297
298   old_chain = make_cleanup (free_current_contents, &actual_gdb_prompt);
299
300   /* Do not call the python hook on an explicit prompt change as
301      passed to this function, as this forms a secondary/local prompt,
302      IE, displayed but not set.  */
303   if (! new_prompt)
304     {
305       if (sync_execution)
306         {
307           /* This is to trick readline into not trying to display the
308              prompt.  Even though we display the prompt using this
309              function, readline still tries to do its own display if
310              we don't call rl_callback_handler_install and
311              rl_callback_handler_remove (which readline detects
312              because a global variable is not set).  If readline did
313              that, it could mess up gdb signal handlers for SIGINT.
314              Readline assumes that between calls to rl_set_signals and
315              rl_clear_signals gdb doesn't do anything with the signal
316              handlers.  Well, that's not the case, because when the
317              target executes we change the SIGINT signal handler.  If
318              we allowed readline to display the prompt, the signal
319              handler change would happen exactly between the calls to
320              the above two functions.  Calling
321              rl_callback_handler_remove(), does the job.  */
322
323           gdb_rl_callback_handler_remove ();
324           do_cleanups (old_chain);
325           return;
326         }
327       else
328         {
329           /* Display the top level prompt.  */
330           actual_gdb_prompt = top_level_prompt ();
331         }
332     }
333   else
334     actual_gdb_prompt = xstrdup (new_prompt);
335
336   if (async_command_editing_p)
337     {
338       gdb_rl_callback_handler_remove ();
339       gdb_rl_callback_handler_install (actual_gdb_prompt);
340     }
341   /* new_prompt at this point can be the top of the stack or the one
342      passed in.  It can't be NULL.  */
343   else
344     {
345       /* Don't use a _filtered function here.  It causes the assumed
346          character position to be off, since the newline we read from
347          the user is not accounted for.  */
348       fputs_unfiltered (actual_gdb_prompt, gdb_stdout);
349       gdb_flush (gdb_stdout);
350     }
351
352   do_cleanups (old_chain);
353 }
354
355 /* Return the top level prompt, as specified by "set prompt", possibly
356    overriden by the python gdb.prompt_hook hook, and then composed
357    with the prompt prefix and suffix (annotations).  The caller is
358    responsible for freeing the returned string.  */
359
360 static char *
361 top_level_prompt (void)
362 {
363   char *prompt;
364
365   /* Give observers a chance of changing the prompt.  E.g., the python
366      `gdb.prompt_hook' is installed as an observer.  */
367   observer_notify_before_prompt (get_prompt ());
368
369   prompt = get_prompt ();
370
371   if (annotation_level >= 2)
372     {
373       /* Prefix needs to have new line at end.  */
374       const char prefix[] = "\n\032\032pre-prompt\n";
375
376       /* Suffix needs to have a new line at end and \032 \032 at
377          beginning.  */
378       const char suffix[] = "\n\032\032prompt\n";
379
380       return concat (prefix, prompt, suffix, NULL);
381     }
382
383   return xstrdup (prompt);
384 }
385
386 /* When there is an event ready on the stdin file descriptor, instead
387    of calling readline directly throught the callback function, or
388    instead of calling gdb_readline_no_editing_callback, give gdb a
389    chance to detect errors and do something.  */
390
391 void
392 stdin_event_handler (int error, gdb_client_data client_data)
393 {
394   if (error)
395     {
396       printf_unfiltered (_("error detected on stdin\n"));
397       delete_file_handler (input_fd);
398       /* If stdin died, we may as well kill gdb.  */
399       quit_command ((char *) 0, stdin == instream);
400     }
401   else
402     {
403       do
404         {
405           call_stdin_event_handler_again_p = 0;
406           (*call_readline) (client_data);
407         } while (call_stdin_event_handler_again_p != 0);
408     }
409 }
410
411 /* Re-enable stdin after the end of an execution command in
412    synchronous mode, or after an error from the target, and we aborted
413    the exec operation.  */
414
415 void
416 async_enable_stdin (void)
417 {
418   if (sync_execution)
419     {
420       /* See NOTE in async_disable_stdin().  */
421       /* FIXME: cagney/1999-09-27: Call this before clearing
422          sync_execution.  Current target_terminal_ours() implementations
423          check for sync_execution before switching the terminal.  */
424       target_terminal_ours ();
425       sync_execution = 0;
426     }
427 }
428
429 /* Disable reads from stdin (the console) marking the command as
430    synchronous.  */
431
432 void
433 async_disable_stdin (void)
434 {
435   sync_execution = 1;
436 }
437 \f
438
439 /* Handles a gdb command.  This function is called by
440    command_line_handler, which has processed one or more input lines
441    into COMMAND.  */
442 /* NOTE: 1999-04-30 This is the asynchronous version of the command_loop
443    function.  The command_loop function will be obsolete when we
444    switch to use the event loop at every execution of gdb.  */
445 static void
446 command_handler (char *command)
447 {
448   struct cleanup *stat_chain;
449
450   clear_quit_flag ();
451   if (instream == stdin)
452     reinitialize_more_filter ();
453
454   /* If readline returned a NULL command, it means that the connection
455      with the terminal is gone.  This happens at the end of a
456      testsuite run, after Expect has hung up but GDB is still alive.
457      In such a case, we just quit gdb killing the inferior program
458      too.  */
459   if (command == 0)
460     {
461       printf_unfiltered ("quit\n");
462       execute_command ("quit", stdin == instream);
463     }
464
465   stat_chain = make_command_stats_cleanup (1);
466
467   execute_command (command, instream == stdin);
468
469   /* Do any commands attached to breakpoint we stopped at.  */
470   bpstat_do_actions ();
471
472   do_cleanups (stat_chain);
473 }
474
475 /* Handle a complete line of input.  This is called by the callback
476    mechanism within the readline library.  Deal with incomplete
477    commands as well, by saving the partial input in a global
478    buffer.  */
479
480 /* NOTE: 1999-04-30 This is the asynchronous version of the
481    command_line_input function; command_line_input will become
482    obsolete once we use the event loop as the default mechanism in
483    GDB.  */
484 static void
485 command_line_handler (char *rl)
486 {
487   static char *linebuffer = 0;
488   static unsigned linelength = 0;
489   char *p;
490   char *p1;
491   char *nline;
492   int repeat = (instream == stdin);
493
494   if (annotation_level > 1 && instream == stdin)
495     printf_unfiltered (("\n\032\032post-prompt\n"));
496
497   if (linebuffer == 0)
498     {
499       linelength = 80;
500       linebuffer = (char *) xmalloc (linelength);
501       linebuffer[0] = '\0';
502     }
503
504   p = linebuffer;
505
506   if (more_to_come)
507     {
508       strcpy (linebuffer, readline_input_state.linebuffer);
509       p = readline_input_state.linebuffer_ptr;
510       xfree (readline_input_state.linebuffer);
511       more_to_come = 0;
512     }
513
514 #ifdef STOP_SIGNAL
515   if (job_control)
516     signal (STOP_SIGNAL, handle_stop_sig);
517 #endif
518
519   /* Make sure that all output has been output.  Some machines may let
520      you get away with leaving out some of the gdb_flush, but not
521      all.  */
522   wrap_here ("");
523   gdb_flush (gdb_stdout);
524   gdb_flush (gdb_stderr);
525
526   if (source_file_name != NULL)
527     ++source_line_number;
528
529   /* If we are in this case, then command_handler will call quit 
530      and exit from gdb.  */
531   if (!rl || rl == (char *) EOF)
532     {
533       command_handler (0);
534       return;                   /* Lint.  */
535     }
536   if (strlen (rl) + 1 + (p - linebuffer) > linelength)
537     {
538       linelength = strlen (rl) + 1 + (p - linebuffer);
539       nline = (char *) xrealloc (linebuffer, linelength);
540       p += nline - linebuffer;
541       linebuffer = nline;
542     }
543   p1 = rl;
544   /* Copy line.  Don't copy null at end.  (Leaves line alone
545      if this was just a newline).  */
546   while (*p1)
547     *p++ = *p1++;
548
549   xfree (rl);                   /* Allocated in readline.  */
550
551   if (p > linebuffer && *(p - 1) == '\\')
552     {
553       *p = '\0';
554       p--;                      /* Put on top of '\'.  */
555
556       readline_input_state.linebuffer = xstrdup (linebuffer);
557       readline_input_state.linebuffer_ptr = p;
558
559       /* We will not invoke a execute_command if there is more
560          input expected to complete the command.  So, we need to
561          print an empty prompt here.  */
562       more_to_come = 1;
563       display_gdb_prompt ("");
564       return;
565     }
566
567 #ifdef STOP_SIGNAL
568   if (job_control)
569     signal (STOP_SIGNAL, SIG_DFL);
570 #endif
571
572 #define SERVER_COMMAND_LENGTH 7
573   server_command =
574     (p - linebuffer > SERVER_COMMAND_LENGTH)
575     && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
576   if (server_command)
577     {
578       /* Note that we don't set `line'.  Between this and the check in
579          dont_repeat, this insures that repeating will still do the
580          right thing.  */
581       *p = '\0';
582       command_handler (linebuffer + SERVER_COMMAND_LENGTH);
583       display_gdb_prompt (0);
584       return;
585     }
586
587   /* Do history expansion if that is wished.  */
588   if (history_expansion_p && instream == stdin
589       && ISATTY (instream))
590     {
591       char *history_value;
592       int expanded;
593
594       *p = '\0';                /* Insert null now.  */
595       expanded = history_expand (linebuffer, &history_value);
596       if (expanded)
597         {
598           /* Print the changes.  */
599           printf_unfiltered ("%s\n", history_value);
600
601           /* If there was an error, call this function again.  */
602           if (expanded < 0)
603             {
604               xfree (history_value);
605               return;
606             }
607           if (strlen (history_value) > linelength)
608             {
609               linelength = strlen (history_value) + 1;
610               linebuffer = (char *) xrealloc (linebuffer, linelength);
611             }
612           strcpy (linebuffer, history_value);
613           p = linebuffer + strlen (linebuffer);
614         }
615       xfree (history_value);
616     }
617
618   /* If we just got an empty line, and that is supposed to repeat the
619      previous command, return the value in the global buffer.  */
620   if (repeat && p == linebuffer && *p != '\\')
621     {
622       command_handler (saved_command_line);
623       display_gdb_prompt (0);
624       return;
625     }
626
627   for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
628   if (repeat && !*p1)
629     {
630       command_handler (saved_command_line);
631       display_gdb_prompt (0);
632       return;
633     }
634
635   *p = 0;
636
637   /* Add line to history if appropriate.  */
638   if (*linebuffer && input_from_terminal_p ())
639     gdb_add_history (linebuffer);
640
641   /* Note: lines consisting solely of comments are added to the command
642      history.  This is useful when you type a command, and then
643      realize you don't want to execute it quite yet.  You can comment
644      out the command and then later fetch it from the value history
645      and remove the '#'.  The kill ring is probably better, but some
646      people are in the habit of commenting things out.  */
647   if (*p1 == '#')
648     *p1 = '\0';                 /* Found a comment.  */
649
650   /* Save into global buffer if appropriate.  */
651   if (repeat)
652     {
653       if (linelength > saved_command_line_size)
654         {
655           saved_command_line
656             = (char *) xrealloc (saved_command_line, linelength);
657           saved_command_line_size = linelength;
658         }
659       strcpy (saved_command_line, linebuffer);
660       if (!more_to_come)
661         {
662           command_handler (saved_command_line);
663           display_gdb_prompt (0);
664         }
665       return;
666     }
667
668   command_handler (linebuffer);
669   display_gdb_prompt (0);
670   return;
671 }
672
673 /* Does reading of input from terminal w/o the editing features
674    provided by the readline library.  Calls the line input handler
675    once we have a whole input line.  */
676
677 void
678 gdb_readline_no_editing_callback (gdb_client_data client_data)
679 {
680   int c;
681   char *result;
682   struct buffer line_buffer;
683   static int done_once = 0;
684
685   buffer_init (&line_buffer);
686
687   /* Unbuffer the input stream, so that, later on, the calls to fgetc
688      fetch only one char at the time from the stream.  The fgetc's will
689      get up to the first newline, but there may be more chars in the
690      stream after '\n'.  If we buffer the input and fgetc drains the
691      stream, getting stuff beyond the newline as well, a select, done
692      afterwards will not trigger.  */
693   if (!done_once && !ISATTY (instream))
694     {
695       setbuf (instream, NULL);
696       done_once = 1;
697     }
698
699   /* We still need the while loop here, even though it would seem
700      obvious to invoke gdb_readline_no_editing_callback at every
701      character entered.  If not using the readline library, the
702      terminal is in cooked mode, which sends the characters all at
703      once.  Poll will notice that the input fd has changed state only
704      after enter is pressed.  At this point we still need to fetch all
705      the chars entered.  */
706
707   while (1)
708     {
709       /* Read from stdin if we are executing a user defined command.
710          This is the right thing for prompt_for_continue, at least.  */
711       c = fgetc (instream ? instream : stdin);
712
713       if (c == EOF)
714         {
715           if (line_buffer.used_size > 0)
716             {
717               /* The last line does not end with a newline.  Return it, and
718                  if we are called again fgetc will still return EOF and
719                  we'll return NULL then.  */
720               break;
721             }
722           xfree (buffer_finish (&line_buffer));
723           (*input_handler) (0);
724           return;
725         }
726
727       if (c == '\n')
728         {
729           if (line_buffer.used_size > 0
730               && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
731             line_buffer.used_size--;
732           break;
733         }
734
735       buffer_grow_char (&line_buffer, c);
736     }
737
738   buffer_grow_char (&line_buffer, '\0');
739   result = buffer_finish (&line_buffer);
740   (*input_handler) (result);
741 }
742 \f
743
744 /* Initialization of signal handlers and tokens.  There is a function
745    handle_sig* for each of the signals GDB cares about.  Specifically:
746    SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH.  These
747    functions are the actual signal handlers associated to the signals
748    via calls to signal().  The only job for these functions is to
749    enqueue the appropriate event/procedure with the event loop.  Such
750    procedures are the old signal handlers.  The event loop will take
751    care of invoking the queued procedures to perform the usual tasks
752    associated with the reception of the signal.  */
753 /* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
754    init_signals will become obsolete as we move to have to event loop
755    as the default for gdb.  */
756 void
757 async_init_signals (void)
758 {
759   signal (SIGINT, handle_sigint);
760   sigint_token =
761     create_async_signal_handler (async_request_quit, NULL);
762   signal (SIGTERM, handle_sigterm);
763   async_sigterm_token
764     = create_async_signal_handler (async_sigterm_handler, NULL);
765
766   /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
767      to the inferior and breakpoints will be ignored.  */
768 #ifdef SIGTRAP
769   signal (SIGTRAP, SIG_DFL);
770 #endif
771
772 #ifdef SIGQUIT
773   /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
774      passed to the inferior, which we don't want.  It would be
775      possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
776      on BSD4.3 systems using vfork, that can affect the
777      GDB process as well as the inferior (the signal handling tables
778      might be in memory, shared between the two).  Since we establish
779      a handler for SIGQUIT, when we call exec it will set the signal
780      to SIG_DFL for us.  */
781   signal (SIGQUIT, handle_sigquit);
782   sigquit_token =
783     create_async_signal_handler (async_do_nothing, NULL);
784 #endif
785 #ifdef SIGHUP
786   if (signal (SIGHUP, handle_sighup) != SIG_IGN)
787     sighup_token =
788       create_async_signal_handler (async_disconnect, NULL);
789   else
790     sighup_token =
791       create_async_signal_handler (async_do_nothing, NULL);
792 #endif
793   signal (SIGFPE, handle_sigfpe);
794   sigfpe_token =
795     create_async_signal_handler (async_float_handler, NULL);
796
797 #ifdef STOP_SIGNAL
798   sigtstp_token =
799     create_async_signal_handler (async_stop_sig, NULL);
800 #endif
801 }
802
803 /* Tell the event loop what to do if SIGINT is received.
804    See event-signal.c.  */
805 void
806 handle_sigint (int sig)
807 {
808   signal (sig, handle_sigint);
809
810   /* We could be running in a loop reading in symfiles or something so
811      it may be quite a while before we get back to the event loop.  So
812      set quit_flag to 1 here.  Then if QUIT is called before we get to
813      the event loop, we will unwind as expected.  */
814
815   set_quit_flag ();
816
817   /* If immediate_quit is set, we go ahead and process the SIGINT right
818      away, even if we usually would defer this to the event loop.  The
819      assumption here is that it is safe to process ^C immediately if
820      immediate_quit is set.  If we didn't, SIGINT would be really
821      processed only the next time through the event loop.  To get to
822      that point, though, the command that we want to interrupt needs to
823      finish first, which is unacceptable.  If immediate quit is not set,
824      we process SIGINT the next time through the loop, which is fine.  */
825   gdb_call_async_signal_handler (sigint_token, immediate_quit);
826 }
827
828 /* Handle GDB exit upon receiving SIGTERM if target_can_async_p ().  */
829
830 static void
831 async_sigterm_handler (gdb_client_data arg)
832 {
833   quit_force (NULL, stdin == instream);
834 }
835
836 /* See defs.h.  */
837 volatile int sync_quit_force_run;
838
839 /* Quit GDB if SIGTERM is received.
840    GDB would quit anyway, but this way it will clean up properly.  */
841 void
842 handle_sigterm (int sig)
843 {
844   signal (sig, handle_sigterm);
845
846   sync_quit_force_run = 1;
847   set_quit_flag ();
848
849   mark_async_signal_handler (async_sigterm_token);
850 }
851
852 /* Do the quit.  All the checks have been done by the caller.  */
853 void
854 async_request_quit (gdb_client_data arg)
855 {
856   /* If the quit_flag has gotten reset back to 0 by the time we get
857      back here, that means that an exception was thrown to unwind the
858      current command before we got back to the event loop.  So there
859      is no reason to call quit again here.  */
860
861   if (check_quit_flag ())
862     quit ();
863 }
864
865 #ifdef SIGQUIT
866 /* Tell the event loop what to do if SIGQUIT is received.
867    See event-signal.c.  */
868 static void
869 handle_sigquit (int sig)
870 {
871   mark_async_signal_handler (sigquit_token);
872   signal (sig, handle_sigquit);
873 }
874 #endif
875
876 #if defined (SIGQUIT) || defined (SIGHUP)
877 /* Called by the event loop in response to a SIGQUIT or an
878    ignored SIGHUP.  */
879 static void
880 async_do_nothing (gdb_client_data arg)
881 {
882   /* Empty function body.  */
883 }
884 #endif
885
886 #ifdef SIGHUP
887 /* Tell the event loop what to do if SIGHUP is received.
888    See event-signal.c.  */
889 static void
890 handle_sighup (int sig)
891 {
892   mark_async_signal_handler (sighup_token);
893   signal (sig, handle_sighup);
894 }
895
896 /* Called by the event loop to process a SIGHUP.  */
897 static void
898 async_disconnect (gdb_client_data arg)
899 {
900
901   TRY
902     {
903       quit_cover ();
904     }
905
906   CATCH (exception, RETURN_MASK_ALL)
907     {
908       fputs_filtered ("Could not kill the program being debugged",
909                       gdb_stderr);
910       exception_print (gdb_stderr, exception);
911     }
912   END_CATCH
913
914   TRY
915     {
916       pop_all_targets ();
917     }
918   CATCH (exception, RETURN_MASK_ALL)
919     {
920     }
921   END_CATCH
922
923   signal (SIGHUP, SIG_DFL);     /*FIXME: ???????????  */
924   raise (SIGHUP);
925 }
926 #endif
927
928 #ifdef STOP_SIGNAL
929 void
930 handle_stop_sig (int sig)
931 {
932   mark_async_signal_handler (sigtstp_token);
933   signal (sig, handle_stop_sig);
934 }
935
936 static void
937 async_stop_sig (gdb_client_data arg)
938 {
939   char *prompt = get_prompt ();
940
941 #if STOP_SIGNAL == SIGTSTP
942   signal (SIGTSTP, SIG_DFL);
943 #if HAVE_SIGPROCMASK
944   {
945     sigset_t zero;
946
947     sigemptyset (&zero);
948     sigprocmask (SIG_SETMASK, &zero, 0);
949   }
950 #elif HAVE_SIGSETMASK
951   sigsetmask (0);
952 #endif
953   raise (SIGTSTP);
954   signal (SIGTSTP, handle_stop_sig);
955 #else
956   signal (STOP_SIGNAL, handle_stop_sig);
957 #endif
958   printf_unfiltered ("%s", prompt);
959   gdb_flush (gdb_stdout);
960
961   /* Forget about any previous command -- null line now will do
962      nothing.  */
963   dont_repeat ();
964 }
965 #endif /* STOP_SIGNAL */
966
967 /* Tell the event loop what to do if SIGFPE is received.
968    See event-signal.c.  */
969 static void
970 handle_sigfpe (int sig)
971 {
972   mark_async_signal_handler (sigfpe_token);
973   signal (sig, handle_sigfpe);
974 }
975
976 /* Event loop will call this functin to process a SIGFPE.  */
977 static void
978 async_float_handler (gdb_client_data arg)
979 {
980   /* This message is based on ANSI C, section 4.7.  Note that integer
981      divide by zero causes this, so "float" is a misnomer.  */
982   error (_("Erroneous arithmetic operation."));
983 }
984 \f
985
986 /* Called by do_setshow_command.  */
987 void
988 set_async_editing_command (char *args, int from_tty,
989                            struct cmd_list_element *c)
990 {
991   change_line_handler ();
992 }
993
994 /* Set things up for readline to be invoked via the alternate
995    interface, i.e. via a callback function (rl_callback_read_char),
996    and hook up instream to the event loop.  */
997 void
998 gdb_setup_readline (void)
999 {
1000   /* This function is a noop for the sync case.  The assumption is
1001      that the sync setup is ALL done in gdb_init, and we would only
1002      mess it up here.  The sync stuff should really go away over
1003      time.  */
1004   if (!batch_silent)
1005     gdb_stdout = stdio_fileopen (stdout);
1006   gdb_stderr = stderr_fileopen ();
1007   gdb_stdlog = gdb_stderr;  /* for moment */
1008   gdb_stdtarg = gdb_stderr; /* for moment */
1009   gdb_stdtargerr = gdb_stderr; /* for moment */
1010
1011   /* If the input stream is connected to a terminal, turn on
1012      editing.  */
1013   if (ISATTY (instream))
1014     {
1015       /* Tell gdb that we will be using the readline library.  This
1016          could be overwritten by a command in .gdbinit like 'set
1017          editing on' or 'off'.  */
1018       async_command_editing_p = 1;
1019           
1020       /* When a character is detected on instream by select or poll,
1021          readline will be invoked via this callback function.  */
1022       call_readline = rl_callback_read_char_wrapper;
1023     }
1024   else
1025     {
1026       async_command_editing_p = 0;
1027       call_readline = gdb_readline_no_editing_callback;
1028     }
1029   
1030   /* When readline has read an end-of-line character, it passes the
1031      complete line to gdb for processing; command_line_handler is the
1032      function that does this.  */
1033   input_handler = command_line_handler;
1034       
1035   /* Tell readline to use the same input stream that gdb uses.  */
1036   rl_instream = instream;
1037
1038   /* Get a file descriptor for the input stream, so that we can
1039      register it with the event loop.  */
1040   input_fd = fileno (instream);
1041
1042   /* Now we need to create the event sources for the input file
1043      descriptor.  */
1044   /* At this point in time, this is the only event source that we
1045      register with the even loop.  Another source is going to be the
1046      target program (inferior), but that must be registered only when
1047      it actually exists (I.e. after we say 'run' or after we connect
1048      to a remote target.  */
1049   add_file_handler (input_fd, stdin_event_handler, 0);
1050 }
1051
1052 /* Disable command input through the standard CLI channels.  Used in
1053    the suspend proc for interpreters that use the standard gdb readline
1054    interface, like the cli & the mi.  */
1055 void
1056 gdb_disable_readline (void)
1057 {
1058   /* FIXME - It is too heavyweight to delete and remake these every
1059      time you run an interpreter that needs readline.  It is probably
1060      better to have the interpreters cache these, which in turn means
1061      that this needs to be moved into interpreter specific code.  */
1062
1063 #if 0
1064   ui_file_delete (gdb_stdout);
1065   ui_file_delete (gdb_stderr);
1066   gdb_stdlog = NULL;
1067   gdb_stdtarg = NULL;
1068   gdb_stdtargerr = NULL;
1069 #endif
1070
1071   gdb_rl_callback_handler_remove ();
1072   delete_file_handler (input_fd);
1073 }