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