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