Async mode fixes.
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
a752853e 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1
DJ
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include "gdbcmd.h"
24#include "call-cmds.h"
210661e7
EZ
25#include "cli/cli-cmds.h"
26#include "cli/cli-script.h"
27#include "cli/cli-setshow.h"
18a642a1 28#include "cli/cli-decode.h"
c906108c
SS
29#include "symtab.h"
30#include "inferior.h"
60250e8b 31#include "exceptions.h"
042be3a9 32#include <signal.h>
c906108c
SS
33#include "target.h"
34#include "breakpoint.h"
35#include "gdbtypes.h"
36#include "expression.h"
37#include "value.h"
38#include "language.h"
c5aa993b 39#include "terminal.h" /* For job_control. */
c906108c 40#include "annotate.h"
c5f0f3d0 41#include "completer.h"
c906108c 42#include "top.h"
d4f3574e 43#include "version.h"
210661e7 44#include "serial.h"
d16aafd8 45#include "doublest.h"
f9c696d2 46#include "gdb_assert.h"
f17517ea 47#include "main.h"
2e03ee74 48#include "event-loop.h"
c906108c
SS
49
50/* readline include files */
dbda9972
AC
51#include "readline/readline.h"
52#include "readline/history.h"
c906108c
SS
53
54/* readline defines this. */
55#undef savestring
56
57#include <sys/types.h>
c906108c 58
c2c6d25f 59#include "event-top.h"
c906108c
SS
60#include "gdb_string.h"
61#include "gdb_stat.h"
62#include <ctype.h>
8b93c638
JM
63#include "ui-out.h"
64#include "cli-out.h"
c906108c 65
104c1213
JM
66/* Default command line prompt. This is overriden in some configs. */
67
68#ifndef DEFAULT_PROMPT
69#define DEFAULT_PROMPT "(gdb) "
c906108c
SS
70#endif
71
72/* Initialization file name for gdb. This is overridden in some configs. */
73
eaae3919
EZ
74#ifndef PATH_MAX
75# ifdef FILENAME_MAX
76# define PATH_MAX FILENAME_MAX
77# else
78# define PATH_MAX 512
79# endif
80#endif
81
c906108c
SS
82#ifndef GDBINIT_FILENAME
83#define GDBINIT_FILENAME ".gdbinit"
84#endif
eaae3919 85char gdbinit[PATH_MAX + 1] = GDBINIT_FILENAME;
c906108c
SS
86
87int inhibit_gdbinit = 0;
88
89/* If nonzero, and GDB has been configured to be able to use windows,
90 attempt to open them upon startup. */
91
f15ab4a7 92int use_windows = 0;
c906108c 93
c906108c
SS
94extern char lang_frame_mismatch_warn[]; /* language.c */
95
96/* Flag for whether we want all the "from_tty" gubbish printed. */
97
c5aa993b 98int caution = 1; /* Default is yes, sigh. */
920d2a44
AC
99static void
100show_caution (struct ui_file *file, int from_tty,
101 struct cmd_list_element *c, const char *value)
102{
103 fprintf_filtered (file, _("\
104Whether to confirm potentially dangerous operations is %s.\n"),
105 value);
106}
c906108c 107
c906108c
SS
108/* stdio stream that command input is being read from. Set to stdin normally.
109 Set by source_command to the file we are sourcing. Set to NULL if we are
110 executing a user-defined command or interacting via a GUI. */
111
112FILE *instream;
113
698ba934
DJ
114/* Flag to indicate whether a user defined command is currently running. */
115
116int in_user_command;
117
c906108c
SS
118/* Current working directory. */
119
120char *current_directory;
121
122/* The directory name is actually stored here (usually). */
123char gdb_dirbuf[1024];
124
125/* Function to call before reading a command, if nonzero.
126 The function receives two args: an input stream,
127 and a prompt string. */
128
507f3c78 129void (*window_hook) (FILE *, char *);
c906108c
SS
130
131int epoch_interface;
132int xgdb_verbose;
133
134/* gdb prints this when reading a command interactively */
c5aa993b 135static char *gdb_prompt_string; /* the global prompt string */
c906108c
SS
136
137/* Buffer used for reading command lines, and the size
138 allocated for it so far. */
139
140char *line;
141int linesize = 100;
142
143/* Nonzero if the current command is modified by "server ". This
c2d11a7d 144 affects things like recording into the command history, commands
c906108c
SS
145 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
146 whatever) can issue its own commands and also send along commands
147 from the user, and have the user not notice that the user interface
148 is issuing commands too. */
149int server_command;
150
151/* Baud rate specified for talking to serial target systems. Default
152 is left as -1, so targets can choose their own defaults. */
153/* FIXME: This means that "show remotebaud" and gr_files_info can print -1
154 or (unsigned int)-1. This is a Bad User Interface. */
155
156int baud_rate = -1;
157
158/* Timeout limit for response from target. */
159
ce808e91
AC
160/* The default value has been changed many times over the years. It
161 was originally 5 seconds. But that was thought to be a long time
162 to sit and wait, so it was changed to 2 seconds. That was thought
163 to be plenty unless the connection was going through some terminal
164 server or multiplexer or other form of hairy serial connection.
165
166 In mid-1996, remote_timeout was moved from remote.c to top.c and
167 it began being used in other remote-* targets. It appears that the
168 default was changed to 20 seconds at that time, perhaps because the
85a453d5 169 Renesas E7000 ICE didn't always respond in a timely manner.
ce808e91
AC
170
171 But if 5 seconds is a long time to sit and wait for retransmissions,
172 20 seconds is far worse. This demonstrates the difficulty of using
173 a single variable for all protocol timeouts.
174
175 As remote.c is used much more than remote-e7000.c, it was changed
176 back to 2 seconds in 1999. */
177
178int remote_timeout = 2;
c906108c
SS
179
180/* Non-zero tells remote* modules to output debugging info. */
181
182int remote_debug = 0;
183
43ff13b4
JM
184/* Non-zero means the target is running. Note: this is different from
185 saying that there is an active target and we are stopped at a
186 breakpoint, for instance. This is a real indicator whether the
187 target is off and running, which gdb is doing something else. */
188int target_executing = 0;
189
6dd77b81
RH
190/* Sbrk location on entry to main. Used for statistics only. */
191#ifdef HAVE_SBRK
192char *lim_at_start;
193#endif
194
c906108c
SS
195/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
196
197#ifndef STOP_SIGNAL
198#ifdef SIGTSTP
199#define STOP_SIGNAL SIGTSTP
a14ed312 200static void stop_sig (int);
c906108c
SS
201#endif
202#endif
203
c906108c
SS
204/* Hooks for alternate command interfaces. */
205
206/* Called after most modules have been initialized, but before taking users
1ad24239
KS
207 command file.
208
209 If the UI fails to initialize and it wants GDB to continue
210 using the default UI, then it should clear this hook before returning. */
c906108c 211
9a4105ab 212void (*deprecated_init_ui_hook) (char *argv0);
7a292a7a
SS
213
214/* This hook is called from within gdb's many mini-event loops which could
215 steal control from a real user interface's event loop. It returns
216 non-zero if the user is requesting a detach, zero otherwise. */
217
98bbd631 218int (*deprecated_ui_loop_hook) (int);
c906108c
SS
219
220/* Called instead of command_loop at top level. Can be invoked via
b5a2688f 221 throw_exception(). */
c906108c 222
9a4105ab 223void (*deprecated_command_loop_hook) (void);
c906108c
SS
224
225
c906108c
SS
226/* Called from print_frame_info to list the line we stopped in. */
227
9a4105ab
AC
228void (*deprecated_print_frame_info_listing_hook) (struct symtab * s, int line,
229 int stopline, int noerror);
c906108c
SS
230/* Replaces most of query. */
231
9a4105ab 232int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
233
234/* Replaces most of warning. */
235
9a4105ab 236void (*deprecated_warning_hook) (const char *, va_list);
c906108c 237
9a4105ab
AC
238/* These three functions support getting lines of text from the user.
239 They are used in sequence. First deprecated_readline_begin_hook is
240 called with a text string that might be (for example) a message for
241 the user to type in a sequence of commands to be executed at a
242 breakpoint. If this function calls back to a GUI, it might take
243 this opportunity to pop up a text interaction window with this
244 message. Next, deprecated_readline_hook is called with a prompt
245 that is emitted prior to collecting the user input. It can be
246 called multiple times. Finally, deprecated_readline_end_hook is
247 called to notify the GUI that we are done with the interaction
248 window and it can close it. */
c906108c 249
9a4105ab
AC
250void (*deprecated_readline_begin_hook) (char *, ...);
251char *(*deprecated_readline_hook) (char *);
252void (*deprecated_readline_end_hook) (void);
c906108c
SS
253
254/* Called as appropriate to notify the interface of the specified breakpoint
255 conditions. */
256
9a4105ab
AC
257void (*deprecated_create_breakpoint_hook) (struct breakpoint * bpt);
258void (*deprecated_delete_breakpoint_hook) (struct breakpoint * bpt);
259void (*deprecated_modify_breakpoint_hook) (struct breakpoint * bpt);
c906108c 260
6426a772
JM
261/* Called as appropriate to notify the interface that we have attached
262 to or detached from an already running process. */
263
9a4105ab
AC
264void (*deprecated_attach_hook) (void);
265void (*deprecated_detach_hook) (void);
6426a772 266
c906108c
SS
267/* Called during long calculations to allow GUI to repair window damage, and to
268 check for stop buttons, etc... */
269
9a4105ab 270void (*deprecated_interactive_hook) (void);
c906108c 271
c906108c
SS
272/* Tell the GUI someone changed the register REGNO. -1 means
273 that the caller does not know which register changed or
c5aa993b 274 that several registers have changed (see value_assign). */
9a4105ab 275void (*deprecated_register_changed_hook) (int regno);
c906108c
SS
276
277/* Tell the GUI someone changed LEN bytes of memory at ADDR */
9a4105ab 278void (*deprecated_memory_changed_hook) (CORE_ADDR addr, int len);
c906108c
SS
279
280/* Called when going to wait for the target. Usually allows the GUI to run
281 while waiting for target events. */
282
9a4105ab
AC
283ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
284 struct target_waitstatus * status);
c906108c
SS
285
286/* Used by UI as a wrapper around command execution. May do various things
287 like enabling/disabling buttons, etc... */
288
9a4105ab
AC
289void (*deprecated_call_command_hook) (struct cmd_list_element * c, char *cmd,
290 int from_tty);
c906108c 291
96baa820
JM
292/* Called after a `set' command has finished. Is only run if the
293 `set' command succeeded. */
294
9a4105ab 295void (*deprecated_set_hook) (struct cmd_list_element * c);
96baa820 296
c906108c
SS
297/* Called when the current thread changes. Argument is thread id. */
298
9a4105ab 299void (*deprecated_context_hook) (int id);
c906108c
SS
300
301/* Takes control from error (). Typically used to prevent longjmps out of the
302 middle of the GUI. Usually used in conjunction with a catch routine. */
303
c40d0d10 304void (*deprecated_error_hook) (void);
11cf8741 305
c906108c
SS
306/* Handler for SIGHUP. */
307
308#ifdef SIGHUP
392a587b 309/* NOTE 1999-04-29: This function will be static again, once we modify
cd0fc7c3
SS
310 gdb to use the event loop as the default command loop and we merge
311 event-top.c into this file, top.c */
312/* static */ int
d0c8cdfb 313quit_cover (void *s)
c906108c 314{
c5aa993b
JM
315 caution = 0; /* Throw caution to the wind -- we're exiting.
316 This prevents asking the user dumb questions. */
317 quit_command ((char *) 0, 0);
c906108c
SS
318 return 0;
319}
320#endif /* defined SIGHUP */
321\f
322/* Line number we are currently in in a file which is being sourced. */
392a587b 323/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3
SS
324 gdb to use the event loop as the default command loop and we merge
325 event-top.c into this file, top.c */
326/* static */ int source_line_number;
c906108c
SS
327
328/* Name of the file we are sourcing. */
392a587b 329/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3
SS
330 gdb to use the event loop as the default command loop and we merge
331 event-top.c into this file, top.c */
332/* static */ char *source_file_name;
c906108c 333
c906108c
SS
334/* Clean up on error during a "source" command (or execution of a
335 user-defined command). */
336
d318976c 337void
e41a3b1a 338do_restore_instream_cleanup (void *stream)
c906108c
SS
339{
340 /* Restore the previous input stream. */
341 instream = stream;
342}
343
344/* Read commands from STREAM. */
345void
fba45db2 346read_command_file (FILE *stream)
c906108c
SS
347{
348 struct cleanup *cleanups;
349
e41a3b1a 350 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
c906108c 351 instream = stream;
c5aa993b 352 command_loop ();
c906108c
SS
353 do_cleanups (cleanups);
354}
355\f
507f3c78 356void (*pre_init_ui_hook) (void);
c906108c 357
e41a3b1a
AC
358#ifdef __MSDOS__
359void
360do_chdir_cleanup (void *old_dir)
361{
362 chdir (old_dir);
b8c9b27d 363 xfree (old_dir);
e41a3b1a
AC
364}
365#endif
366
32c1e744
VP
367/* Do any commands attached to breakpoint we stopped at. Only if we
368 are always running synchronously. Or if we have just executed a
369 command that doesn't start the target. */
370static void
371command_line_handler_continuation (struct continuation_arg *arg)
372{
373 extern int display_time;
374 extern int display_space;
375
376 long time_at_cmd_start = arg->data.longint;
377 long space_at_cmd_start = arg->next->data.longint;
378
379 bpstat_do_actions (&stop_bpstat);
380
381 if (display_time)
382 {
383 long cmd_time = get_run_time () - time_at_cmd_start;
384
385 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
386 cmd_time / 1000000, cmd_time % 1000000);
387 }
388 if (display_space)
389 {
390#ifdef HAVE_SBRK
391 char *lim = (char *) sbrk (0);
392 long space_now = lim - lim_at_start;
393 long space_diff = space_now - space_at_cmd_start;
394
395 printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
396 space_now,
397 (space_diff >= 0 ? '+' : '-'),
398 space_diff);
399#endif
400 }
401}
402
d318976c
FN
403/* Execute the line P as a command.
404 Pass FROM_TTY as second argument to the defining function. */
c906108c 405
d318976c
FN
406void
407execute_command (char *p, int from_tty)
c906108c 408{
52f0bd74
AC
409 struct cmd_list_element *c;
410 enum language flang;
d318976c
FN
411 static int warned = 0;
412 char *line;
32c1e744
VP
413 struct continuation_arg *arg1;
414 struct continuation_arg *arg2;
415 long time_at_cmd_start;
416#ifdef HAVE_SBRK
417 long space_at_cmd_start = 0;
418#endif
419 extern int display_time;
420 extern int display_space;
421
422 if (target_can_async_p ())
423 {
424 time_at_cmd_start = get_run_time ();
425
426 if (display_space)
427 {
428#ifdef HAVE_SBRK
429 char *lim = (char *) sbrk (0);
430 space_at_cmd_start = lim - lim_at_start;
431#endif
432 }
433 }
67e1e03a 434
d318976c 435 free_all_values ();
c906108c 436
d318976c
FN
437 /* Force cleanup of any alloca areas if using C alloca instead of
438 a builtin alloca. */
439 alloca (0);
c906108c 440
d318976c
FN
441 /* This can happen when command_line_input hits end of file. */
442 if (p == NULL)
443 return;
c906108c 444
49d03eab 445 target_log_command (p);
8b93c638 446
d318976c
FN
447 while (*p == ' ' || *p == '\t')
448 p++;
449 if (*p)
8b93c638 450 {
d318976c
FN
451 char *arg;
452 line = p;
8b93c638 453
16026cd7
AS
454 /* If trace-commands is set then this will print this command. */
455 print_command_trace (p);
456
d318976c 457 c = lookup_cmd (&p, cmdlist, "", 0, 1);
8b93c638 458
d318976c
FN
459 /* If the target is running, we allow only a limited set of
460 commands. */
362646f5 461 if (target_can_async_p () && target_executing)
d8fe84e3
EZ
462 if (strcmp (c->name, "help") != 0
463 && strcmp (c->name, "pwd") != 0
464 && strcmp (c->name, "show") != 0
0b4e556c
PA
465 && strcmp (c->name, "info") != 0
466 && strcmp (c->name, "interrupt") != 0)
8a3fe4f8 467 error (_("Cannot execute this command while the target is running."));
8b93c638 468
d318976c
FN
469 /* Pass null arg rather than an empty one. */
470 arg = *p ? p : 0;
8b93c638 471
9f60d481
AC
472 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
473 while the is_complete_command(cfunc) test is just plain
474 bogus. They should both be replaced by a test of the form
475 c->strip_trailing_white_space_p. */
476 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
477 can't be replaced with func. This is because it is the
478 cfunc, and not the func, that has the value that the
479 is_complete_command hack is testing for. */
480 /* Clear off trailing whitespace, except for set and complete
481 command. */
d318976c
FN
482 if (arg
483 && c->type != set_cmd
bbaca940 484 && !is_complete_command (c))
8b93c638 485 {
d318976c
FN
486 p = arg + strlen (arg) - 1;
487 while (p >= arg && (*p == ' ' || *p == '\t'))
488 p--;
489 *(p + 1) = '\0';
8b93c638
JM
490 }
491
d318976c 492 /* If this command has been pre-hooked, run the hook first. */
5913bcb0 493 execute_cmd_pre_hook (c);
c906108c 494
d318976c
FN
495 if (c->flags & DEPRECATED_WARN_USER)
496 deprecated_cmd_warning (&line);
c906108c 497
d318976c
FN
498 if (c->class == class_user)
499 execute_user_command (c, arg);
500 else if (c->type == set_cmd || c->type == show_cmd)
501 do_setshow_command (arg, from_tty & caution, c);
f436dd25 502 else if (!cmd_func_p (c))
8a3fe4f8 503 error (_("That is not a command, just a help topic."));
9a4105ab
AC
504 else if (deprecated_call_command_hook)
505 deprecated_call_command_hook (c, arg, from_tty & caution);
d318976c 506 else
f436dd25 507 cmd_func (c, arg, from_tty & caution);
d318976c
FN
508
509 /* If this command has been post-hooked, run the hook last. */
5913bcb0 510 execute_cmd_post_hook (c);
c906108c 511
c906108c
SS
512 }
513
d318976c
FN
514 /* Tell the user if the language has changed (except first time). */
515 if (current_language != expected_language)
c906108c 516 {
d318976c 517 if (language_mode == language_mode_auto)
c906108c 518 {
d318976c 519 language_info (1); /* Print what changed. */
c906108c 520 }
d318976c 521 warned = 0;
c906108c
SS
522 }
523
d318976c
FN
524 /* Warn the user if the working language does not match the
525 language of the current frame. Only warn the user if we are
526 actually running the program, i.e. there is a stack. */
527 /* FIXME: This should be cacheing the frame and only running when
528 the frame changes. */
529
32c1e744 530 if (!target_executing && target_has_stack)
c906108c 531 {
d318976c
FN
532 flang = get_frame_language ();
533 if (!warned
534 && flang != language_unknown
535 && flang != current_language->la_language)
c906108c 536 {
d318976c
FN
537 printf_filtered ("%s\n", lang_frame_mismatch_warn);
538 warned = 1;
c906108c 539 }
c906108c 540 }
32c1e744
VP
541
542 /* Set things up for this function to be compete later, once the
543 execution has completed, if we are doing an execution command,
544 otherwise, just go ahead and finish. */
545 if (target_can_async_p () && target_executing)
546 {
547 arg1 =
548 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
549 arg2 =
550 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
551 arg1->next = arg2;
552 arg2->next = NULL;
553 arg1->data.longint = time_at_cmd_start;
554#ifdef HAVE_SBRK
555 arg2->data.longint = space_at_cmd_start;
556#endif
557 add_continuation (command_line_handler_continuation, arg1);
558 }
c906108c
SS
559}
560
d318976c
FN
561/* Read commands from `instream' and execute them
562 until end of file or error reading instream. */
c906108c 563
d318976c
FN
564void
565command_loop (void)
c906108c 566{
d318976c
FN
567 struct cleanup *old_chain;
568 char *command;
569 int stdin_is_tty = ISATTY (stdin);
570 long time_at_cmd_start;
571#ifdef HAVE_SBRK
572 long space_at_cmd_start = 0;
573#endif
574 extern int display_time;
575 extern int display_space;
c5aa993b 576
d318976c
FN
577 while (instream && !feof (instream))
578 {
d318976c
FN
579 if (window_hook && instream == stdin)
580 (*window_hook) (instream, get_prompt ());
c906108c 581
d318976c
FN
582 quit_flag = 0;
583 if (instream == stdin && stdin_is_tty)
584 reinitialize_more_filter ();
585 old_chain = make_cleanup (null_cleanup, 0);
c906108c 586
d318976c
FN
587 /* Get a command-line. This calls the readline package. */
588 command = command_line_input (instream == stdin ?
589 get_prompt () : (char *) NULL,
590 instream == stdin, "prompt");
d318976c
FN
591 if (command == 0)
592 return;
c906108c 593
d318976c 594 time_at_cmd_start = get_run_time ();
c906108c 595
d318976c 596 if (display_space)
9e0b60a8 597 {
d318976c 598#ifdef HAVE_SBRK
d318976c 599 char *lim = (char *) sbrk (0);
6dd77b81 600 space_at_cmd_start = lim - lim_at_start;
9e0b60a8 601#endif
d318976c 602 }
9e0b60a8 603
d318976c
FN
604 execute_command (command, instream == stdin);
605 /* Do any commands attached to breakpoint we stopped at. */
606 bpstat_do_actions (&stop_bpstat);
607 do_cleanups (old_chain);
9e0b60a8 608
d318976c 609 if (display_time)
9e0b60a8 610 {
d318976c 611 long cmd_time = get_run_time () - time_at_cmd_start;
9e0b60a8 612
a3f17187 613 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
d318976c 614 cmd_time / 1000000, cmd_time % 1000000);
9e0b60a8 615 }
9e0b60a8 616
d318976c 617 if (display_space)
9e0b60a8 618 {
d318976c 619#ifdef HAVE_SBRK
d318976c 620 char *lim = (char *) sbrk (0);
6dd77b81 621 long space_now = lim - lim_at_start;
d318976c
FN
622 long space_diff = space_now - space_at_cmd_start;
623
57ee890f 624 printf_unfiltered (_("Space used: %ld (%s%ld for this command)\n"),
d318976c 625 space_now,
57ee890f 626 (space_diff >= 0 ? "+" : ""),
d318976c
FN
627 space_diff);
628#endif
9e0b60a8 629 }
9e0b60a8 630 }
9e0b60a8 631}
d318976c
FN
632\f
633/* Commands call this if they do not want to be repeated by null lines. */
9e0b60a8 634
d318976c
FN
635void
636dont_repeat (void)
9e0b60a8 637{
d318976c
FN
638 if (server_command)
639 return;
9e0b60a8 640
d318976c
FN
641 /* If we aren't reading from standard input, we are saving the last
642 thing read from stdin in line and don't want to delete it. Null lines
643 won't repeat here in any case. */
644 if (instream == stdin)
645 *line = 0;
9e0b60a8 646}
d318976c
FN
647\f
648/* Read a line from the stream "instream" without command line editing.
9e0b60a8 649
d318976c
FN
650 It prints PROMPT_ARG once at the start.
651 Action is compatible with "readline", e.g. space for the result is
652 malloc'd and should be freed by the caller.
9e0b60a8 653
d318976c
FN
654 A NULL return means end of file. */
655char *
656gdb_readline (char *prompt_arg)
9e0b60a8 657{
d318976c
FN
658 int c;
659 char *result;
660 int input_index = 0;
661 int result_size = 80;
9e0b60a8 662
d318976c 663 if (prompt_arg)
9e0b60a8 664 {
d318976c
FN
665 /* Don't use a _filtered function here. It causes the assumed
666 character position to be off, since the newline we read from
667 the user is not accounted for. */
668 fputs_unfiltered (prompt_arg, gdb_stdout);
9e0b60a8
JM
669 gdb_flush (gdb_stdout);
670 }
671
d318976c 672 result = (char *) xmalloc (result_size);
9e0b60a8
JM
673
674 while (1)
675 {
d318976c
FN
676 /* Read from stdin if we are executing a user defined command.
677 This is the right thing for prompt_for_continue, at least. */
678 c = fgetc (instream ? instream : stdin);
9e0b60a8 679
d318976c 680 if (c == EOF)
9e0b60a8 681 {
d318976c
FN
682 if (input_index > 0)
683 /* The last line does not end with a newline. Return it, and
684 if we are called again fgetc will still return EOF and
685 we'll return NULL then. */
9e0b60a8 686 break;
b8c9b27d 687 xfree (result);
d318976c 688 return NULL;
9e0b60a8 689 }
c5aa993b 690
d318976c 691 if (c == '\n')
9e0b60a8 692 {
d318976c
FN
693 if (input_index > 0 && result[input_index - 1] == '\r')
694 input_index--;
695 break;
9e0b60a8 696 }
9e0b60a8 697
d318976c
FN
698 result[input_index++] = c;
699 while (input_index >= result_size)
9e0b60a8 700 {
d318976c
FN
701 result_size *= 2;
702 result = (char *) xrealloc (result, result_size);
9e0b60a8 703 }
9e0b60a8
JM
704 }
705
d318976c
FN
706 result[input_index++] = '\0';
707 return result;
9e0b60a8
JM
708}
709
d318976c
FN
710/* Variables which control command line editing and history
711 substitution. These variables are given default values at the end
712 of this file. */
713static int command_editing_p;
920d2a44 714
d318976c
FN
715/* NOTE 1999-04-29: This variable will be static again, once we modify
716 gdb to use the event loop as the default command loop and we merge
717 event-top.c into this file, top.c */
920d2a44 718
d318976c 719/* static */ int history_expansion_p;
920d2a44 720
d318976c 721static int write_history_p;
920d2a44
AC
722static void
723show_write_history_p (struct ui_file *file, int from_tty,
724 struct cmd_list_element *c, const char *value)
725{
726 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
727 value);
728}
729
d318976c 730static int history_size;
920d2a44
AC
731static void
732show_history_size (struct ui_file *file, int from_tty,
733 struct cmd_list_element *c, const char *value)
734{
735 fprintf_filtered (file, _("The size of the command history is %s.\n"),
736 value);
737}
738
d318976c 739static char *history_filename;
920d2a44
AC
740static void
741show_history_filename (struct ui_file *file, int from_tty,
742 struct cmd_list_element *c, const char *value)
743{
744 fprintf_filtered (file, _("\
745The filename in which to record the command history is \"%s\".\n"),
746 value);
747}
9e0b60a8 748
b4f5539f 749/* This is like readline(), but it has some gdb-specific behavior.
2e03ee74 750 gdb may want readline in both the synchronous and async modes during
b4f5539f
TT
751 a single gdb invocation. At the ordinary top-level prompt we might
752 be using the async readline. That means we can't use
753 rl_pre_input_hook, since it doesn't work properly in async mode.
754 However, for a secondary prompt (" >", such as occurs during a
2e03ee74
DJ
755 `define'), gdb wants a synchronous response.
756
757 We used to call readline() directly, running it in synchronous
758 mode. But mixing modes this way is not supported, and as of
759 readline 5.x it no longer works; the arrow keys come unbound during
760 the synchronous call. So we make a nested call into the event
761 loop. That's what gdb_readline_wrapper is for. */
762
763/* A flag set as soon as gdb_readline_wrapper_line is called; we can't
764 rely on gdb_readline_wrapper_result, which might still be NULL if
765 the user types Control-D for EOF. */
766static int gdb_readline_wrapper_done;
767
768/* The result of the current call to gdb_readline_wrapper, once a newline
769 is seen. */
770static char *gdb_readline_wrapper_result;
771
772/* Any intercepted hook. Operate-and-get-next sets this, expecting it
773 to be called after the newline is processed (which will redisplay
774 the prompt). But in gdb_readline_wrapper we will not get a new
775 prompt until the next call, or until we return to the event loop.
776 So we disable this hook around the newline and restore it before we
777 return. */
778static void (*saved_after_char_processing_hook) (void);
779
780/* This function is called when readline has seen a complete line of
781 text. */
782
783static void
784gdb_readline_wrapper_line (char *line)
785{
786 gdb_assert (!gdb_readline_wrapper_done);
787 gdb_readline_wrapper_result = line;
788 gdb_readline_wrapper_done = 1;
789
790 /* Prevent operate-and-get-next from acting too early. */
791 saved_after_char_processing_hook = after_char_processing_hook;
792 after_char_processing_hook = NULL;
1b05479a
DJ
793
794 /* Prevent parts of the prompt from being redisplayed if annotations
795 are enabled, and readline's state getting out of sync. */
796 if (async_command_editing_p)
797 rl_callback_handler_remove ();
2e03ee74
DJ
798}
799
800struct gdb_readline_wrapper_cleanup
801 {
802 void (*handler_orig) (char *);
2e03ee74
DJ
803 int already_prompted_orig;
804 };
805
806static void
807gdb_readline_wrapper_cleanup (void *arg)
808{
809 struct gdb_readline_wrapper_cleanup *cleanup = arg;
810
2e03ee74 811 rl_already_prompted = cleanup->already_prompted_orig;
2e03ee74
DJ
812
813 gdb_assert (input_handler == gdb_readline_wrapper_line);
814 input_handler = cleanup->handler_orig;
815 gdb_readline_wrapper_result = NULL;
816 gdb_readline_wrapper_done = 0;
817
818 after_char_processing_hook = saved_after_char_processing_hook;
819 saved_after_char_processing_hook = NULL;
820
821 xfree (cleanup);
822}
823
b4f5539f
TT
824char *
825gdb_readline_wrapper (char *prompt)
826{
2e03ee74
DJ
827 struct cleanup *back_to;
828 struct gdb_readline_wrapper_cleanup *cleanup;
829 char *retval;
830
831 cleanup = xmalloc (sizeof (*cleanup));
832 cleanup->handler_orig = input_handler;
833 input_handler = gdb_readline_wrapper_line;
834
2e03ee74
DJ
835 cleanup->already_prompted_orig = rl_already_prompted;
836
837 back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
838
839 /* Display our prompt and prevent double prompt display. */
1b05479a 840 display_gdb_prompt (prompt);
2e03ee74
DJ
841 rl_already_prompted = 1;
842
362646f5 843 if (after_char_processing_hook)
2e03ee74
DJ
844 (*after_char_processing_hook) ();
845 gdb_assert (after_char_processing_hook == NULL);
846
847 /* gdb_do_one_event argument is unused. */
848 while (gdb_do_one_event (NULL) >= 0)
849 if (gdb_readline_wrapper_done)
850 break;
b4f5539f 851
2e03ee74
DJ
852 retval = gdb_readline_wrapper_result;
853 do_cleanups (back_to);
854 return retval;
b4f5539f
TT
855}
856
9e0b60a8 857\f
d318976c
FN
858#ifdef STOP_SIGNAL
859static void
860stop_sig (int signo)
9e0b60a8 861{
d318976c
FN
862#if STOP_SIGNAL == SIGTSTP
863 signal (SIGTSTP, SIG_DFL);
46711df8
MK
864#if HAVE_SIGPROCMASK
865 {
866 sigset_t zero;
867
868 sigemptyset (&zero);
869 sigprocmask (SIG_SETMASK, &zero, 0);
870 }
871#elif HAVE_SIGSETMASK
d318976c 872 sigsetmask (0);
46711df8 873#endif
d318976c
FN
874 kill (getpid (), SIGTSTP);
875 signal (SIGTSTP, stop_sig);
876#else
877 signal (STOP_SIGNAL, stop_sig);
878#endif
879 printf_unfiltered ("%s", get_prompt ());
880 gdb_flush (gdb_stdout);
9e0b60a8 881
d318976c
FN
882 /* Forget about any previous command -- null line now will do nothing. */
883 dont_repeat ();
9e0b60a8 884}
d318976c 885#endif /* STOP_SIGNAL */
9e0b60a8 886
d318976c 887/* Initialize signal handlers. */
64cdedad
EZ
888static void
889float_handler (int signo)
890{
891 /* This message is based on ANSI C, section 4.7. Note that integer
892 divide by zero causes this, so "float" is a misnomer. */
893 signal (SIGFPE, float_handler);
8a3fe4f8 894 error (_("Erroneous arithmetic operation."));
64cdedad
EZ
895}
896
9e0b60a8 897static void
d318976c 898do_nothing (int signo)
9e0b60a8 899{
d318976c
FN
900 /* Under System V the default disposition of a signal is reinstated after
901 the signal is caught and delivered to an application process. On such
902 systems one must restore the replacement signal handler if one wishes
903 to continue handling the signal in one's program. On BSD systems this
904 is not needed but it is harmless, and it simplifies the code to just do
905 it unconditionally. */
906 signal (signo, do_nothing);
9e0b60a8
JM
907}
908
467d8519
TT
909/* The current saved history number from operate-and-get-next.
910 This is -1 if not valid. */
911static int operate_saved_history = -1;
912
913/* This is put on the appropriate hook and helps operate-and-get-next
914 do its work. */
b9362cc7 915static void
5ae5f592 916gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
917{
918 int delta = where_history () - operate_saved_history;
919 /* The `key' argument to rl_get_previous_history is ignored. */
920 rl_get_previous_history (delta, 0);
921 operate_saved_history = -1;
922
923 /* readline doesn't automatically update the display for us. */
924 rl_redisplay ();
925
926 after_char_processing_hook = NULL;
927 rl_pre_input_hook = NULL;
928}
929
930/* This is a gdb-local readline command handler. It accepts the
931 current command line (like RET does) and, if this command was taken
932 from the history, arranges for the next command in the history to
933 appear on the command line when the prompt returns.
934 We ignore the arguments. */
935static int
936gdb_rl_operate_and_get_next (int count, int key)
937{
b5686e99
MK
938 int where;
939
362646f5
AC
940 /* Use the async hook. */
941 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 942
b5686e99
MK
943 /* Find the current line, and find the next line to use. */
944 where = where_history();
945
946 /* FIXME: kettenis/20020817: max_input_history is renamed into
947 history_max_entries in readline-4.2. When we do a new readline
948 import, we should probably change it here too, even though
949 readline maintains backwards compatibility for now by still
950 defining max_input_history. */
951 if ((history_is_stifled () && (history_length >= max_input_history)) ||
952 (where >= history_length - 1))
953 operate_saved_history = where;
954 else
955 operate_saved_history = where + 1;
956
467d8519
TT
957 return rl_newline (1, key);
958}
959\f
d318976c
FN
960/* Read one line from the command input stream `instream'
961 into the local static buffer `linebuffer' (whose current length
962 is `linelength').
963 The buffer is made bigger as necessary.
964 Returns the address of the start of the line.
9e0b60a8 965
d318976c 966 NULL is returned for end of file.
9e0b60a8 967
d318976c
FN
968 *If* the instream == stdin & stdin is a terminal, the line read
969 is copied into the file line saver (global var char *line,
970 length linesize) so that it can be duplicated.
9e0b60a8 971
d318976c
FN
972 This routine either uses fancy command line editing or
973 simple input as the user has requested. */
10689f25 974
d318976c
FN
975char *
976command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
9e0b60a8 977{
d318976c
FN
978 static char *linebuffer = 0;
979 static unsigned linelength = 0;
52f0bd74 980 char *p;
d318976c
FN
981 char *p1;
982 char *rl;
983 char *local_prompt = prompt_arg;
984 char *nline;
985 char got_eof = 0;
986
987 /* The annotation suffix must be non-NULL. */
988 if (annotation_suffix == NULL)
989 annotation_suffix = "";
9e0b60a8 990
d318976c
FN
991 if (annotation_level > 1 && instream == stdin)
992 {
993 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
994 + strlen (annotation_suffix) + 40);
995 if (prompt_arg == NULL)
996 local_prompt[0] = '\0';
997 else
998 strcpy (local_prompt, prompt_arg);
999 strcat (local_prompt, "\n\032\032");
1000 strcat (local_prompt, annotation_suffix);
1001 strcat (local_prompt, "\n");
1002 }
9e0b60a8 1003
d318976c 1004 if (linebuffer == 0)
9e0b60a8 1005 {
d318976c
FN
1006 linelength = 80;
1007 linebuffer = (char *) xmalloc (linelength);
9e0b60a8 1008 }
9e0b60a8 1009
d318976c 1010 p = linebuffer;
9e0b60a8 1011
d318976c
FN
1012 /* Control-C quits instantly if typed while in this loop
1013 since it should not wait until the user types a newline. */
1014 immediate_quit++;
1015#ifdef STOP_SIGNAL
1016 if (job_control)
362646f5 1017 signal (STOP_SIGNAL, handle_stop_sig);
d318976c
FN
1018#endif
1019
1020 while (1)
9e0b60a8 1021 {
d318976c
FN
1022 /* Make sure that all output has been output. Some machines may let
1023 you get away with leaving out some of the gdb_flush, but not all. */
1024 wrap_here ("");
1025 gdb_flush (gdb_stdout);
1026 gdb_flush (gdb_stderr);
1027
1028 if (source_file_name != NULL)
637537d0 1029 ++source_line_number;
d318976c
FN
1030
1031 if (annotation_level > 1 && instream == stdin)
1032 {
306d9ac5
DC
1033 puts_unfiltered ("\n\032\032pre-");
1034 puts_unfiltered (annotation_suffix);
1035 puts_unfiltered ("\n");
d318976c
FN
1036 }
1037
1038 /* Don't use fancy stuff if not talking to stdin. */
698ba934 1039 if (deprecated_readline_hook && input_from_terminal_p ())
d318976c 1040 {
9a4105ab 1041 rl = (*deprecated_readline_hook) (local_prompt);
d318976c 1042 }
698ba934 1043 else if (command_editing_p && input_from_terminal_p ())
d318976c 1044 {
b4f5539f 1045 rl = gdb_readline_wrapper (local_prompt);
d318976c 1046 }
9e0b60a8 1047 else
d318976c
FN
1048 {
1049 rl = gdb_readline (local_prompt);
1050 }
9e0b60a8 1051
d318976c
FN
1052 if (annotation_level > 1 && instream == stdin)
1053 {
306d9ac5
DC
1054 puts_unfiltered ("\n\032\032post-");
1055 puts_unfiltered (annotation_suffix);
1056 puts_unfiltered ("\n");
d318976c 1057 }
9e0b60a8 1058
d318976c 1059 if (!rl || rl == (char *) EOF)
9e0b60a8 1060 {
d318976c
FN
1061 got_eof = 1;
1062 break;
9e0b60a8 1063 }
d318976c
FN
1064 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1065 {
1066 linelength = strlen (rl) + 1 + (p - linebuffer);
1067 nline = (char *) xrealloc (linebuffer, linelength);
1068 p += nline - linebuffer;
1069 linebuffer = nline;
1070 }
1071 p1 = rl;
1072 /* Copy line. Don't copy null at end. (Leaves line alone
1073 if this was just a newline) */
1074 while (*p1)
1075 *p++ = *p1++;
9e0b60a8 1076
b8c9b27d 1077 xfree (rl); /* Allocated in readline. */
9e0b60a8 1078
d318976c
FN
1079 if (p == linebuffer || *(p - 1) != '\\')
1080 break;
9e0b60a8 1081
d318976c
FN
1082 p--; /* Put on top of '\'. */
1083 local_prompt = (char *) 0;
1084 }
9e0b60a8 1085
d318976c
FN
1086#ifdef STOP_SIGNAL
1087 if (job_control)
1088 signal (STOP_SIGNAL, SIG_DFL);
1089#endif
1090 immediate_quit--;
9e0b60a8 1091
d318976c
FN
1092 if (got_eof)
1093 return NULL;
9e0b60a8 1094
d318976c
FN
1095#define SERVER_COMMAND_LENGTH 7
1096 server_command =
1097 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 1098 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
d318976c 1099 if (server_command)
9e0b60a8 1100 {
d318976c
FN
1101 /* Note that we don't set `line'. Between this and the check in
1102 dont_repeat, this insures that repeating will still do the
1103 right thing. */
1104 *p = '\0';
1105 return linebuffer + SERVER_COMMAND_LENGTH;
9e0b60a8 1106 }
9e0b60a8 1107
d318976c
FN
1108 /* Do history expansion if that is wished. */
1109 if (history_expansion_p && instream == stdin
1110 && ISATTY (instream))
1111 {
1112 char *history_value;
1113 int expanded;
9e0b60a8 1114
d318976c
FN
1115 *p = '\0'; /* Insert null now. */
1116 expanded = history_expand (linebuffer, &history_value);
1117 if (expanded)
1118 {
1119 /* Print the changes. */
1120 printf_unfiltered ("%s\n", history_value);
9e0b60a8 1121
d318976c
FN
1122 /* If there was an error, call this function again. */
1123 if (expanded < 0)
1124 {
b8c9b27d 1125 xfree (history_value);
d318976c
FN
1126 return command_line_input (prompt_arg, repeat, annotation_suffix);
1127 }
1128 if (strlen (history_value) > linelength)
1129 {
1130 linelength = strlen (history_value) + 1;
1131 linebuffer = (char *) xrealloc (linebuffer, linelength);
1132 }
1133 strcpy (linebuffer, history_value);
1134 p = linebuffer + strlen (linebuffer);
d318976c 1135 }
91d2803c 1136 xfree (history_value);
d318976c 1137 }
9e0b60a8 1138
d318976c
FN
1139 /* If we just got an empty line, and that is supposed
1140 to repeat the previous command, return the value in the
1141 global buffer. */
1142 if (repeat && p == linebuffer)
1143 return line;
1144 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1145 if (repeat && !*p1)
1146 return line;
9e0b60a8 1147
d318976c 1148 *p = 0;
9e0b60a8 1149
d318976c
FN
1150 /* Add line to history if appropriate. */
1151 if (instream == stdin
1152 && ISATTY (stdin) && *linebuffer)
1153 add_history (linebuffer);
9e0b60a8 1154
d318976c
FN
1155 /* Note: lines consisting solely of comments are added to the command
1156 history. This is useful when you type a command, and then
1157 realize you don't want to execute it quite yet. You can comment
1158 out the command and then later fetch it from the value history
1159 and remove the '#'. The kill ring is probably better, but some
1160 people are in the habit of commenting things out. */
1161 if (*p1 == '#')
1162 *p1 = '\0'; /* Found a comment. */
9e0b60a8 1163
d318976c
FN
1164 /* Save into global buffer if appropriate. */
1165 if (repeat)
1166 {
1167 if (linelength > linesize)
1168 {
1169 line = xrealloc (line, linelength);
1170 linesize = linelength;
1171 }
1172 strcpy (line, linebuffer);
1173 return line;
1174 }
9e0b60a8 1175
d318976c 1176 return linebuffer;
9e0b60a8
JM
1177}
1178\f
1179/* Print the GDB banner. */
1180void
fba45db2 1181print_gdb_version (struct ui_file *stream)
9e0b60a8
JM
1182{
1183 /* From GNU coding standards, first line is meant to be easy for a
1184 program to parse, and is just canonical program name and version
1185 number, which starts after last space. */
1186
1187 fprintf_filtered (stream, "GNU gdb %s\n", version);
1188
1189 /* Second line is a copyright notice. */
1190
636265b6 1191 fprintf_filtered (stream, "Copyright (C) 2008 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1192
1193 /* Following the copyright is a brief statement that the program is
1194 free software, that users are free to copy and change it on
1195 certain conditions, that it is covered by the GNU GPL, and that
1196 there is no warranty. */
1197
1198 fprintf_filtered (stream, "\
b8533aec
DJ
1199License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
1200This is free software: you are free to change and redistribute it.\n\
0b93d57c 1201There is NO WARRANTY, to the extent permitted by law. Type \"show copying\"\n\
b8533aec 1202and \"show warranty\" for details.\n");
9e0b60a8
JM
1203
1204 /* After the required info we print the configuration information. */
1205
1206 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1207 if (strcmp (host_name, target_name) != 0)
9e0b60a8
JM
1208 {
1209 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1210 }
1211 else
1212 {
1213 fprintf_filtered (stream, "%s", host_name);
1214 }
1215 fprintf_filtered (stream, "\".");
1216}
9e0b60a8
JM
1217\f
1218/* get_prompt: access method for the GDB prompt string. */
1219
9e0b60a8 1220char *
fba45db2 1221get_prompt (void)
9e0b60a8 1222{
362646f5 1223 return PROMPT (0);
9e0b60a8
JM
1224}
1225
1226void
fba45db2 1227set_prompt (char *s)
9e0b60a8
JM
1228{
1229/* ??rehrauer: I don't know why this fails, since it looks as though
1230 assignments to prompt are wrapped in calls to savestring...
c5aa993b 1231 if (prompt != NULL)
b8c9b27d 1232 xfree (prompt);
c5aa993b 1233 */
362646f5 1234 PROMPT (0) = savestring (s, strlen (s));
9e0b60a8 1235}
9e0b60a8 1236\f
c5aa993b 1237
9e0b60a8
JM
1238/* If necessary, make the user confirm that we should quit. Return
1239 non-zero if we should quit, zero if we shouldn't. */
1240
1241int
fba45db2 1242quit_confirm (void)
9e0b60a8 1243{
39f77062 1244 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
9e0b60a8
JM
1245 {
1246 char *s;
1247
1248 /* This is something of a hack. But there's no reliable way to
c5aa993b
JM
1249 see if a GUI is running. The `use_windows' variable doesn't
1250 cut it. */
9a4105ab 1251 if (deprecated_init_ui_hook)
9e0b60a8
JM
1252 s = "A debugging session is active.\nDo you still want to close the debugger?";
1253 else if (attach_flag)
1254 s = "The program is running. Quit anyway (and detach it)? ";
1255 else
1256 s = "The program is running. Exit anyway? ";
1257
306d9ac5 1258 if (!query ("%s", s))
9e0b60a8
JM
1259 return 0;
1260 }
1261
1262 return 1;
1263}
1264
b0abbc58 1265/* Helper routine for quit_force that requires error handling. */
9e0b60a8 1266
b0abbc58 1267struct qt_args
9e0b60a8 1268{
b0abbc58
JJ
1269 char *args;
1270 int from_tty;
1271};
9e0b60a8 1272
b0abbc58
JJ
1273static int
1274quit_target (void *arg)
1275{
1276 struct qt_args *qt = (struct qt_args *)arg;
9e0b60a8 1277
39f77062 1278 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
9e0b60a8
JM
1279 {
1280 if (attach_flag)
b0abbc58 1281 target_detach (qt->args, qt->from_tty);
9e0b60a8 1282 else
b0abbc58 1283 target_kill ();
9e0b60a8
JM
1284 }
1285
1286 /* UDI wants this, to kill the TIP. */
f1c07ab0 1287 target_close (&current_target, 1);
9e0b60a8
JM
1288
1289 /* Save the history information if it is appropriate to do so. */
1290 if (write_history_p && history_filename)
1291 write_history (history_filename);
1292
c5aa993b 1293 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
9e0b60a8 1294
b0abbc58
JJ
1295 return 0;
1296}
1297
1298/* Quit without asking for confirmation. */
1299
1300void
1301quit_force (char *args, int from_tty)
1302{
1303 int exit_code = 0;
365c70b1 1304 struct qt_args qt;
b0abbc58
JJ
1305
1306 /* An optional expression may be used to cause gdb to terminate with the
1307 value of that expression. */
1308 if (args)
1309 {
1310 struct value *val = parse_and_eval (args);
1311
1312 exit_code = (int) value_as_long (val);
1313 }
4b0ad762
AS
1314 else if (return_child_result)
1315 exit_code = return_child_result_value;
b0abbc58 1316
365c70b1
JJ
1317 qt.args = args;
1318 qt.from_tty = from_tty;
1319
b0abbc58 1320 /* We want to handle any quit errors and exit regardless. */
365c70b1 1321 catch_errors (quit_target, &qt,
b0abbc58
JJ
1322 "Quitting: ", RETURN_MASK_ALL);
1323
9e0b60a8
JM
1324 exit (exit_code);
1325}
1326
698ba934
DJ
1327/* Returns whether GDB is running on a terminal and input is
1328 currently coming from that terminal. */
9e0b60a8
JM
1329
1330int
fba45db2 1331input_from_terminal_p (void)
9e0b60a8 1332{
698ba934
DJ
1333 if (gdb_has_a_terminal () && instream == stdin)
1334 return 1;
1335
1336 /* If INSTREAM is unset, and we are not in a user command, we
1337 must be in Insight. That's like having a terminal, for our
1338 purposes. */
1339 if (instream == NULL && !in_user_command)
1340 return 1;
1341
1342 return 0;
9e0b60a8
JM
1343}
1344\f
9e0b60a8 1345static void
fba45db2 1346dont_repeat_command (char *ignored, int from_tty)
9e0b60a8 1347{
c5aa993b
JM
1348 *line = 0; /* Can't call dont_repeat here because we're not
1349 necessarily reading from stdin. */
9e0b60a8
JM
1350}
1351\f
1352/* Functions to manipulate command line editing control variables. */
1353
1354/* Number of commands to print in each call to show_commands. */
1355#define Hist_print 10
d318976c 1356void
fba45db2 1357show_commands (char *args, int from_tty)
9e0b60a8
JM
1358{
1359 /* Index for history commands. Relative to history_base. */
1360 int offset;
1361
1362 /* Number of the history entry which we are planning to display next.
1363 Relative to history_base. */
1364 static int num = 0;
1365
1366 /* The first command in the history which doesn't exist (i.e. one more
1367 than the number of the last command). Relative to history_base. */
1368 int hist_len;
1369
9e0b60a8
JM
1370 /* Print out some of the commands from the command history. */
1371 /* First determine the length of the history list. */
1372 hist_len = history_size;
1373 for (offset = 0; offset < history_size; offset++)
1374 {
1375 if (!history_get (history_base + offset))
1376 {
1377 hist_len = offset;
1378 break;
1379 }
1380 }
1381
1382 if (args)
1383 {
1384 if (args[0] == '+' && args[1] == '\0')
1385 /* "info editing +" should print from the stored position. */
1386 ;
1387 else
1388 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1389 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1390 }
1391 /* "show commands" means print the last Hist_print commands. */
1392 else
1393 {
1394 num = hist_len - Hist_print;
1395 }
1396
1397 if (num < 0)
1398 num = 0;
1399
1400 /* If there are at least Hist_print commands, we want to display the last
1401 Hist_print rather than, say, the last 6. */
1402 if (hist_len - num < Hist_print)
1403 {
1404 num = hist_len - Hist_print;
1405 if (num < 0)
1406 num = 0;
1407 }
1408
1409 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1410 {
1411 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1412 (history_get (history_base + offset))->line);
9e0b60a8
JM
1413 }
1414
1415 /* The next command we want to display is the next one that we haven't
1416 displayed yet. */
1417 num += Hist_print;
1418
1419 /* If the user repeats this command with return, it should do what
1420 "show commands +" does. This is unnecessary if arg is null,
1421 because "show commands +" is not useful after "show commands". */
1422 if (from_tty && args)
1423 {
1424 args[0] = '+';
1425 args[1] = '\0';
1426 }
1427}
1428
1429/* Called by do_setshow_command. */
9e0b60a8 1430static void
fba45db2 1431set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1432{
1433 if (history_size == INT_MAX)
1434 unstifle_history ();
1435 else if (history_size >= 0)
1436 stifle_history (history_size);
1437 else
1438 {
1439 history_size = INT_MAX;
8a3fe4f8 1440 error (_("History size must be non-negative"));
9e0b60a8
JM
1441 }
1442}
1443
d318976c 1444void
fba45db2 1445set_history (char *args, int from_tty)
9e0b60a8 1446{
a3f17187 1447 printf_unfiltered (_("\"set history\" must be followed by the name of a history subcommand.\n"));
9e0b60a8
JM
1448 help_list (sethistlist, "set history ", -1, gdb_stdout);
1449}
1450
d318976c 1451void
fba45db2 1452show_history (char *args, int from_tty)
9e0b60a8
JM
1453{
1454 cmd_show_list (showhistlist, from_tty, "");
1455}
1456
1457int info_verbose = 0; /* Default verbose msgs off */
1458
1459/* Called by do_setshow_command. An elaborate joke. */
d318976c 1460void
fba45db2 1461set_verbose (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1462{
1463 char *cmdname = "verbose";
1464 struct cmd_list_element *showcmd;
1465
1466 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1467
1468 if (info_verbose)
1469 {
1470 c->doc = "Set verbose printing of informational messages.";
1471 showcmd->doc = "Show verbose printing of informational messages.";
1472 }
1473 else
1474 {
1475 c->doc = "Set verbosity.";
1476 showcmd->doc = "Show verbosity.";
1477 }
1478}
1479
9e0b60a8
JM
1480/* Init the history buffer. Note that we are called after the init file(s)
1481 * have been read so that the user can change the history file via his
1482 * .gdbinit file (for instance). The GDBHISTFILE environment variable
1483 * overrides all of this.
1484 */
1485
1486void
fba45db2 1487init_history (void)
9e0b60a8
JM
1488{
1489 char *tmpenv;
1490
1491 tmpenv = getenv ("HISTSIZE");
1492 if (tmpenv)
1493 history_size = atoi (tmpenv);
1494 else if (!history_size)
1495 history_size = 256;
1496
1497 stifle_history (history_size);
1498
1499 tmpenv = getenv ("GDBHISTFILE");
1500 if (tmpenv)
c5aa993b
JM
1501 history_filename = savestring (tmpenv, strlen (tmpenv));
1502 else if (!history_filename)
1503 {
1504 /* We include the current directory so that if the user changes
1505 directories the file written will be the same as the one
1506 that was read. */
a0b3c4fd 1507#ifdef __MSDOS__
eb2f494a 1508 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1509 history_filename = concat (current_directory, "/_gdb_history",
1510 (char *)NULL);
a0b3c4fd 1511#else
1754f103
MK
1512 history_filename = concat (current_directory, "/.gdb_history",
1513 (char *)NULL);
a0b3c4fd 1514#endif
c5aa993b 1515 }
9e0b60a8
JM
1516 read_history (history_filename);
1517}
1518
920d2a44
AC
1519static void
1520show_new_async_prompt (struct ui_file *file, int from_tty,
1521 struct cmd_list_element *c, const char *value)
1522{
1523 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1524}
1525
1526static void
1527show_async_command_editing_p (struct ui_file *file, int from_tty,
1528 struct cmd_list_element *c, const char *value)
1529{
1530 fprintf_filtered (file, _("\
1531Editing of command lines as they are typed is %s.\n"),
1532 value);
1533}
1534
1535static void
1536show_annotation_level (struct ui_file *file, int from_tty,
1537 struct cmd_list_element *c, const char *value)
1538{
1539 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1540}
1541
1542static void
1543show_exec_done_display_p (struct ui_file *file, int from_tty,
1544 struct cmd_list_element *c, const char *value)
1545{
1546 fprintf_filtered (file, _("\
1547Notification of completion for asynchronous execution commands is %s.\n"),
1548 value);
1549}
9e0b60a8 1550static void
fba45db2 1551init_main (void)
9e0b60a8
JM
1552{
1553 struct cmd_list_element *c;
1554
362646f5
AC
1555 /* initialize the prompt stack to a simple "(gdb) " prompt or to
1556 whatever the DEFAULT_PROMPT is. */
1557 the_prompts.top = 0;
1558 PREFIX (0) = "";
1559 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1560 SUFFIX (0) = "";
1561 /* Set things up for annotation_level > 1, if the user ever decides
1562 to use it. */
1563 async_annotation_suffix = "prompt";
1564 /* Set the variable associated with the setshow prompt command. */
1565 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1566
1567 /* If gdb was started with --annotate=2, this is equivalent to the
1568 user entering the command 'set annotate 2' at the gdb prompt, so
1569 we need to do extra processing. */
1570 if (annotation_level > 1)
1571 set_async_annotation_level (NULL, 0, NULL);
9e0b60a8
JM
1572
1573 /* Set the important stuff up for command editing. */
1574 command_editing_p = 1;
9e0b60a8
JM
1575 history_expansion_p = 0;
1576 write_history_p = 0;
1577
1578 /* Setup important stuff for command line editing. */
38017ce8 1579 rl_completion_entry_function = readline_line_completion_function;
51065942 1580 rl_completer_word_break_characters = default_word_break_characters ();
d318976c 1581 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
9e0b60a8 1582 rl_readline_name = "gdb";
7cb3ec5e 1583 rl_terminal_name = getenv ("TERM");
9e0b60a8 1584
467d8519
TT
1585 /* The name for this defun comes from Bash, where it originated.
1586 15 is Control-o, the same binding this function has in Bash. */
1587 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1588
4d28ad1e
AC
1589 add_setshow_string_cmd ("prompt", class_support,
1590 &new_async_prompt, _("\
1591Set gdb's prompt"), _("\
1592Show gdb's prompt"), NULL,
1593 set_async_prompt,
920d2a44 1594 show_new_async_prompt,
4d28ad1e 1595 &setlist, &showlist);
9e0b60a8 1596
1bedd215
AC
1597 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1598Don't repeat this command.\n\
9e0b60a8 1599Primarily used inside of user-defined commands that should not be repeated when\n\
1bedd215 1600hitting return."));
9e0b60a8 1601
5bf193a2
AC
1602 add_setshow_boolean_cmd ("editing", class_support,
1603 &async_command_editing_p, _("\
1604Set editing of command lines as they are typed."), _("\
1605Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
1606Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1607Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2
AC
1608EMACS-like or VI-like commands like control-P or ESC."),
1609 set_async_editing_command,
920d2a44 1610 show_async_command_editing_p,
5bf193a2
AC
1611 &setlist, &showlist);
1612
1613 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1614Set saving of the history record on exit."), _("\
1615Show saving of the history record on exit."), _("\
9e0b60a8 1616Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
1617Without an argument, saving is enabled."),
1618 NULL,
920d2a44 1619 show_write_history_p,
5bf193a2 1620 &sethistlist, &showhistlist);
9e0b60a8 1621
4d28ad1e
AC
1622 add_setshow_integer_cmd ("size", no_class, &history_size, _("\
1623Set the size of the command history,"), _("\
1624Show the size of the command history,"), _("\
1625ie. the number of previous commands to keep a record of."),
1626 set_history_size_command,
920d2a44 1627 show_history_size,
4d28ad1e
AC
1628 &sethistlist, &showhistlist);
1629
1630 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1631Set the filename in which to record the command history"), _("\
1632Show the filename in which to record the command history"), _("\
1633(the list of previous commands of which a record is kept)."),
1634 NULL,
920d2a44 1635 show_history_filename,
4d28ad1e 1636 &sethistlist, &showhistlist);
9e0b60a8 1637
5bf193a2
AC
1638 add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
1639Set whether to confirm potentially dangerous operations."), _("\
1640Show whether to confirm potentially dangerous operations."), NULL,
1641 NULL,
920d2a44 1642 show_caution,
5bf193a2 1643 &setlist, &showlist);
9e0b60a8 1644
85c07804
AC
1645 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1646Set annotation_level."), _("\
1647Show annotation_level."), _("\
9e0b60a8 16480 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804
AC
16492 == output annotated suitably for use by programs that control GDB."),
1650 set_async_annotation_level,
920d2a44 1651 show_annotation_level,
85c07804 1652 &setlist, &showlist);
362646f5 1653
5bf193a2
AC
1654 add_setshow_boolean_cmd ("exec-done-display", class_support,
1655 &exec_done_display_p, _("\
1656Set notification of completion for asynchronous execution commands."), _("\
1657Show notification of completion for asynchronous execution commands."), _("\
1658Use \"on\" to enable the notification, and \"off\" to disable it."),
1659 NULL,
920d2a44 1660 show_exec_done_display_p,
5bf193a2 1661 &setlist, &showlist);
9e0b60a8 1662}
64cdedad
EZ
1663
1664void
1665gdb_init (char *argv0)
1666{
1667 if (pre_init_ui_hook)
1668 pre_init_ui_hook ();
1669
1670 /* Run the init function of each source file */
1671
1672 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1673 current_directory = gdb_dirbuf;
1674
1675#ifdef __MSDOS__
1676 /* Make sure we return to the original directory upon exit, come
1677 what may, since the OS doesn't do that for us. */
1678 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1679#endif
1680
1681 init_cmd_lists (); /* This needs to be done first */
1682 initialize_targets (); /* Setup target_terminal macros for utils.c */
1683 initialize_utils (); /* Make errors and warnings possible */
1684 initialize_all_files ();
1685 initialize_current_architecture ();
1686 init_cli_cmds();
1687 init_main (); /* But that omits this file! Do it now */
1688
0ea3f30e
DJ
1689 initialize_stdin_serial ();
1690
362646f5 1691 async_init_signals ();
64cdedad
EZ
1692
1693 /* We need a default language for parsing expressions, so simple things like
1694 "set width 0" won't fail if no language is explicitly set in a config file
1695 or implicitly set by reading an executable during startup. */
1696 set_language (language_c);
1697 expected_language = current_language; /* don't warn about the change. */
1698
9a4105ab
AC
1699 /* Allow another UI to initialize. If the UI fails to initialize,
1700 and it wants GDB to revert to the CLI, it should clear
1701 deprecated_init_ui_hook. */
1702 if (deprecated_init_ui_hook)
1703 deprecated_init_ui_hook (argv0);
64cdedad 1704}
This page took 0.841695 seconds and 4 git commands to generate.