* acinclude.m4 (BFD_CC_FOR_BUILD): Change to use conftest, and to
[deliverable/binutils-gdb.git] / gdb / event-top.c
CommitLineData
b5a0ac70
SS
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
c5aa993b
JM
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
b5a0ac70
SS
21
22#include "defs.h"
0f71a2f6 23#include "top.h"
b5a0ac70 24#include "inferior.h"
c5aa993b 25#include "terminal.h" /* for job_control */
9e0b60a8
JM
26#include <signal.h>
27#include "event-loop.h"
b5a0ac70
SS
28
29/* readline include files */
30#include <readline/readline.h>
31#include <readline/history.h>
32
33/* readline defines this. */
34#undef savestring
35
9e0b60a8 36extern void _initialize_event_loop PARAMS ((void));
b5a0ac70
SS
37
38static void command_line_handler PARAMS ((char *));
43ff13b4 39static void command_line_handler_continuation PARAMS ((struct continuation_arg *));
085dd6e6 40void gdb_readline2 PARAMS ((void));
43ff13b4
JM
41void pop_prompt PARAMS ((void));
42void push_prompt PARAMS ((char *, char *, char *));
392a587b
JM
43static void change_line_handler PARAMS ((void));
44static void change_annotation_level PARAMS ((void));
45static void command_handler PARAMS ((char *));
b5a0ac70
SS
46
47/* Signal handlers. */
43ff13b4 48void handle_sigint PARAMS ((int));
0f71a2f6
JM
49static void handle_sigquit PARAMS ((int));
50static void handle_sighup PARAMS ((int));
51static void handle_sigfpe PARAMS ((int));
52static 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
57void handle_stop_sig PARAMS ((int));
58#endif
59#endif
b5a0ac70
SS
60
61/* Functions to be invoked by the event loop in response to
62 signals. */
0f71a2f6
JM
63void async_request_quit PARAMS ((gdb_client_data));
64static void async_do_nothing PARAMS ((gdb_client_data));
65static void async_disconnect PARAMS ((gdb_client_data));
66static void async_float_handler PARAMS ((gdb_client_data));
67static void async_stop_sig PARAMS ((gdb_client_data));
b5a0ac70
SS
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
b5a0ac70
SS
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
95void (*input_handler) PARAMS ((char *));
96void (*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
0f71a2f6 102 form of the set editing command.
392a587b 103 ezannoni: as of 1999-04-29 I expect that this
b5a0ac70
SS
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. */
106int async_command_editing_p;
107
108/* This variable contains the new prompt that the user sets with the
109 set prompt command. */
110char *new_async_prompt;
111
112/* This is the annotation suffix that will be used when the
113 annotation_level is 2. */
114char *async_annotation_suffix;
115
116/* This is the file descriptor for the input stream that GDB uses to
117 read commands from. */
118int 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. */
123struct 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. */
0f71a2f6 131PTR sigint_token;
b5a0ac70 132#ifdef SIGHUP
0f71a2f6 133PTR sighup_token;
b5a0ac70 134#endif
0f71a2f6
JM
135PTR sigquit_token;
136PTR sigfpe_token;
b5a0ac70 137#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
0f71a2f6 138PTR sigwinch_token;
b5a0ac70 139#endif
0f71a2f6
JM
140#ifdef STOP_SIGNAL
141PTR sigtstp_token;
142#endif
143
144void mark_async_signal_handler_wrapper PARAMS ((void *));
b5a0ac70
SS
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. */
151int more_to_come = 0;
152
153struct readline_input_state
154 {
155 char *linebuffer;
156 char *linebuffer_ptr;
157 }
158readline_input_state;
159\f
160
161/* Initialize all the necessary variables, start the event loop,
085dd6e6 162 register readline, and stdin, start the loop. */
b5a0ac70 163void
085dd6e6 164cli_command_loop ()
b5a0ac70 165{
0f71a2f6
JM
166 int length;
167 char *a_prompt;
9e0b60a8 168 char *gdb_prompt = get_prompt ();
b5a0ac70 169
0f71a2f6
JM
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
c5aa993b
JM
175 will need to call after a whole line is read. This also displays
176 the first prompt. */
9e0b60a8 177 length = strlen (PREFIX (0)) + strlen (gdb_prompt) + strlen (SUFFIX (0)) + 1;
0f71a2f6
JM
178 a_prompt = (char *) xmalloc (length);
179 strcpy (a_prompt, PREFIX (0));
9e0b60a8 180 strcat (a_prompt, gdb_prompt);
0f71a2f6
JM
181 strcat (a_prompt, SUFFIX (0));
182 rl_callback_handler_install (a_prompt, input_handler);
183 }
184 else
185 display_gdb_prompt (0);
b5a0ac70 186
085dd6e6
JM
187 /* Now it's time to start the event loop. */
188 start_event_loop ();
b5a0ac70
SS
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. */
392a587b 197static void
b5a0ac70
SS
198change_line_handler ()
199{
200 if (async_command_editing_p)
201 {
202 /* Turn on editing by using readline. */
203 call_readline = rl_callback_read_char;
0f71a2f6 204 input_handler = command_line_handler;
b5a0ac70
SS
205 }
206 else
207 {
208 /* Turn off editing by using gdb_readline2. */
209 rl_callback_handler_remove ();
210 call_readline = gdb_readline2;
0f71a2f6
JM
211
212 /* Set up the command handler as well, in case we are called as
c5aa993b 213 first thing from .gdbinit. */
0f71a2f6 214 input_handler = command_line_handler;
b5a0ac70
SS
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. */
085dd6e6
JM
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. */
b5a0ac70 226 delete_file_handler (input_fd);
085dd6e6 227 add_file_handler (input_fd, (file_handler_func *) call_readline, 0);
b5a0ac70
SS
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:
0f71a2f6
JM
234 1. when the user enters a command line which is ended by '\'
235 indicating that the command will continue on the next line.
b5a0ac70 236 In that case the prompt that is displayed is the empty string.
0f71a2f6
JM
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????
b5a0ac70
SS
240 FIXME: 2. & 3. not implemented yet for async. */
241void
242display_gdb_prompt (new_prompt)
243 char *new_prompt;
244{
245 int prompt_length = 0;
c5aa993b 246 char *gdb_prompt = get_prompt ();
b5a0ac70 247
adf40b2e
JM
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
b5a0ac70
SS
270 if (!new_prompt)
271 {
272 /* Just use the top of the prompt stack. */
273 prompt_length = strlen (PREFIX (0)) +
274 strlen (SUFFIX (0)) +
9e0b60a8 275 strlen (gdb_prompt) + 1;
b5a0ac70
SS
276
277 new_prompt = (char *) alloca (prompt_length);
278
279 /* Prefix needs to have new line at end. */
280 strcpy (new_prompt, PREFIX (0));
9e0b60a8 281 strcat (new_prompt, gdb_prompt);
b5a0ac70
SS
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 }
adf40b2e 292 /* new_prompt at this point can be the top of the stack or the one passed in */
b5a0ac70
SS
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
adf40b2e 313 to be the normal ones (1 or 0). */
392a587b 314static void
b5a0ac70
SS
315change_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. */
43ff13b4 359void
b5a0ac70
SS
360push_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
43ff13b4
JM
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. */
b5a0ac70
SS
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. */
43ff13b4 380void
b5a0ac70
SS
381pop_prompt ()
382{
43ff13b4
JM
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 }
b5a0ac70
SS
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. */
392a587b 405/* NOTE: 1999-04-30 This is the asynchronous version of the command_loop
b5a0ac70
SS
406 function. The command_loop function will be obsolete when we
407 switch to use the event loop at every execution of gdb. */
392a587b 408static void
b5a0ac70
SS
409command_handler (command)
410 char *command;
411{
412 struct cleanup *old_chain;
413 int stdin_is_tty = ISATTY (stdin);
43ff13b4
JM
414 struct continuation_arg *arg1;
415 struct continuation_arg *arg2;
b5a0ac70
SS
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);
c5aa993b 456
43ff13b4
JM
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 {
c5aa993b 462 arg1 =
43ff13b4 463 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
c5aa993b 464 arg2 =
43ff13b4
JM
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 }
b5a0ac70 472
43ff13b4
JM
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);
c5aa993b 480
43ff13b4
JM
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. */
509void
510command_line_handler_continuation (arg)
511 struct continuation_arg *arg;
c5aa993b 512{
43ff13b4
JM
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;
b5a0ac70 518
43ff13b4 519 bpstat_do_actions (&stop_bpstat);
c5aa993b
JM
520 /*do_cleanups (old_chain); *//*?????FIXME????? */
521
b5a0ac70
SS
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 }
b5a0ac70
SS
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
392a587b 549/* NOTE: 1999-04-30 This is the asynchronous version of the
b5a0ac70
SS
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. */
553static void
554command_line_handler (rl)
555 char *rl;
556{
557 static char *linebuffer = 0;
558 static unsigned linelength = 0;
559 register char *p;
560 char *p1;
b5a0ac70
SS
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;
adf40b2e 590 pop_prompt ();
b5a0ac70
SS
591 }
592
593#ifdef STOP_SIGNAL
594 if (job_control)
0f71a2f6 595 signal (STOP_SIGNAL, handle_stop_sig);
b5a0ac70
SS
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
a0b3c4fd 637 if (*(p - 1) == '\\')
b5a0ac70 638 {
b5a0ac70
SS
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. */
b5a0ac70 650 more_to_come = 1;
adf40b2e
JM
651 push_prompt ("", "", "");
652 display_gdb_prompt (0);
653 return;
b5a0ac70
SS
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
392a587b 767/* NOTE: 1999-04-30 Asynchronous version of gdb_readline. gdb_readline
b5a0ac70
SS
768 will become obsolete when the event loop is made the default
769 execution for gdb. */
085dd6e6 770void
b5a0ac70
SS
771gdb_readline2 ()
772{
773 int c;
774 char *result;
775 int input_index = 0;
776 int result_size = 80;
777
778 result = (char *) xmalloc (result_size);
779
780 /* We still need the while loop here, even though it would seem
781 obvious to invoke gdb_readline2 at every character entered. If
782 not using the readline library, the terminal is in cooked mode,
783 which sends the characters all at once. Poll will notice that the
784 input fd has changed state only after enter is pressed. At this
785 point we still need to fetch all the chars entered. */
786
787 while (1)
788 {
789 /* Read from stdin if we are executing a user defined command.
790 This is the right thing for prompt_for_continue, at least. */
791 c = fgetc (instream ? instream : stdin);
792
793 if (c == EOF)
794 {
795 if (input_index > 0)
796 /* The last line does not end with a newline. Return it, and
797 if we are called again fgetc will still return EOF and
798 we'll return NULL then. */
799 break;
800 free (result);
0f71a2f6 801 (*input_handler) (0);
b5a0ac70
SS
802 }
803
804 if (c == '\n')
805#ifndef CRLF_SOURCE_FILES
806 break;
807#else
808 {
809 if (input_index > 0 && result[input_index - 1] == '\r')
810 input_index--;
811 break;
812 }
813#endif
814
815 result[input_index++] = c;
816 while (input_index >= result_size)
817 {
818 result_size *= 2;
819 result = (char *) xrealloc (result, result_size);
820 }
821 }
822
823 result[input_index++] = '\0';
0f71a2f6 824 (*input_handler) (result);
b5a0ac70
SS
825}
826\f
827
828/* Initialization of signal handlers and tokens. There is a function
829 handle_sig* for each of the signals GDB cares about. Specifically:
830 SIGINT, SIGFPE, SIGQUIT, SIGTSTP, SIGHUP, SIGWINCH. These
831 functions are the actual signal handlers associated to the signals
832 via calls to signal(). The only job for these functions is to
833 enqueue the appropriate event/procedure with the event loop. Such
834 procedures are the old signal handlers. The event loop will take
835 care of invoking the queued procedures to perform the usual tasks
836 associated with the reception of the signal. */
392a587b 837/* NOTE: 1999-04-30 This is the asynchronous version of init_signals.
b5a0ac70
SS
838 init_signals will become obsolete as we move to have to event loop
839 as the default for gdb. */
840void
841async_init_signals ()
c5aa993b 842{
b5a0ac70
SS
843 signal (SIGINT, handle_sigint);
844 sigint_token =
0f71a2f6 845 create_async_signal_handler (async_request_quit, NULL);
b5a0ac70
SS
846
847 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
848 to the inferior and breakpoints will be ignored. */
849#ifdef SIGTRAP
850 signal (SIGTRAP, SIG_DFL);
851#endif
852
853 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
854 passed to the inferior, which we don't want. It would be
855 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
856 on BSD4.3 systems using vfork, that can affect the
857 GDB process as well as the inferior (the signal handling tables
858 might be in memory, shared between the two). Since we establish
859 a handler for SIGQUIT, when we call exec it will set the signal
860 to SIG_DFL for us. */
861 signal (SIGQUIT, handle_sigquit);
862 sigquit_token =
0f71a2f6 863 create_async_signal_handler (async_do_nothing, NULL);
b5a0ac70
SS
864#ifdef SIGHUP
865 if (signal (SIGHUP, handle_sighup) != SIG_IGN)
866 sighup_token =
0f71a2f6 867 create_async_signal_handler (async_disconnect, NULL);
b5a0ac70
SS
868 else
869 sighup_token =
0f71a2f6 870 create_async_signal_handler (async_do_nothing, NULL);
b5a0ac70
SS
871#endif
872 signal (SIGFPE, handle_sigfpe);
873 sigfpe_token =
0f71a2f6 874 create_async_signal_handler (async_float_handler, NULL);
b5a0ac70
SS
875
876#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
877 signal (SIGWINCH, handle_sigwinch);
878 sigwinch_token =
0f71a2f6 879 create_async_signal_handler (SIGWINCH_HANDLER, NULL);
b5a0ac70 880#endif
0f71a2f6
JM
881#ifdef STOP_SIGNAL
882 sigtstp_token =
883 create_async_signal_handler (async_stop_sig, NULL);
884#endif
885
886}
887
c5aa993b 888void
0f71a2f6
JM
889mark_async_signal_handler_wrapper (token)
890 void *token;
891{
892 mark_async_signal_handler ((async_signal_handler *) token);
b5a0ac70
SS
893}
894
895/* Tell the event loop what to do if SIGINT is received.
896 See event-signal.c. */
c5aa993b 897void
b5a0ac70
SS
898handle_sigint (sig)
899 int sig;
900{
901 signal (sig, handle_sigint);
902
903 /* If immediate_quit is set, we go ahead and process the SIGINT right
904 away, even if we usually would defer this to the event loop. The
905 assumption here is that it is safe to process ^C immediately if
906 immediate_quit is set. If we didn't, SIGINT would be really
907 processed only the next time through the event loop. To get to
908 that point, though, the command that we want to interrupt needs to
909 finish first, which is unacceptable. */
910 if (immediate_quit)
0f71a2f6 911 async_request_quit (0);
b5a0ac70
SS
912 else
913 /* If immediate quit is not set, we process SIGINT the next time
914 through the loop, which is fine. */
0f71a2f6 915 mark_async_signal_handler_wrapper (sigint_token);
b5a0ac70
SS
916}
917
918/* Do the quit. All the checks have been done by the caller. */
c5aa993b 919void
0f71a2f6
JM
920async_request_quit (arg)
921 gdb_client_data arg;
b5a0ac70
SS
922{
923 quit_flag = 1;
924#ifdef REQUEST_QUIT
925 REQUEST_QUIT;
926#else
927 quit ();
928#endif
929}
930
931/* Tell the event loop what to do if SIGQUIT is received.
932 See event-signal.c. */
c5aa993b 933static void
b5a0ac70
SS
934handle_sigquit (sig)
935 int sig;
936{
0f71a2f6 937 mark_async_signal_handler_wrapper (sigquit_token);
b5a0ac70
SS
938 signal (sig, handle_sigquit);
939}
940
941/* Called by the event loop in response to a SIGQUIT. */
c5aa993b 942static void
0f71a2f6
JM
943async_do_nothing (arg)
944 gdb_client_data arg;
b5a0ac70
SS
945{
946 /* Empty function body. */
947}
948
949#ifdef SIGHUP
950/* Tell the event loop what to do if SIGHUP is received.
951 See event-signal.c. */
c5aa993b 952static void
b5a0ac70
SS
953handle_sighup (sig)
954 int sig;
955{
0f71a2f6 956 mark_async_signal_handler_wrapper (sighup_token);
b5a0ac70
SS
957 signal (sig, handle_sighup);
958}
959
0f71a2f6 960/* Called by the event loop to process a SIGHUP */
c5aa993b 961static void
0f71a2f6
JM
962async_disconnect (arg)
963 gdb_client_data arg;
b5a0ac70
SS
964{
965 catch_errors (quit_cover, NULL,
966 "Could not kill the program being debugged",
967 RETURN_MASK_ALL);
968 signal (SIGHUP, SIG_DFL); /*FIXME: ??????????? */
969 kill (getpid (), SIGHUP);
970}
971#endif
972
0f71a2f6 973#ifdef STOP_SIGNAL
c5aa993b
JM
974void
975handle_stop_sig (sig)
0f71a2f6
JM
976 int sig;
977{
c5aa993b
JM
978 mark_async_signal_handler_wrapper (sigtstp_token);
979 signal (sig, handle_stop_sig);
0f71a2f6
JM
980}
981
982static void
983async_stop_sig (arg)
984 gdb_client_data arg;
985{
c5aa993b 986 char *prompt = get_prompt ();
0f71a2f6
JM
987#if STOP_SIGNAL == SIGTSTP
988 signal (SIGTSTP, SIG_DFL);
989 sigsetmask (0);
990 kill (getpid (), SIGTSTP);
991 signal (SIGTSTP, handle_stop_sig);
992#else
993 signal (STOP_SIGNAL, handle_stop_sig);
994#endif
995 printf_unfiltered ("%s", prompt);
996 gdb_flush (gdb_stdout);
997
998 /* Forget about any previous command -- null line now will do nothing. */
999 dont_repeat ();
1000}
1001#endif /* STOP_SIGNAL */
1002
b5a0ac70
SS
1003/* Tell the event loop what to do if SIGFPE is received.
1004 See event-signal.c. */
c5aa993b 1005static void
b5a0ac70
SS
1006handle_sigfpe (sig)
1007 int sig;
1008{
0f71a2f6 1009 mark_async_signal_handler_wrapper (sigfpe_token);
b5a0ac70
SS
1010 signal (sig, handle_sigfpe);
1011}
1012
1013/* Event loop will call this functin to process a SIGFPE. */
c5aa993b 1014static void
0f71a2f6
JM
1015async_float_handler (arg)
1016 gdb_client_data arg;
b5a0ac70
SS
1017{
1018 /* This message is based on ANSI C, section 4.7. Note that integer
1019 divide by zero causes this, so "float" is a misnomer. */
1020 error ("Erroneous arithmetic operation.");
1021}
1022
1023/* Tell the event loop what to do if SIGWINCH is received.
1024 See event-signal.c. */
1025#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
c5aa993b 1026static void
b5a0ac70
SS
1027handle_sigwinch (sig)
1028 int sig;
1029{
0f71a2f6 1030 mark_async_signal_handler_wrapper (sigwinch_token);
b5a0ac70
SS
1031 signal (sig, handle_sigwinch);
1032}
1033#endif
1034\f
1035
1036/* Called by do_setshow_command. */
1037/* ARGSUSED */
1038void
1039set_async_editing_command (args, from_tty, c)
1040 char *args;
1041 int from_tty;
1042 struct cmd_list_element *c;
1043{
1044 change_line_handler ();
1045}
1046
1047/* Called by do_setshow_command. */
1048/* ARGSUSED */
1049void
1050set_async_annotation_level (args, from_tty, c)
1051 char *args;
1052 int from_tty;
1053 struct cmd_list_element *c;
1054{
1055 change_annotation_level ();
1056}
1057
1058/* Called by do_setshow_command. */
1059/* ARGSUSED */
1060void
1061set_async_prompt (args, from_tty, c)
1062 char *args;
1063 int from_tty;
1064 struct cmd_list_element *c;
1065{
1066 PROMPT (0) = savestring (new_async_prompt, strlen (new_async_prompt));
1067}
1068
0f71a2f6
JM
1069/* Set things up for readline to be invoked via the alternate
1070 interface, i.e. via a callback function (rl_callback_read_char),
c5aa993b 1071 and hook up instream to the event loop. */
0f71a2f6
JM
1072void
1073_initialize_event_loop ()
1074{
9e0b60a8
JM
1075 if (async_p)
1076 {
1077 /* When a character is detected on instream by select or poll,
c5aa993b 1078 readline will be invoked via this callback function. */
9e0b60a8
JM
1079 call_readline = rl_callback_read_char;
1080
1081 /* When readline has read an end-of-line character, it passes
c5aa993b
JM
1082 the complete line to gdb for processing. command_line_handler
1083 is the function that does this. */
9e0b60a8
JM
1084 input_handler = command_line_handler;
1085
1086 /* Tell readline to use the same input stream that gdb uses. */
1087 rl_instream = instream;
1088
1089 /* Get a file descriptor for the input stream, so that we can
085dd6e6 1090 register it with the event loop. */
9e0b60a8
JM
1091 input_fd = fileno (instream);
1092
085dd6e6
JM
1093 /* Tell gdb to use the cli_command_loop as the main loop. */
1094 command_loop_hook = cli_command_loop;
1095
9e0b60a8
JM
1096 /* Now we need to create the event sources for the input file
1097 descriptor. */
1098 /* At this point in time, this is the only event source that we
c5aa993b
JM
1099 register with the even loop. Another source is going to be
1100 the target program (inferior), but that must be registered
1101 only when it actually exists (I.e. after we say 'run' or
1102 after we connect to a remote target. */
085dd6e6 1103 add_file_handler (input_fd, (file_handler_func *) call_readline, 0);
c5aa993b 1104
085dd6e6 1105 /* Tell gdb that we will be using the readline library. This
c5aa993b
JM
1106 could be overwritten by a command in .gdbinit like 'set
1107 editing on' or 'off'. */
085dd6e6 1108 async_command_editing_p = 1;
9e0b60a8 1109 }
0f71a2f6 1110}
This page took 0.074087 seconds and 4 git commands to generate.