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