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