Use tui_putc to output newline entered by the user
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
a752853e 2
32d0add0 3 Copyright (C) 1986-2015 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "gdbcmd.h"
210661e7
EZ
22#include "cli/cli-cmds.h"
23#include "cli/cli-script.h"
24#include "cli/cli-setshow.h"
18a642a1 25#include "cli/cli-decode.h"
c906108c
SS
26#include "symtab.h"
27#include "inferior.h"
45741a9c 28#include "infrun.h"
042be3a9 29#include <signal.h>
c906108c 30#include "target.h"
68c765e2 31#include "target-dcache.h"
c906108c
SS
32#include "breakpoint.h"
33#include "gdbtypes.h"
34#include "expression.h"
35#include "value.h"
36#include "language.h"
c5aa993b 37#include "terminal.h" /* For job_control. */
c906108c 38#include "annotate.h"
c5f0f3d0 39#include "completer.h"
c906108c 40#include "top.h"
d4f3574e 41#include "version.h"
210661e7 42#include "serial.h"
d16aafd8 43#include "doublest.h"
f17517ea 44#include "main.h"
2e03ee74 45#include "event-loop.h"
8ea051c5 46#include "gdbthread.h"
6dddc817 47#include "extension.h"
b4a14fd0 48#include "interps.h"
6dea1fbd 49#include "observer.h"
bd712aed 50#include "maint.h"
97c85fc6 51#include "filenames.h"
06096720 52#include "frame.h"
c906108c 53
371d5dec 54/* readline include files. */
dbda9972
AC
55#include "readline/readline.h"
56#include "readline/history.h"
c906108c
SS
57
58/* readline defines this. */
59#undef savestring
60
61#include <sys/types.h>
c906108c 62
c2c6d25f 63#include "event-top.h"
53ce3c39 64#include <sys/stat.h>
c906108c 65#include <ctype.h>
8b93c638
JM
66#include "ui-out.h"
67#include "cli-out.h"
2f9d54cf 68#include "tracepoint.h"
93d6eb10 69#include "inf-loop.h"
c906108c 70
18206ca3
PP
71#if defined(TUI)
72# include "tui/tui.h"
73#endif
74
ca7b0bbc
TT
75extern void initialize_all_files (void);
76
95298e72
PM
77#define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
78#define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
79#define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
80
371d5dec 81/* Default command line prompt. This is overriden in some configs. */
104c1213
JM
82
83#ifndef DEFAULT_PROMPT
84#define DEFAULT_PROMPT "(gdb) "
c906108c
SS
85#endif
86
e655c1a2 87/* Initialization file name for gdb. This is host-dependent. */
eaae3919 88
e655c1a2 89const char gdbinit[] = GDBINIT;
c906108c
SS
90
91int inhibit_gdbinit = 0;
92
c906108c
SS
93extern char lang_frame_mismatch_warn[]; /* language.c */
94
050a2e1d
PA
95/* Flag for whether we want to confirm potentially dangerous
96 operations. Default is yes. */
97
e360902b 98int confirm = 1;
c906108c 99
920d2a44 100static void
e360902b 101show_confirm (struct ui_file *file, int from_tty,
920d2a44
AC
102 struct cmd_list_element *c, const char *value)
103{
3e43a32a
MS
104 fprintf_filtered (file, _("Whether to confirm potentially "
105 "dangerous operations is %s.\n"),
920d2a44
AC
106 value);
107}
c906108c 108
371d5dec
MS
109/* stdio stream that command input is being read from. Set to stdin
110 normally. Set by source_command to the file we are sourcing. Set
111 to NULL if we are executing a user-defined command or interacting
112 via a GUI. */
c906108c
SS
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 132
c906108c
SS
133/* Buffer used for reading command lines, and the size
134 allocated for it so far. */
135
dc7eb48e
PA
136char *saved_command_line;
137int saved_command_line_size = 100;
c906108c
SS
138
139/* Nonzero if the current command is modified by "server ". This
c2d11a7d 140 affects things like recording into the command history, commands
c906108c
SS
141 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
142 whatever) can issue its own commands and also send along commands
143 from the user, and have the user not notice that the user interface
144 is issuing commands too. */
145int server_command;
146
371d5dec 147/* Timeout limit for response from target. */
c906108c 148
ce808e91
AC
149/* The default value has been changed many times over the years. It
150 was originally 5 seconds. But that was thought to be a long time
151 to sit and wait, so it was changed to 2 seconds. That was thought
152 to be plenty unless the connection was going through some terminal
153 server or multiplexer or other form of hairy serial connection.
154
155 In mid-1996, remote_timeout was moved from remote.c to top.c and
156 it began being used in other remote-* targets. It appears that the
157 default was changed to 20 seconds at that time, perhaps because the
85a453d5 158 Renesas E7000 ICE didn't always respond in a timely manner.
ce808e91
AC
159
160 But if 5 seconds is a long time to sit and wait for retransmissions,
161 20 seconds is far worse. This demonstrates the difficulty of using
162 a single variable for all protocol timeouts.
163
164 As remote.c is used much more than remote-e7000.c, it was changed
371d5dec 165 back to 2 seconds in 1999. */
ce808e91
AC
166
167int remote_timeout = 2;
c906108c
SS
168
169/* Non-zero tells remote* modules to output debugging info. */
170
171int remote_debug = 0;
172
6dd77b81
RH
173/* Sbrk location on entry to main. Used for statistics only. */
174#ifdef HAVE_SBRK
175char *lim_at_start;
176#endif
177
c906108c
SS
178/* Hooks for alternate command interfaces. */
179
371d5dec
MS
180/* This hook is called from within gdb's many mini-event loops which
181 could steal control from a real user interface's event loop. It
182 returns non-zero if the user is requesting a detach, zero
183 otherwise. */
7a292a7a 184
98bbd631 185int (*deprecated_ui_loop_hook) (int);
c906108c 186
c906108c 187
c906108c
SS
188/* Called from print_frame_info to list the line we stopped in. */
189
371d5dec
MS
190void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
191 int line,
192 int stopline,
193 int noerror);
c906108c
SS
194/* Replaces most of query. */
195
9a4105ab 196int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
197
198/* Replaces most of warning. */
199
9a4105ab 200void (*deprecated_warning_hook) (const char *, va_list);
c906108c 201
9a4105ab
AC
202/* These three functions support getting lines of text from the user.
203 They are used in sequence. First deprecated_readline_begin_hook is
204 called with a text string that might be (for example) a message for
205 the user to type in a sequence of commands to be executed at a
206 breakpoint. If this function calls back to a GUI, it might take
207 this opportunity to pop up a text interaction window with this
208 message. Next, deprecated_readline_hook is called with a prompt
209 that is emitted prior to collecting the user input. It can be
210 called multiple times. Finally, deprecated_readline_end_hook is
211 called to notify the GUI that we are done with the interaction
212 window and it can close it. */
c906108c 213
9a4105ab 214void (*deprecated_readline_begin_hook) (char *, ...);
38bcc89d 215char *(*deprecated_readline_hook) (const char *);
9a4105ab 216void (*deprecated_readline_end_hook) (void);
c906108c 217
6426a772 218/* Called as appropriate to notify the interface that we have attached
371d5dec 219 to or detached from an already running process. */
6426a772 220
9a4105ab
AC
221void (*deprecated_attach_hook) (void);
222void (*deprecated_detach_hook) (void);
6426a772 223
371d5dec
MS
224/* Called during long calculations to allow GUI to repair window
225 damage, and to check for stop buttons, etc... */
c906108c 226
9a4105ab 227void (*deprecated_interactive_hook) (void);
c906108c 228
371d5dec
MS
229/* Called when going to wait for the target. Usually allows the GUI
230 to run while waiting for target events. */
c906108c 231
9a4105ab 232ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
47608cb1
PA
233 struct target_waitstatus *status,
234 int options);
c906108c 235
371d5dec
MS
236/* Used by UI as a wrapper around command execution. May do various
237 things like enabling/disabling buttons, etc... */
c906108c 238
371d5dec
MS
239void (*deprecated_call_command_hook) (struct cmd_list_element * c,
240 char *cmd, int from_tty);
c906108c
SS
241
242/* Called when the current thread changes. Argument is thread id. */
243
9a4105ab 244void (*deprecated_context_hook) (int id);
c906108c 245
c906108c
SS
246/* Handler for SIGHUP. */
247
248#ifdef SIGHUP
392a587b 249/* NOTE 1999-04-29: This function will be static again, once we modify
cd0fc7c3 250 gdb to use the event loop as the default command loop and we merge
c378eb4e 251 event-top.c into this file, top.c. */
b2cd6b29
JM
252/* static */ void
253quit_cover (void)
c906108c 254{
e360902b
PA
255 /* Stop asking user for confirmation --- we're exiting. This
256 prevents asking the user dumb questions. */
257 confirm = 0;
c5aa993b 258 quit_command ((char *) 0, 0);
c906108c
SS
259}
260#endif /* defined SIGHUP */
261\f
7a9dd1b2 262/* Line number we are currently in, in a file which is being sourced. */
392a587b 263/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 264 gdb to use the event loop as the default command loop and we merge
c378eb4e 265 event-top.c into this file, top.c. */
cd0fc7c3 266/* static */ int source_line_number;
c906108c
SS
267
268/* Name of the file we are sourcing. */
392a587b 269/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 270 gdb to use the event loop as the default command loop and we merge
c378eb4e 271 event-top.c into this file, top.c. */
05159abe 272/* static */ const char *source_file_name;
c906108c 273
c906108c
SS
274/* Clean up on error during a "source" command (or execution of a
275 user-defined command). */
276
d318976c 277void
e41a3b1a 278do_restore_instream_cleanup (void *stream)
c906108c
SS
279{
280 /* Restore the previous input stream. */
281 instream = stream;
282}
283
284/* Read commands from STREAM. */
285void
fba45db2 286read_command_file (FILE *stream)
c906108c
SS
287{
288 struct cleanup *cleanups;
289
e41a3b1a 290 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
c906108c 291 instream = stream;
c5aa993b 292 command_loop ();
c906108c
SS
293 do_cleanups (cleanups);
294}
295\f
507f3c78 296void (*pre_init_ui_hook) (void);
c906108c 297
e41a3b1a 298#ifdef __MSDOS__
70976b65 299static void
e41a3b1a
AC
300do_chdir_cleanup (void *old_dir)
301{
302 chdir (old_dir);
b8c9b27d 303 xfree (old_dir);
e41a3b1a
AC
304}
305#endif
306
028d0ed5 307struct cleanup *
4e5d721f
DE
308prepare_execute_command (void)
309{
028d0ed5
TJB
310 struct value *mark;
311 struct cleanup *cleanup;
312
313 mark = value_mark ();
314 cleanup = make_cleanup_value_free_to_mark (mark);
4e5d721f 315
371d5dec
MS
316 /* With multiple threads running while the one we're examining is
317 stopped, the dcache can get stale without us being able to detect
318 it. For the duration of the command, though, use the dcache to
319 help things like backtrace. */
4e5d721f
DE
320 if (non_stop)
321 target_dcache_invalidate ();
028d0ed5
TJB
322
323 return cleanup;
4e5d721f
DE
324}
325
77cce10f
PA
326/* Tell the user if the language has changed (except first time) after
327 executing a command. */
328
329void
330check_frame_language_change (void)
331{
332 static int warned = 0;
7ff38b1c 333 struct frame_info *frame;
77cce10f
PA
334
335 /* First make sure that a new frame has been selected, in case the
336 command or the hooks changed the program state. */
7ff38b1c 337 frame = deprecated_safe_get_selected_frame ();
77cce10f
PA
338 if (current_language != expected_language)
339 {
340 if (language_mode == language_mode_auto && info_verbose)
341 {
342 language_info (1); /* Print what changed. */
343 }
344 warned = 0;
345 }
346
347 /* Warn the user if the working language does not match the language
348 of the current frame. Only warn the user if we are actually
349 running the program, i.e. there is a stack. */
350 /* FIXME: This should be cacheing the frame and only running when
351 the frame changes. */
352
353 if (has_stack_frames ())
354 {
355 enum language flang;
356
7ff38b1c 357 flang = get_frame_language (frame);
77cce10f
PA
358 if (!warned
359 && flang != language_unknown
360 && flang != current_language->la_language)
361 {
362 printf_filtered ("%s\n", lang_frame_mismatch_warn);
363 warned = 1;
364 }
365 }
366}
367
98880d46
PA
368/* See top.h. */
369
370void
371maybe_wait_sync_command_done (int was_sync)
372{
373 /* If the interpreter is in sync mode (we're running a user
374 command's list, running command hooks or similars), and we
375 just ran a synchronous command that started the target, wait
376 for that command to end. */
377 if (!interpreter_async && !was_sync && sync_execution)
378 {
379 while (gdb_do_one_event () >= 0)
380 if (!sync_execution)
381 break;
382 }
383}
384
648bf667 385/* Execute the line P as a command, in the current user context.
d318976c 386 Pass FROM_TTY as second argument to the defining function. */
c906108c 387
d318976c
FN
388void
389execute_command (char *p, int from_tty)
c906108c 390{
353d1d73 391 struct cleanup *cleanup_if_error, *cleanup;
52f0bd74 392 struct cmd_list_element *c;
d318976c 393 char *line;
4e5d721f 394
353d1d73 395 cleanup_if_error = make_bpstat_clear_actions_cleanup ();
028d0ed5 396 cleanup = prepare_execute_command ();
c906108c 397
d318976c
FN
398 /* Force cleanup of any alloca areas if using C alloca instead of
399 a builtin alloca. */
400 alloca (0);
c906108c 401
d318976c
FN
402 /* This can happen when command_line_input hits end of file. */
403 if (p == NULL)
5fe41fbf
TT
404 {
405 do_cleanups (cleanup);
5ae85e44 406 discard_cleanups (cleanup_if_error);
5fe41fbf
TT
407 return;
408 }
c906108c 409
49d03eab 410 target_log_command (p);
8b93c638 411
d318976c
FN
412 while (*p == ' ' || *p == '\t')
413 p++;
414 if (*p)
8b93c638 415 {
6f937416 416 const char *cmd = p;
d318976c 417 char *arg;
90e28950
TT
418 int was_sync = sync_execution;
419
d318976c 420 line = p;
8b93c638 421
16026cd7
AS
422 /* If trace-commands is set then this will print this command. */
423 print_command_trace (p);
424
6f937416
PA
425 c = lookup_cmd (&cmd, cmdlist, "", 0, 1);
426 p = (char *) cmd;
8b93c638 427
d318976c
FN
428 /* Pass null arg rather than an empty one. */
429 arg = *p ? p : 0;
8b93c638 430
9f60d481
AC
431 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
432 while the is_complete_command(cfunc) test is just plain
433 bogus. They should both be replaced by a test of the form
434 c->strip_trailing_white_space_p. */
435 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
436 can't be replaced with func. This is because it is the
437 cfunc, and not the func, that has the value that the
438 is_complete_command hack is testing for. */
439 /* Clear off trailing whitespace, except for set and complete
440 command. */
d318976c
FN
441 if (arg
442 && c->type != set_cmd
bbaca940 443 && !is_complete_command (c))
8b93c638 444 {
d318976c
FN
445 p = arg + strlen (arg) - 1;
446 while (p >= arg && (*p == ' ' || *p == '\t'))
447 p--;
448 *(p + 1) = '\0';
8b93c638
JM
449 }
450
371d5dec 451 /* If this command has been pre-hooked, run the hook first. */
5913bcb0 452 execute_cmd_pre_hook (c);
c906108c 453
1f2bdf09 454 if (c->deprecated_warn_user)
6f937416 455 deprecated_cmd_warning (line);
c906108c 456
7d74f244 457 /* c->user_commands would be NULL in the case of a python command. */
fe978cb0 458 if (c->theclass == class_user && c->user_commands)
d318976c 459 execute_user_command (c, arg);
5b9afe8a
YQ
460 else if (c->type == set_cmd)
461 do_set_command (arg, from_tty, c);
462 else if (c->type == show_cmd)
463 do_show_command (arg, from_tty, c);
f436dd25 464 else if (!cmd_func_p (c))
8a3fe4f8 465 error (_("That is not a command, just a help topic."));
9a4105ab 466 else if (deprecated_call_command_hook)
050a2e1d 467 deprecated_call_command_hook (c, arg, from_tty);
d318976c 468 else
050a2e1d 469 cmd_func (c, arg, from_tty);
b4a14fd0 470
98880d46 471 maybe_wait_sync_command_done (was_sync);
b4a14fd0 472
371d5dec 473 /* If this command has been post-hooked, run the hook last. */
5913bcb0 474 execute_cmd_post_hook (c);
c906108c 475
c906108c
SS
476 }
477
77cce10f 478 check_frame_language_change ();
028d0ed5 479
353d1d73
JK
480 do_cleanups (cleanup);
481 discard_cleanups (cleanup_if_error);
c906108c
SS
482}
483
5da1313b
JK
484/* Run execute_command for P and FROM_TTY. Capture its output into the
485 returned string, do not display it to the screen. BATCH_FLAG will be
486 temporarily set to true. */
487
488char *
489execute_command_to_string (char *p, int from_tty)
490{
491 struct ui_file *str_file;
492 struct cleanup *cleanup;
493 char *retval;
494
495 /* GDB_STDOUT should be better already restored during these
496 restoration callbacks. */
497 cleanup = set_batch_flag_and_make_cleanup_restore_page_info ();
498
b4a14fd0
PA
499 make_cleanup_restore_integer (&interpreter_async);
500 interpreter_async = 0;
501
5da1313b
JK
502 str_file = mem_fileopen ();
503
8d4d924b 504 make_cleanup_ui_file_delete (str_file);
5da1313b
JK
505 make_cleanup_restore_ui_file (&gdb_stdout);
506 make_cleanup_restore_ui_file (&gdb_stderr);
8d4d924b
JK
507 make_cleanup_restore_ui_file (&gdb_stdlog);
508 make_cleanup_restore_ui_file (&gdb_stdtarg);
509 make_cleanup_restore_ui_file (&gdb_stdtargerr);
510
79a45e25 511 if (ui_out_redirect (current_uiout, str_file) < 0)
8d4d924b
JK
512 warning (_("Current output protocol does not support redirection"));
513 else
79a45e25 514 make_cleanup_ui_out_redirect_pop (current_uiout);
5da1313b
JK
515
516 gdb_stdout = str_file;
517 gdb_stderr = str_file;
8d4d924b
JK
518 gdb_stdlog = str_file;
519 gdb_stdtarg = str_file;
520 gdb_stdtargerr = str_file;
5da1313b
JK
521
522 execute_command (p, from_tty);
523
524 retval = ui_file_xstrdup (str_file, NULL);
525
526 do_cleanups (cleanup);
527
528 return retval;
529}
530
d318976c
FN
531/* Read commands from `instream' and execute them
532 until end of file or error reading instream. */
c906108c 533
d318976c
FN
534void
535command_loop (void)
c906108c 536{
d318976c
FN
537 struct cleanup *old_chain;
538 char *command;
539 int stdin_is_tty = ISATTY (stdin);
c5aa993b 540
d318976c
FN
541 while (instream && !feof (instream))
542 {
d318976c 543 if (window_hook && instream == stdin)
ab821bc6 544 (*window_hook) (instream, get_prompt ());
c906108c 545
522002f9 546 clear_quit_flag ();
d318976c
FN
547 if (instream == stdin && stdin_is_tty)
548 reinitialize_more_filter ();
549 old_chain = make_cleanup (null_cleanup, 0);
c906108c 550
c378eb4e 551 /* Get a command-line. This calls the readline package. */
d318976c 552 command = command_line_input (instream == stdin ?
ab821bc6 553 get_prompt () : (char *) NULL,
d318976c 554 instream == stdin, "prompt");
d318976c 555 if (command == 0)
5fe41fbf
TT
556 {
557 do_cleanups (old_chain);
558 return;
559 }
c906108c 560
0f3bb72e 561 make_command_stats_cleanup (1);
9e0b60a8 562
fb1f94b0
PM
563 /* Do not execute commented lines. */
564 if (command[0] != '#')
565 {
566 execute_command (command, instream == stdin);
347bddb7 567
fb1f94b0
PM
568 /* Do any commands attached to breakpoint we are stopped at. */
569 bpstat_do_actions ();
570 }
d318976c 571 do_cleanups (old_chain);
9e0b60a8 572 }
9e0b60a8 573}
d318976c 574\f
47a80e90
TT
575/* When nonzero, cause dont_repeat to do nothing. This should only be
576 set via prevent_dont_repeat. */
577
578static int suppress_dont_repeat = 0;
579
d318976c 580/* Commands call this if they do not want to be repeated by null lines. */
9e0b60a8 581
d318976c
FN
582void
583dont_repeat (void)
9e0b60a8 584{
47a80e90 585 if (suppress_dont_repeat || server_command)
d318976c 586 return;
9e0b60a8 587
d318976c 588 /* If we aren't reading from standard input, we are saving the last
371d5dec
MS
589 thing read from stdin in line and don't want to delete it. Null
590 lines won't repeat here in any case. */
d318976c 591 if (instream == stdin)
dc7eb48e 592 *saved_command_line = 0;
9e0b60a8 593}
47a80e90
TT
594
595/* Prevent dont_repeat from working, and return a cleanup that
596 restores the previous state. */
597
598struct cleanup *
599prevent_dont_repeat (void)
600{
601 struct cleanup *result = make_cleanup_restore_integer (&suppress_dont_repeat);
602
603 suppress_dont_repeat = 1;
604 return result;
605}
606
d318976c
FN
607\f
608/* Read a line from the stream "instream" without command line editing.
9e0b60a8 609
d318976c
FN
610 It prints PROMPT_ARG once at the start.
611 Action is compatible with "readline", e.g. space for the result is
612 malloc'd and should be freed by the caller.
9e0b60a8 613
d318976c
FN
614 A NULL return means end of file. */
615char *
38bcc89d 616gdb_readline (const char *prompt_arg)
9e0b60a8 617{
d318976c
FN
618 int c;
619 char *result;
620 int input_index = 0;
621 int result_size = 80;
9e0b60a8 622
d318976c 623 if (prompt_arg)
9e0b60a8 624 {
d318976c
FN
625 /* Don't use a _filtered function here. It causes the assumed
626 character position to be off, since the newline we read from
627 the user is not accounted for. */
628 fputs_unfiltered (prompt_arg, gdb_stdout);
9e0b60a8
JM
629 gdb_flush (gdb_stdout);
630 }
631
d318976c 632 result = (char *) xmalloc (result_size);
9e0b60a8
JM
633
634 while (1)
635 {
d318976c
FN
636 /* Read from stdin if we are executing a user defined command.
637 This is the right thing for prompt_for_continue, at least. */
638 c = fgetc (instream ? instream : stdin);
9e0b60a8 639
d318976c 640 if (c == EOF)
9e0b60a8 641 {
d318976c
FN
642 if (input_index > 0)
643 /* The last line does not end with a newline. Return it, and
644 if we are called again fgetc will still return EOF and
645 we'll return NULL then. */
9e0b60a8 646 break;
b8c9b27d 647 xfree (result);
d318976c 648 return NULL;
9e0b60a8 649 }
c5aa993b 650
d318976c 651 if (c == '\n')
9e0b60a8 652 {
d318976c
FN
653 if (input_index > 0 && result[input_index - 1] == '\r')
654 input_index--;
655 break;
9e0b60a8 656 }
9e0b60a8 657
d318976c
FN
658 result[input_index++] = c;
659 while (input_index >= result_size)
9e0b60a8 660 {
d318976c
FN
661 result_size *= 2;
662 result = (char *) xrealloc (result, result_size);
9e0b60a8 663 }
9e0b60a8
JM
664 }
665
d318976c
FN
666 result[input_index++] = '\0';
667 return result;
9e0b60a8
JM
668}
669
d318976c
FN
670/* Variables which control command line editing and history
671 substitution. These variables are given default values at the end
672 of this file. */
673static int command_editing_p;
920d2a44 674
d318976c
FN
675/* NOTE 1999-04-29: This variable will be static again, once we modify
676 gdb to use the event loop as the default command loop and we merge
c378eb4e 677 event-top.c into this file, top.c. */
920d2a44 678
d318976c 679/* static */ int history_expansion_p;
920d2a44 680
d318976c 681static int write_history_p;
920d2a44
AC
682static void
683show_write_history_p (struct ui_file *file, int from_tty,
684 struct cmd_list_element *c, const char *value)
685{
686 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
687 value);
688}
689
840a9a1f 690/* The variable associated with the "set/show history size"
ebfd00d2
PP
691 command. The value -1 means unlimited, and -2 means undefined. */
692static int history_size_setshow_var = -2;
840a9a1f 693
920d2a44
AC
694static void
695show_history_size (struct ui_file *file, int from_tty,
696 struct cmd_list_element *c, const char *value)
697{
698 fprintf_filtered (file, _("The size of the command history is %s.\n"),
699 value);
700}
701
fc637f04
PP
702/* Variable associated with the "history remove-duplicates" option.
703 The value -1 means unlimited. */
704static int history_remove_duplicates = 0;
705
706static void
707show_history_remove_duplicates (struct ui_file *file, int from_tty,
708 struct cmd_list_element *c, const char *value)
709{
710 fprintf_filtered (file,
711 _("The number of history entries to look back at for "
712 "duplicates is %s.\n"),
713 value);
714}
715
d318976c 716static char *history_filename;
920d2a44
AC
717static void
718show_history_filename (struct ui_file *file, int from_tty,
719 struct cmd_list_element *c, const char *value)
720{
3e43a32a
MS
721 fprintf_filtered (file, _("The filename in which to record "
722 "the command history is \"%s\".\n"),
920d2a44
AC
723 value);
724}
9e0b60a8 725
b4f5539f 726/* This is like readline(), but it has some gdb-specific behavior.
2e03ee74 727 gdb may want readline in both the synchronous and async modes during
b4f5539f
TT
728 a single gdb invocation. At the ordinary top-level prompt we might
729 be using the async readline. That means we can't use
730 rl_pre_input_hook, since it doesn't work properly in async mode.
731 However, for a secondary prompt (" >", such as occurs during a
2e03ee74
DJ
732 `define'), gdb wants a synchronous response.
733
734 We used to call readline() directly, running it in synchronous
735 mode. But mixing modes this way is not supported, and as of
736 readline 5.x it no longer works; the arrow keys come unbound during
737 the synchronous call. So we make a nested call into the event
738 loop. That's what gdb_readline_wrapper is for. */
739
740/* A flag set as soon as gdb_readline_wrapper_line is called; we can't
741 rely on gdb_readline_wrapper_result, which might still be NULL if
742 the user types Control-D for EOF. */
743static int gdb_readline_wrapper_done;
744
745/* The result of the current call to gdb_readline_wrapper, once a newline
746 is seen. */
747static char *gdb_readline_wrapper_result;
748
749/* Any intercepted hook. Operate-and-get-next sets this, expecting it
750 to be called after the newline is processed (which will redisplay
751 the prompt). But in gdb_readline_wrapper we will not get a new
752 prompt until the next call, or until we return to the event loop.
753 So we disable this hook around the newline and restore it before we
754 return. */
755static void (*saved_after_char_processing_hook) (void);
756
757/* This function is called when readline has seen a complete line of
758 text. */
759
760static void
761gdb_readline_wrapper_line (char *line)
762{
763 gdb_assert (!gdb_readline_wrapper_done);
764 gdb_readline_wrapper_result = line;
765 gdb_readline_wrapper_done = 1;
766
767 /* Prevent operate-and-get-next from acting too early. */
768 saved_after_char_processing_hook = after_char_processing_hook;
769 after_char_processing_hook = NULL;
1b05479a
DJ
770
771 /* Prevent parts of the prompt from being redisplayed if annotations
0017922d 772 are enabled, and readline's state getting out of sync. We'll
d3d4baed
PA
773 reinstall the callback handler, which puts the terminal in raw
774 mode (or in readline lingo, in prepped state), when we're next
775 ready to process user input, either in display_gdb_prompt, or if
776 we're handling an asynchronous target event and running in the
777 background, just before returning to the event loop to process
778 further input (or more target events). */
1b05479a 779 if (async_command_editing_p)
d3d4baed 780 gdb_rl_callback_handler_remove ();
2e03ee74
DJ
781}
782
783struct gdb_readline_wrapper_cleanup
784 {
785 void (*handler_orig) (char *);
2e03ee74 786 int already_prompted_orig;
93d6eb10
PA
787
788 /* Whether the target was async. */
789 int target_is_async_orig;
2e03ee74
DJ
790 };
791
792static void
793gdb_readline_wrapper_cleanup (void *arg)
794{
795 struct gdb_readline_wrapper_cleanup *cleanup = arg;
796
2e03ee74 797 rl_already_prompted = cleanup->already_prompted_orig;
2e03ee74
DJ
798
799 gdb_assert (input_handler == gdb_readline_wrapper_line);
800 input_handler = cleanup->handler_orig;
0017922d 801
d3d4baed
PA
802 /* Don't restore our input handler in readline yet. That would make
803 readline prep the terminal (putting it in raw mode), while the
804 line we just read may trigger execution of a command that expects
805 the terminal in the default cooked/canonical mode, such as e.g.,
806 running Python's interactive online help utility. See
807 gdb_readline_wrapper_line for when we'll reinstall it. */
0017922d 808
2e03ee74
DJ
809 gdb_readline_wrapper_result = NULL;
810 gdb_readline_wrapper_done = 0;
811
812 after_char_processing_hook = saved_after_char_processing_hook;
813 saved_after_char_processing_hook = NULL;
814
93d6eb10 815 if (cleanup->target_is_async_orig)
6a3753b3 816 target_async (1);
93d6eb10 817
2e03ee74
DJ
818 xfree (cleanup);
819}
820
b4f5539f 821char *
38bcc89d 822gdb_readline_wrapper (const char *prompt)
b4f5539f 823{
2e03ee74
DJ
824 struct cleanup *back_to;
825 struct gdb_readline_wrapper_cleanup *cleanup;
826 char *retval;
827
828 cleanup = xmalloc (sizeof (*cleanup));
829 cleanup->handler_orig = input_handler;
830 input_handler = gdb_readline_wrapper_line;
831
2e03ee74
DJ
832 cleanup->already_prompted_orig = rl_already_prompted;
833
93d6eb10
PA
834 cleanup->target_is_async_orig = target_is_async_p ();
835
2e03ee74
DJ
836 back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
837
93d6eb10 838 if (cleanup->target_is_async_orig)
6a3753b3 839 target_async (0);
93d6eb10 840
2e03ee74 841 /* Display our prompt and prevent double prompt display. */
1b05479a 842 display_gdb_prompt (prompt);
2e03ee74
DJ
843 rl_already_prompted = 1;
844
362646f5 845 if (after_char_processing_hook)
2e03ee74
DJ
846 (*after_char_processing_hook) ();
847 gdb_assert (after_char_processing_hook == NULL);
848
e0dd0826 849 while (gdb_do_one_event () >= 0)
2e03ee74
DJ
850 if (gdb_readline_wrapper_done)
851 break;
b4f5539f 852
2e03ee74
DJ
853 retval = gdb_readline_wrapper_result;
854 do_cleanups (back_to);
855 return retval;
b4f5539f
TT
856}
857
9e0b60a8 858\f
467d8519
TT
859/* The current saved history number from operate-and-get-next.
860 This is -1 if not valid. */
861static int operate_saved_history = -1;
862
863/* This is put on the appropriate hook and helps operate-and-get-next
864 do its work. */
b9362cc7 865static void
5ae5f592 866gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
867{
868 int delta = where_history () - operate_saved_history;
5d502164 869
467d8519
TT
870 /* The `key' argument to rl_get_previous_history is ignored. */
871 rl_get_previous_history (delta, 0);
872 operate_saved_history = -1;
873
874 /* readline doesn't automatically update the display for us. */
12f4afab 875 rl_redisplay ();
467d8519
TT
876
877 after_char_processing_hook = NULL;
878 rl_pre_input_hook = NULL;
879}
880
881/* This is a gdb-local readline command handler. It accepts the
882 current command line (like RET does) and, if this command was taken
883 from the history, arranges for the next command in the history to
884 appear on the command line when the prompt returns.
885 We ignore the arguments. */
886static int
887gdb_rl_operate_and_get_next (int count, int key)
888{
b5686e99
MK
889 int where;
890
362646f5
AC
891 /* Use the async hook. */
892 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 893
b5686e99
MK
894 /* Find the current line, and find the next line to use. */
895 where = where_history();
896
1fb2e2b5
PA
897 if ((history_is_stifled () && (history_length >= history_max_entries))
898 || (where >= history_length - 1))
b5686e99
MK
899 operate_saved_history = where;
900 else
901 operate_saved_history = where + 1;
902
467d8519
TT
903 return rl_newline (1, key);
904}
08b13bdd
PP
905
906/* Number of user commands executed during this session. */
907
908static int command_count = 0;
909
910/* Add the user command COMMAND to the input history list. */
911
912void
913gdb_add_history (const char *command)
914{
08b13bdd 915 command_count++;
fc637f04
PP
916
917 if (history_remove_duplicates != 0)
918 {
919 int lookbehind;
920 int lookbehind_threshold;
921
922 /* The lookbehind threshold for finding a duplicate history entry is
923 bounded by command_count because we can't meaningfully delete
924 history entries that are already stored in the history file since
925 the history file is appended to. */
926 if (history_remove_duplicates == -1
927 || history_remove_duplicates > command_count)
928 lookbehind_threshold = command_count;
929 else
930 lookbehind_threshold = history_remove_duplicates;
931
932 using_history ();
933 for (lookbehind = 0; lookbehind < lookbehind_threshold; lookbehind++)
934 {
935 HIST_ENTRY *temp = previous_history ();
936
937 if (temp == NULL)
938 break;
939
940 if (strcmp (temp->line, command) == 0)
941 {
942 HIST_ENTRY *prev = remove_history (where_history ());
943 command_count--;
944 free_history_entry (prev);
945 break;
946 }
947 }
948 using_history ();
949 }
950
951 add_history (command);
08b13bdd
PP
952}
953
954/* Safely append new history entries to the history file in a corruption-free
955 way using an intermediate local history file. */
956
957static void
958gdb_safe_append_history (void)
959{
960 int ret, saved_errno;
961 char *local_history_filename;
962 struct cleanup *old_chain;
963
964 local_history_filename
965 = xstrprintf ("%s-gdb%d~", history_filename, getpid ());
966 old_chain = make_cleanup (xfree, local_history_filename);
967
968 ret = rename (history_filename, local_history_filename);
969 saved_errno = errno;
970 if (ret < 0 && saved_errno != ENOENT)
971 {
972 warning (_("Could not rename %s to %s: %s"),
973 history_filename, local_history_filename,
974 safe_strerror (saved_errno));
975 }
976 else
977 {
978 if (ret < 0)
979 {
980 /* If the rename failed with ENOENT then either the global history
981 file never existed in the first place or another GDB process is
982 currently appending to it (and has thus temporarily renamed it).
983 Since we can't distinguish between these two cases, we have to
984 conservatively assume the first case and therefore must write out
985 (not append) our known history to our local history file and try
986 to move it back anyway. Otherwise a global history file would
987 never get created! */
988 gdb_assert (saved_errno == ENOENT);
989 write_history (local_history_filename);
990 }
991 else
992 {
993 append_history (command_count, local_history_filename);
2093d2d3
PP
994 if (history_is_stifled ())
995 history_truncate_file (local_history_filename, history_max_entries);
08b13bdd
PP
996 }
997
998 ret = rename (local_history_filename, history_filename);
999 saved_errno = errno;
1000 if (ret < 0 && saved_errno != EEXIST)
1001 warning (_("Could not rename %s to %s: %s"),
1002 local_history_filename, history_filename,
1003 safe_strerror (saved_errno));
1004 }
1005
1006 do_cleanups (old_chain);
1007}
1008
d318976c
FN
1009/* Read one line from the command input stream `instream'
1010 into the local static buffer `linebuffer' (whose current length
1011 is `linelength').
1012 The buffer is made bigger as necessary.
1013 Returns the address of the start of the line.
9e0b60a8 1014
d318976c 1015 NULL is returned for end of file.
9e0b60a8 1016
d318976c
FN
1017 *If* the instream == stdin & stdin is a terminal, the line read
1018 is copied into the file line saver (global var char *line,
1019 length linesize) so that it can be duplicated.
9e0b60a8 1020
d318976c
FN
1021 This routine either uses fancy command line editing or
1022 simple input as the user has requested. */
10689f25 1023
d318976c 1024char *
38bcc89d 1025command_line_input (const char *prompt_arg, int repeat, char *annotation_suffix)
9e0b60a8 1026{
d318976c
FN
1027 static char *linebuffer = 0;
1028 static unsigned linelength = 0;
38bcc89d 1029 const char *prompt = prompt_arg;
52f0bd74 1030 char *p;
d318976c
FN
1031 char *p1;
1032 char *rl;
d318976c
FN
1033 char *nline;
1034 char got_eof = 0;
1035
1036 /* The annotation suffix must be non-NULL. */
1037 if (annotation_suffix == NULL)
1038 annotation_suffix = "";
9e0b60a8 1039
d318976c
FN
1040 if (annotation_level > 1 && instream == stdin)
1041 {
38bcc89d
SM
1042 char *local_prompt;
1043
1044 local_prompt = alloca ((prompt == NULL ? 0 : strlen (prompt))
d318976c 1045 + strlen (annotation_suffix) + 40);
38bcc89d 1046 if (prompt == NULL)
d318976c
FN
1047 local_prompt[0] = '\0';
1048 else
38bcc89d 1049 strcpy (local_prompt, prompt);
d318976c
FN
1050 strcat (local_prompt, "\n\032\032");
1051 strcat (local_prompt, annotation_suffix);
1052 strcat (local_prompt, "\n");
38bcc89d
SM
1053
1054 prompt = local_prompt;
d318976c 1055 }
9e0b60a8 1056
d318976c 1057 if (linebuffer == 0)
9e0b60a8 1058 {
d318976c
FN
1059 linelength = 80;
1060 linebuffer = (char *) xmalloc (linelength);
9e0b60a8 1061 }
9e0b60a8 1062
d318976c 1063 p = linebuffer;
9e0b60a8 1064
d318976c
FN
1065 /* Control-C quits instantly if typed while in this loop
1066 since it should not wait until the user types a newline. */
1067 immediate_quit++;
522002f9 1068 QUIT;
d318976c
FN
1069#ifdef STOP_SIGNAL
1070 if (job_control)
362646f5 1071 signal (STOP_SIGNAL, handle_stop_sig);
d318976c
FN
1072#endif
1073
1074 while (1)
9e0b60a8 1075 {
371d5dec
MS
1076 /* Make sure that all output has been output. Some machines may
1077 let you get away with leaving out some of the gdb_flush, but
1078 not all. */
d318976c
FN
1079 wrap_here ("");
1080 gdb_flush (gdb_stdout);
1081 gdb_flush (gdb_stderr);
1082
1083 if (source_file_name != NULL)
637537d0 1084 ++source_line_number;
d318976c
FN
1085
1086 if (annotation_level > 1 && instream == stdin)
1087 {
306d9ac5
DC
1088 puts_unfiltered ("\n\032\032pre-");
1089 puts_unfiltered (annotation_suffix);
1090 puts_unfiltered ("\n");
d318976c
FN
1091 }
1092
1093 /* Don't use fancy stuff if not talking to stdin. */
698ba934 1094 if (deprecated_readline_hook && input_from_terminal_p ())
d318976c 1095 {
38bcc89d 1096 rl = (*deprecated_readline_hook) (prompt);
d318976c 1097 }
698ba934 1098 else if (command_editing_p && input_from_terminal_p ())
d318976c 1099 {
38bcc89d 1100 rl = gdb_readline_wrapper (prompt);
d318976c 1101 }
9e0b60a8 1102 else
d318976c 1103 {
38bcc89d 1104 rl = gdb_readline (prompt);
d318976c 1105 }
9e0b60a8 1106
d318976c
FN
1107 if (annotation_level > 1 && instream == stdin)
1108 {
306d9ac5
DC
1109 puts_unfiltered ("\n\032\032post-");
1110 puts_unfiltered (annotation_suffix);
1111 puts_unfiltered ("\n");
d318976c 1112 }
9e0b60a8 1113
d318976c 1114 if (!rl || rl == (char *) EOF)
9e0b60a8 1115 {
d318976c
FN
1116 got_eof = 1;
1117 break;
9e0b60a8 1118 }
d318976c
FN
1119 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1120 {
1121 linelength = strlen (rl) + 1 + (p - linebuffer);
1122 nline = (char *) xrealloc (linebuffer, linelength);
1123 p += nline - linebuffer;
1124 linebuffer = nline;
1125 }
1126 p1 = rl;
1127 /* Copy line. Don't copy null at end. (Leaves line alone
371d5dec 1128 if this was just a newline). */
d318976c
FN
1129 while (*p1)
1130 *p++ = *p1++;
9e0b60a8 1131
b8c9b27d 1132 xfree (rl); /* Allocated in readline. */
9e0b60a8 1133
d318976c
FN
1134 if (p == linebuffer || *(p - 1) != '\\')
1135 break;
9e0b60a8 1136
d318976c 1137 p--; /* Put on top of '\'. */
38bcc89d 1138 prompt = NULL;
d318976c 1139 }
9e0b60a8 1140
d318976c
FN
1141#ifdef STOP_SIGNAL
1142 if (job_control)
1143 signal (STOP_SIGNAL, SIG_DFL);
1144#endif
1145 immediate_quit--;
9e0b60a8 1146
d318976c
FN
1147 if (got_eof)
1148 return NULL;
9e0b60a8 1149
d318976c
FN
1150#define SERVER_COMMAND_LENGTH 7
1151 server_command =
1152 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 1153 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
d318976c 1154 if (server_command)
9e0b60a8 1155 {
d318976c
FN
1156 /* Note that we don't set `line'. Between this and the check in
1157 dont_repeat, this insures that repeating will still do the
1158 right thing. */
1159 *p = '\0';
1160 return linebuffer + SERVER_COMMAND_LENGTH;
9e0b60a8 1161 }
9e0b60a8 1162
d318976c
FN
1163 /* Do history expansion if that is wished. */
1164 if (history_expansion_p && instream == stdin
1165 && ISATTY (instream))
1166 {
1167 char *history_value;
1168 int expanded;
9e0b60a8 1169
d318976c
FN
1170 *p = '\0'; /* Insert null now. */
1171 expanded = history_expand (linebuffer, &history_value);
1172 if (expanded)
1173 {
1174 /* Print the changes. */
1175 printf_unfiltered ("%s\n", history_value);
9e0b60a8 1176
d318976c
FN
1177 /* If there was an error, call this function again. */
1178 if (expanded < 0)
1179 {
b8c9b27d 1180 xfree (history_value);
38bcc89d 1181 return command_line_input (prompt, repeat,
3e43a32a 1182 annotation_suffix);
d318976c
FN
1183 }
1184 if (strlen (history_value) > linelength)
1185 {
1186 linelength = strlen (history_value) + 1;
1187 linebuffer = (char *) xrealloc (linebuffer, linelength);
1188 }
1189 strcpy (linebuffer, history_value);
1190 p = linebuffer + strlen (linebuffer);
d318976c 1191 }
91d2803c 1192 xfree (history_value);
d318976c 1193 }
9e0b60a8 1194
371d5dec
MS
1195 /* If we just got an empty line, and that is supposed to repeat the
1196 previous command, return the value in the global buffer. */
d318976c 1197 if (repeat && p == linebuffer)
dc7eb48e 1198 return saved_command_line;
d318976c
FN
1199 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1200 if (repeat && !*p1)
dc7eb48e 1201 return saved_command_line;
9e0b60a8 1202
d318976c 1203 *p = 0;
9e0b60a8 1204
d318976c 1205 /* Add line to history if appropriate. */
840da61a 1206 if (*linebuffer && input_from_terminal_p ())
08b13bdd 1207 gdb_add_history (linebuffer);
9e0b60a8 1208
d318976c
FN
1209 /* Save into global buffer if appropriate. */
1210 if (repeat)
1211 {
dc7eb48e 1212 if (linelength > saved_command_line_size)
d318976c 1213 {
dc7eb48e
PA
1214 saved_command_line = xrealloc (saved_command_line, linelength);
1215 saved_command_line_size = linelength;
d318976c 1216 }
dc7eb48e
PA
1217 strcpy (saved_command_line, linebuffer);
1218 return saved_command_line;
d318976c 1219 }
9e0b60a8 1220
d318976c 1221 return linebuffer;
9e0b60a8
JM
1222}
1223\f
371d5dec 1224/* Print the GDB banner. */
9e0b60a8 1225void
fba45db2 1226print_gdb_version (struct ui_file *stream)
9e0b60a8
JM
1227{
1228 /* From GNU coding standards, first line is meant to be easy for a
1229 program to parse, and is just canonical program name and version
371d5dec 1230 number, which starts after last space. */
9e0b60a8 1231
c16158bc 1232 fprintf_filtered (stream, "GNU gdb %s%s\n", PKGVERSION, version);
9e0b60a8 1233
371d5dec 1234 /* Second line is a copyright notice. */
9e0b60a8 1235
3e43a32a 1236 fprintf_filtered (stream,
76f2b779 1237 "Copyright (C) 2015 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1238
1239 /* Following the copyright is a brief statement that the program is
1240 free software, that users are free to copy and change it on
1241 certain conditions, that it is covered by the GNU GPL, and that
371d5dec 1242 there is no warranty. */
9e0b60a8
JM
1243
1244 fprintf_filtered (stream, "\
3e43a32a
MS
1245License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\
1246\nThis is free software: you are free to change and redistribute it.\n\
0b93d57c 1247There is NO WARRANTY, to the extent permitted by law. Type \"show copying\"\n\
b8533aec 1248and \"show warranty\" for details.\n");
9e0b60a8 1249
371d5dec 1250 /* After the required info we print the configuration information. */
9e0b60a8
JM
1251
1252 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1253 if (strcmp (host_name, target_name) != 0)
9e0b60a8 1254 {
3e43a32a
MS
1255 fprintf_filtered (stream, "--host=%s --target=%s",
1256 host_name, target_name);
9e0b60a8
JM
1257 }
1258 else
1259 {
1260 fprintf_filtered (stream, "%s", host_name);
1261 }
6eaaf48b
EZ
1262 fprintf_filtered (stream, "\".\n\
1263Type \"show configuration\" for configuration details.");
c16158bc
JM
1264
1265 if (REPORT_BUGS_TO[0])
1266 {
6eaaf48b 1267 fprintf_filtered (stream,
c16158bc 1268 _("\nFor bug reporting instructions, please see:\n"));
1cf55f60 1269 fprintf_filtered (stream, "%s.\n", REPORT_BUGS_TO);
c16158bc 1270 }
1cf55f60
PM
1271 fprintf_filtered (stream,
1272 _("Find the GDB manual and other documentation \
1273resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"));
1274 fprintf_filtered (stream, _("For help, type \"help\".\n"));
1275 fprintf_filtered (stream, _("Type \"apropos word\" to search for \
af4c453a 1276commands related to \"word\"."));
9e0b60a8 1277}
6eaaf48b
EZ
1278
1279/* Print the details of GDB build-time configuration. */
1280void
1281print_gdb_configuration (struct ui_file *stream)
1282{
1283 fprintf_filtered (stream, _("\
1284This GDB was configured as follows:\n\
1285 configure --host=%s --target=%s\n\
1286"), host_name, target_name);
1287 fprintf_filtered (stream, _("\
1288 --with-auto-load-dir=%s\n\
1289 --with-auto-load-safe-path=%s\n\
1290"), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1291#if HAVE_LIBEXPAT
1292 fprintf_filtered (stream, _("\
1293 --with-expat\n\
1294"));
1295#else
1296 fprintf_filtered (stream, _("\
1297 --without-expat\n\
1298"));
1299#endif
1300 if (GDB_DATADIR[0])
1301 fprintf_filtered (stream, _("\
1302 --with-gdb-datadir=%s%s\n\
1303"), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1304#ifdef ICONV_BIN
1305 fprintf_filtered (stream, _("\
1306 --with-iconv-bin=%s%s\n\
1307"), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1308#endif
1309 if (JIT_READER_DIR[0])
1310 fprintf_filtered (stream, _("\
1311 --with-jit-reader-dir=%s%s\n\
1312"), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1313#if HAVE_LIBUNWIND_IA64_H
1314 fprintf_filtered (stream, _("\
1315 --with-libunwind-ia64\n\
1316"));
1317#else
1318 fprintf_filtered (stream, _("\
1319 --without-libunwind-ia64\n\
1320"));
1321#endif
1322#if HAVE_LIBLZMA
1323 fprintf_filtered (stream, _("\
1324 --with-lzma\n\
1325"));
1326#else
1327 fprintf_filtered (stream, _("\
1328 --without-lzma\n\
1329"));
1330#endif
1331#ifdef WITH_PYTHON_PATH
1332 fprintf_filtered (stream, _("\
1333 --with-python=%s%s\n\
1334"), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
1335#endif
97d66cc6
EZ
1336#if HAVE_GUILE
1337 fprintf_filtered (stream, _("\
1338 --with-guile\n\
1339"));
1340#else
1341 fprintf_filtered (stream, _("\
1342 --without-guile\n\
1343"));
1344#endif
6eaaf48b
EZ
1345#ifdef RELOC_SRCDIR
1346 fprintf_filtered (stream, _("\
1347 --with-relocated-sources=%s\n\
1348"), RELOC_SRCDIR);
1349#endif
1350 if (DEBUGDIR[0])
1351 fprintf_filtered (stream, _("\
1352 --with-separate-debug-dir=%s%s\n\
1353"), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1354 if (TARGET_SYSTEM_ROOT[0])
1355 fprintf_filtered (stream, _("\
1356 --with-sysroot=%s%s\n\
1357"), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1358 if (SYSTEM_GDBINIT[0])
1359 fprintf_filtered (stream, _("\
1360 --with-system-gdbinit=%s%s\n\
1361"), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
ab116149
YQ
1362#if HAVE_LIBBABELTRACE
1363 fprintf_filtered (stream, _("\
1364 --with-babeltrace\n\
1365"));
1366#else
1367 fprintf_filtered (stream, _("\
1368 --without-babeltrace\n\
1369"));
1370#endif
48d1d6f5
EZ
1371 /* We assume "relocatable" will be printed at least once, thus we always
1372 print this text. It's a reasonably safe assumption for now. */
1373 fprintf_filtered (stream, _("\n\
1374(\"Relocatable\" means the directory can be moved with the GDB installation\n\
1375tree, and GDB will still find it.)\n\
1376"));
6eaaf48b 1377}
9e0b60a8 1378\f
95298e72 1379
ab821bc6
PA
1380/* The current top level prompt, settable with "set prompt", and/or
1381 with the python `gdb.prompt_hook' hook. */
1382static char *top_prompt;
9e0b60a8 1383
ab821bc6 1384/* Access method for the GDB prompt string. */
95298e72
PM
1385
1386char *
ab821bc6 1387get_prompt (void)
95298e72 1388{
ab821bc6 1389 return top_prompt;
95298e72
PM
1390}
1391
ab821bc6 1392/* Set method for the GDB prompt string. */
95298e72
PM
1393
1394void
ab821bc6 1395set_prompt (const char *s)
95298e72 1396{
ab821bc6 1397 char *p = xstrdup (s);
95298e72 1398
ab821bc6
PA
1399 xfree (top_prompt);
1400 top_prompt = p;
9e0b60a8 1401}
9e0b60a8 1402\f
c5aa993b 1403
b0abbc58 1404struct qt_args
9e0b60a8 1405{
b0abbc58
JJ
1406 char *args;
1407 int from_tty;
1408};
9e0b60a8 1409
54a012c9
PA
1410/* Callback for iterate_over_inferiors. Kills or detaches the given
1411 inferior, depending on how we originally gained control of it. */
1412
1413static int
1414kill_or_detach (struct inferior *inf, void *args)
1415{
1416 struct qt_args *qt = args;
1417 struct thread_info *thread;
1418
6c95b8df
PA
1419 if (inf->pid == 0)
1420 return 0;
1421
b8fa0bfa
PA
1422 thread = any_thread_of_process (inf->pid);
1423 if (thread != NULL)
9e0b60a8 1424 {
54a012c9 1425 switch_to_thread (thread->ptid);
c35b1492
PA
1426
1427 /* Leave core files alone. */
1428 if (target_has_execution)
1429 {
1430 if (inf->attach_flag)
1431 target_detach (qt->args, qt->from_tty);
1432 else
1433 target_kill ();
1434 }
9e0b60a8
JM
1435 }
1436
54a012c9
PA
1437 return 0;
1438}
1439
b8fa0bfa
PA
1440/* Callback for iterate_over_inferiors. Prints info about what GDB
1441 will do to each inferior on a "quit". ARG points to a struct
1442 ui_out where output is to be collected. */
1443
1444static int
1445print_inferior_quit_action (struct inferior *inf, void *arg)
1446{
1447 struct ui_file *stb = arg;
1448
6c95b8df
PA
1449 if (inf->pid == 0)
1450 return 0;
1451
b8fa0bfa
PA
1452 if (inf->attach_flag)
1453 fprintf_filtered (stb,
1454 _("\tInferior %d [%s] will be detached.\n"), inf->num,
1455 target_pid_to_str (pid_to_ptid (inf->pid)));
1456 else
1457 fprintf_filtered (stb,
1458 _("\tInferior %d [%s] will be killed.\n"), inf->num,
1459 target_pid_to_str (pid_to_ptid (inf->pid)));
1460
1461 return 0;
1462}
1463
1464/* If necessary, make the user confirm that we should quit. Return
1465 non-zero if we should quit, zero if we shouldn't. */
1466
1467int
1468quit_confirm (void)
1469{
1470 struct ui_file *stb;
1471 struct cleanup *old_chain;
1472 char *str;
1473 int qr;
1474
1475 /* Don't even ask if we're only debugging a core file inferior. */
1476 if (!have_live_inferiors ())
1477 return 1;
1478
1479 /* Build the query string as a single string. */
1480 stb = mem_fileopen ();
1481 old_chain = make_cleanup_ui_file_delete (stb);
1482
5a5d8ead
AB
1483 fprintf_filtered (stb, _("A debugging session is active.\n\n"));
1484 iterate_over_inferiors (print_inferior_quit_action, stb);
1485 fprintf_filtered (stb, _("\nQuit anyway? "));
b8fa0bfa
PA
1486
1487 str = ui_file_xstrdup (stb, NULL);
1488 make_cleanup (xfree, str);
1489
1490 qr = query ("%s", str);
1491 do_cleanups (old_chain);
1492 return qr;
1493}
1494
18206ca3
PP
1495/* Prepare to exit GDB cleanly by undoing any changes made to the
1496 terminal so that we leave the terminal in the state we acquired it. */
1497
1498static void
1499undo_terminal_modifications_before_exit (void)
1500{
1501 target_terminal_ours ();
1502#if defined(TUI)
1503 tui_disable ();
1504#endif
1505 if (async_command_editing_p)
1506 gdb_disable_readline ();
1507}
1508
1509
b0abbc58
JJ
1510/* Quit without asking for confirmation. */
1511
1512void
1513quit_force (char *args, int from_tty)
1514{
1515 int exit_code = 0;
365c70b1 1516 struct qt_args qt;
b0abbc58 1517
18206ca3
PP
1518 undo_terminal_modifications_before_exit ();
1519
b0abbc58 1520 /* An optional expression may be used to cause gdb to terminate with the
371d5dec 1521 value of that expression. */
b0abbc58
JJ
1522 if (args)
1523 {
1524 struct value *val = parse_and_eval (args);
1525
1526 exit_code = (int) value_as_long (val);
1527 }
4b0ad762
AS
1528 else if (return_child_result)
1529 exit_code = return_child_result_value;
b0abbc58 1530
365c70b1
JJ
1531 qt.args = args;
1532 qt.from_tty = from_tty;
1533
b0abbc58 1534 /* We want to handle any quit errors and exit regardless. */
2f9d54cf
PA
1535
1536 /* Get out of tfind mode, and kill or detach all inferiors. */
492d29ea 1537 TRY
2f9d54cf
PA
1538 {
1539 disconnect_tracing ();
1540 iterate_over_inferiors (kill_or_detach, &qt);
1541 }
492d29ea
PA
1542 CATCH (ex, RETURN_MASK_ALL)
1543 {
1544 exception_print (gdb_stderr, ex);
1545 }
1546 END_CATCH
2f9d54cf
PA
1547
1548 /* Give all pushed targets a chance to do minimal cleanup, and pop
1549 them all out. */
492d29ea 1550 TRY
2f9d54cf
PA
1551 {
1552 pop_all_targets ();
1553 }
492d29ea
PA
1554 CATCH (ex, RETURN_MASK_ALL)
1555 {
1556 exception_print (gdb_stderr, ex);
1557 }
1558 END_CATCH
2f9d54cf
PA
1559
1560 /* Save the history information if it is appropriate to do so. */
492d29ea 1561 TRY
2f9d54cf 1562 {
35ab155d
MB
1563 if (write_history_p && history_filename
1564 && input_from_terminal_p ())
08b13bdd 1565 gdb_safe_append_history ();
2f9d54cf 1566 }
492d29ea
PA
1567 CATCH (ex, RETURN_MASK_ALL)
1568 {
1569 exception_print (gdb_stderr, ex);
1570 }
1571 END_CATCH
2f9d54cf
PA
1572
1573 /* Do any final cleanups before exiting. */
492d29ea 1574 TRY
2f9d54cf
PA
1575 {
1576 do_final_cleanups (all_cleanups ());
1577 }
492d29ea
PA
1578 CATCH (ex, RETURN_MASK_ALL)
1579 {
1580 exception_print (gdb_stderr, ex);
1581 }
1582 END_CATCH
b0abbc58 1583
9e0b60a8
JM
1584 exit (exit_code);
1585}
1586
698ba934
DJ
1587/* Returns whether GDB is running on a terminal and input is
1588 currently coming from that terminal. */
9e0b60a8
JM
1589
1590int
fba45db2 1591input_from_terminal_p (void)
9e0b60a8 1592{
c63a1f86
JK
1593 if (batch_flag)
1594 return 0;
1595
698ba934
DJ
1596 if (gdb_has_a_terminal () && instream == stdin)
1597 return 1;
1598
1599 /* If INSTREAM is unset, and we are not in a user command, we
1600 must be in Insight. That's like having a terminal, for our
1601 purposes. */
1602 if (instream == NULL && !in_user_command)
1603 return 1;
1604
1605 return 0;
9e0b60a8
JM
1606}
1607\f
9e0b60a8 1608static void
fba45db2 1609dont_repeat_command (char *ignored, int from_tty)
9e0b60a8 1610{
dc7eb48e
PA
1611 /* Can't call dont_repeat here because we're not necessarily reading
1612 from stdin. */
1613 *saved_command_line = 0;
9e0b60a8
JM
1614}
1615\f
1616/* Functions to manipulate command line editing control variables. */
1617
1618/* Number of commands to print in each call to show_commands. */
1619#define Hist_print 10
d318976c 1620void
fba45db2 1621show_commands (char *args, int from_tty)
9e0b60a8
JM
1622{
1623 /* Index for history commands. Relative to history_base. */
1624 int offset;
1625
1626 /* Number of the history entry which we are planning to display next.
1627 Relative to history_base. */
1628 static int num = 0;
1629
9e0b60a8 1630 /* Print out some of the commands from the command history. */
9e0b60a8
JM
1631
1632 if (args)
1633 {
1634 if (args[0] == '+' && args[1] == '\0')
1635 /* "info editing +" should print from the stored position. */
1636 ;
1637 else
1638 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1639 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1640 }
1641 /* "show commands" means print the last Hist_print commands. */
1642 else
1643 {
840a9a1f 1644 num = history_length - Hist_print;
9e0b60a8
JM
1645 }
1646
1647 if (num < 0)
1648 num = 0;
1649
1650 /* If there are at least Hist_print commands, we want to display the last
1651 Hist_print rather than, say, the last 6. */
840a9a1f 1652 if (history_length - num < Hist_print)
9e0b60a8 1653 {
840a9a1f 1654 num = history_length - Hist_print;
9e0b60a8
JM
1655 if (num < 0)
1656 num = 0;
1657 }
1658
840a9a1f
PA
1659 for (offset = num;
1660 offset < num + Hist_print && offset < history_length;
1661 offset++)
9e0b60a8
JM
1662 {
1663 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1664 (history_get (history_base + offset))->line);
9e0b60a8
JM
1665 }
1666
1667 /* The next command we want to display is the next one that we haven't
1668 displayed yet. */
1669 num += Hist_print;
1670
1671 /* If the user repeats this command with return, it should do what
1672 "show commands +" does. This is unnecessary if arg is null,
1673 because "show commands +" is not useful after "show commands". */
1674 if (from_tty && args)
1675 {
1676 args[0] = '+';
1677 args[1] = '\0';
1678 }
1679}
1680
ebfd00d2 1681/* Update the size of our command history file to HISTORY_SIZE.
840a9a1f 1682
ebfd00d2 1683 A HISTORY_SIZE of -1 stands for unlimited. */
840a9a1f 1684
ebfd00d2
PP
1685static void
1686set_readline_history_size (int history_size)
1687{
1688 gdb_assert (history_size >= -1);
840a9a1f 1689
ebfd00d2 1690 if (history_size == -1)
840a9a1f 1691 unstifle_history ();
883b9c6c 1692 else
ebfd00d2
PP
1693 stifle_history (history_size);
1694}
1695
1696/* Called by do_setshow_command. */
1697static void
1698set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1699{
1700 set_readline_history_size (history_size_setshow_var);
9e0b60a8
JM
1701}
1702
d318976c 1703void
fba45db2 1704set_history (char *args, int from_tty)
9e0b60a8 1705{
3e43a32a
MS
1706 printf_unfiltered (_("\"set history\" must be followed "
1707 "by the name of a history subcommand.\n"));
635c7e8a 1708 help_list (sethistlist, "set history ", all_commands, gdb_stdout);
9e0b60a8
JM
1709}
1710
d318976c 1711void
fba45db2 1712show_history (char *args, int from_tty)
9e0b60a8
JM
1713{
1714 cmd_show_list (showhistlist, from_tty, "");
1715}
1716
371d5dec 1717int info_verbose = 0; /* Default verbose msgs off. */
9e0b60a8
JM
1718
1719/* Called by do_setshow_command. An elaborate joke. */
d318976c 1720void
fba45db2 1721set_verbose (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8 1722{
6f937416 1723 const char *cmdname = "verbose";
9e0b60a8
JM
1724 struct cmd_list_element *showcmd;
1725
1726 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1427fe5e 1727 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
9e0b60a8
JM
1728
1729 if (info_verbose)
1730 {
1731 c->doc = "Set verbose printing of informational messages.";
1732 showcmd->doc = "Show verbose printing of informational messages.";
1733 }
1734 else
1735 {
1736 c->doc = "Set verbosity.";
1737 showcmd->doc = "Show verbosity.";
1738 }
1739}
1740
9e0b60a8 1741/* Init the history buffer. Note that we are called after the init file(s)
371d5dec
MS
1742 have been read so that the user can change the history file via his
1743 .gdbinit file (for instance). The GDBHISTFILE environment variable
1744 overrides all of this. */
9e0b60a8
JM
1745
1746void
fba45db2 1747init_history (void)
9e0b60a8
JM
1748{
1749 char *tmpenv;
1750
b58c513b 1751 tmpenv = getenv ("GDBHISTSIZE");
9e0b60a8 1752 if (tmpenv)
840a9a1f 1753 {
bc460514 1754 long var;
0fc26caf 1755 int saved_errno;
bc460514
PP
1756 char *endptr;
1757
1758 tmpenv = skip_spaces (tmpenv);
0fc26caf 1759 errno = 0;
bc460514 1760 var = strtol (tmpenv, &endptr, 10);
0fc26caf 1761 saved_errno = errno;
bc460514
PP
1762 endptr = skip_spaces (endptr);
1763
1764 /* If GDBHISTSIZE is non-numeric then ignore it. If GDBHISTSIZE is the
1765 empty string, a negative number or a huge positive number (larger than
1766 INT_MAX) then set the history size to unlimited. Otherwise set our
1767 history size to the number we have read. This behavior is consistent
1768 with how bash handles HISTSIZE. */
1769 if (*endptr != '\0')
1770 ;
1771 else if (*tmpenv == '\0'
1772 || var < 0
0fc26caf
PP
1773 || var > INT_MAX
1774 /* On targets where INT_MAX == LONG_MAX, we have to look at
1775 errno after calling strtol to distinguish between a value that
1776 is exactly INT_MAX and an overflowing value that was clamped
1777 to INT_MAX. */
1778 || (var == INT_MAX && saved_errno == ERANGE))
bc460514
PP
1779 history_size_setshow_var = -1;
1780 else
1781 history_size_setshow_var = var;
840a9a1f 1782 }
bc460514
PP
1783
1784 /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
1785 default. */
1786 if (history_size_setshow_var == -2)
840a9a1f 1787 history_size_setshow_var = 256;
9e0b60a8 1788
ebfd00d2 1789 set_readline_history_size (history_size_setshow_var);
9e0b60a8
JM
1790
1791 tmpenv = getenv ("GDBHISTFILE");
1792 if (tmpenv)
1b36a34b 1793 history_filename = xstrdup (tmpenv);
c5aa993b
JM
1794 else if (!history_filename)
1795 {
1796 /* We include the current directory so that if the user changes
1797 directories the file written will be the same as the one
1798 that was read. */
a0b3c4fd 1799#ifdef __MSDOS__
eb2f494a 1800 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1801 history_filename = concat (current_directory, "/_gdb_history",
1802 (char *)NULL);
a0b3c4fd 1803#else
1754f103
MK
1804 history_filename = concat (current_directory, "/.gdb_history",
1805 (char *)NULL);
a0b3c4fd 1806#endif
c5aa993b 1807 }
9e0b60a8
JM
1808 read_history (history_filename);
1809}
1810
920d2a44 1811static void
ab821bc6
PA
1812show_prompt (struct ui_file *file, int from_tty,
1813 struct cmd_list_element *c, const char *value)
920d2a44
AC
1814{
1815 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1816}
1817
1818static void
1819show_async_command_editing_p (struct ui_file *file, int from_tty,
1820 struct cmd_list_element *c, const char *value)
1821{
3e43a32a
MS
1822 fprintf_filtered (file, _("Editing of command lines as "
1823 "they are typed is %s.\n"),
920d2a44
AC
1824 value);
1825}
1826
1827static void
1828show_annotation_level (struct ui_file *file, int from_tty,
1829 struct cmd_list_element *c, const char *value)
1830{
1831 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1832}
1833
1834static void
1835show_exec_done_display_p (struct ui_file *file, int from_tty,
1836 struct cmd_list_element *c, const char *value)
1837{
3e43a32a
MS
1838 fprintf_filtered (file, _("Notification of completion for "
1839 "asynchronous execution commands is %s.\n"),
920d2a44
AC
1840 value);
1841}
6dea1fbd 1842
8d551b02
DE
1843/* New values of the "data-directory" parameter are staged here. */
1844static char *staged_gdb_datadir;
1845
6dea1fbd
JK
1846/* "set" command for the gdb_datadir configuration variable. */
1847
1848static void
1849set_gdb_datadir (char *args, int from_tty, struct cmd_list_element *c)
1850{
8d551b02 1851 set_gdb_data_directory (staged_gdb_datadir);
6dea1fbd
JK
1852 observer_notify_gdb_datadir_changed ();
1853}
1854
8d551b02
DE
1855/* "show" command for the gdb_datadir configuration variable. */
1856
1857static void
1858show_gdb_datadir (struct ui_file *file, int from_tty,
1859 struct cmd_list_element *c, const char *value)
1860{
1861 fprintf_filtered (file, _("GDB's data directory is \"%s\".\n"),
1862 gdb_datadir);
1863}
1864
97c85fc6
MB
1865static void
1866set_history_filename (char *args, int from_tty, struct cmd_list_element *c)
1867{
1868 /* We include the current directory so that if the user changes
1869 directories the file written will be the same as the one
1870 that was read. */
1871 if (!IS_ABSOLUTE_PATH (history_filename))
1872 history_filename = reconcat (history_filename, current_directory, "/",
1873 history_filename, (char *) NULL);
1874}
1875
9e0b60a8 1876static void
fba45db2 1877init_main (void)
9e0b60a8 1878{
ab821bc6
PA
1879 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
1880 the DEFAULT_PROMPT is. */
1881 set_prompt (DEFAULT_PROMPT);
1882
362646f5
AC
1883 /* Set things up for annotation_level > 1, if the user ever decides
1884 to use it. */
1885 async_annotation_suffix = "prompt";
362646f5 1886
9e0b60a8
JM
1887 /* Set the important stuff up for command editing. */
1888 command_editing_p = 1;
9e0b60a8 1889 history_expansion_p = 0;
452a569e 1890 write_history_p = 0;
9e0b60a8
JM
1891
1892 /* Setup important stuff for command line editing. */
67c296a2 1893 rl_completion_word_break_hook = gdb_completion_word_break_characters;
38017ce8 1894 rl_completion_entry_function = readline_line_completion_function;
51065942 1895 rl_completer_word_break_characters = default_word_break_characters ();
d318976c 1896 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
82083d6d 1897 rl_completion_display_matches_hook = cli_display_match_list;
9e0b60a8 1898 rl_readline_name = "gdb";
7cb3ec5e 1899 rl_terminal_name = getenv ("TERM");
9e0b60a8 1900
467d8519
TT
1901 /* The name for this defun comes from Bash, where it originated.
1902 15 is Control-o, the same binding this function has in Bash. */
1903 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1904
4d28ad1e 1905 add_setshow_string_cmd ("prompt", class_support,
ab821bc6 1906 &top_prompt,
3e43a32a
MS
1907 _("Set gdb's prompt"),
1908 _("Show gdb's prompt"),
ab821bc6
PA
1909 NULL, NULL,
1910 show_prompt,
4d28ad1e 1911 &setlist, &showlist);
9e0b60a8 1912
1bedd215 1913 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
3e43a32a
MS
1914Don't repeat this command.\nPrimarily \
1915used inside of user-defined commands that should not be repeated when\n\
1bedd215 1916hitting return."));
9e0b60a8 1917
5bf193a2
AC
1918 add_setshow_boolean_cmd ("editing", class_support,
1919 &async_command_editing_p, _("\
1920Set editing of command lines as they are typed."), _("\
1921Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
1922Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1923Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2
AC
1924EMACS-like or VI-like commands like control-P or ESC."),
1925 set_async_editing_command,
920d2a44 1926 show_async_command_editing_p,
5bf193a2
AC
1927 &setlist, &showlist);
1928
1929 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1930Set saving of the history record on exit."), _("\
1931Show saving of the history record on exit."), _("\
9e0b60a8 1932Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
1933Without an argument, saving is enabled."),
1934 NULL,
920d2a44 1935 show_write_history_p,
5bf193a2 1936 &sethistlist, &showhistlist);
9e0b60a8 1937
ebfd00d2
PP
1938 add_setshow_zuinteger_unlimited_cmd ("size", no_class,
1939 &history_size_setshow_var, _("\
4d28ad1e
AC
1940Set the size of the command history,"), _("\
1941Show the size of the command history,"), _("\
f81d1120
PA
1942ie. the number of previous commands to keep a record of.\n\
1943If set to \"unlimited\", the number of commands kept in the history\n\
1944list is unlimited. This defaults to the value of the environment\n\
b58c513b 1945variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
883b9c6c
YQ
1946 set_history_size_command,
1947 show_history_size,
1948 &sethistlist, &showhistlist);
4d28ad1e 1949
fc637f04
PP
1950 add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
1951 &history_remove_duplicates, _("\
1952Set how far back in history to look for and remove duplicate entries."), _("\
1953Show how far back in history to look for and remove duplicate entries."), _("\
1954If set to a nonzero value N, GDB will look back at the last N history entries\n\
1955and remove the first history entry that is a duplicate of the most recent\n\
1956entry, each time a new history entry is added.\n\
1957If set to \"unlimited\", this lookbehind is unbounded.\n\
1958Only history entries added during this session are considered for removal.\n\
1959If set to 0, removal of duplicate history entries is disabled.\n\
1960By default this option is set to 0."),
1961 NULL,
1962 show_history_remove_duplicates,
1963 &sethistlist, &showhistlist);
1964
4d28ad1e
AC
1965 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1966Set the filename in which to record the command history"), _("\
1967Show the filename in which to record the command history"), _("\
1968(the list of previous commands of which a record is kept)."),
97c85fc6 1969 set_history_filename,
920d2a44 1970 show_history_filename,
4d28ad1e 1971 &sethistlist, &showhistlist);
9e0b60a8 1972
e360902b 1973 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
5bf193a2
AC
1974Set whether to confirm potentially dangerous operations."), _("\
1975Show whether to confirm potentially dangerous operations."), NULL,
1976 NULL,
e360902b 1977 show_confirm,
5bf193a2 1978 &setlist, &showlist);
9e0b60a8 1979
85c07804
AC
1980 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1981Set annotation_level."), _("\
1982Show annotation_level."), _("\
9e0b60a8 19830 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804 19842 == output annotated suitably for use by programs that control GDB."),
ab821bc6 1985 NULL,
920d2a44 1986 show_annotation_level,
85c07804 1987 &setlist, &showlist);
362646f5 1988
5bf193a2
AC
1989 add_setshow_boolean_cmd ("exec-done-display", class_support,
1990 &exec_done_display_p, _("\
1991Set notification of completion for asynchronous execution commands."), _("\
1992Show notification of completion for asynchronous execution commands."), _("\
1993Use \"on\" to enable the notification, and \"off\" to disable it."),
1994 NULL,
920d2a44 1995 show_exec_done_display_p,
5bf193a2 1996 &setlist, &showlist);
b14b1491
TT
1997
1998 add_setshow_filename_cmd ("data-directory", class_maintenance,
8d551b02 1999 &staged_gdb_datadir, _("Set GDB's data directory."),
b14b1491
TT
2000 _("Show GDB's data directory."),
2001 _("\
2002When set, GDB uses the specified path to search for data files."),
8d551b02 2003 set_gdb_datadir, show_gdb_datadir,
b14b1491
TT
2004 &setlist,
2005 &showlist);
9e0b60a8 2006}
64cdedad
EZ
2007
2008void
2009gdb_init (char *argv0)
2010{
2011 if (pre_init_ui_hook)
2012 pre_init_ui_hook ();
2013
371d5dec 2014 /* Run the init function of each source file. */
64cdedad 2015
64cdedad
EZ
2016#ifdef __MSDOS__
2017 /* Make sure we return to the original directory upon exit, come
2018 what may, since the OS doesn't do that for us. */
2019 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2020#endif
2021
371d5dec
MS
2022 init_cmd_lists (); /* This needs to be done first. */
2023 initialize_targets (); /* Setup target_terminal macros for utils.c. */
2024 initialize_utils (); /* Make errors and warnings possible. */
9dea9163 2025
24b73f8e
PP
2026 init_page_info ();
2027
9dea9163 2028 /* Here is where we call all the _initialize_foo routines. */
64cdedad 2029 initialize_all_files ();
9dea9163 2030
6c95b8df
PA
2031 /* This creates the current_program_space. Do this after all the
2032 _initialize_foo routines have had a chance to install their
2033 per-sspace data keys. Also do this before
2034 initialize_current_architecture is called, because it accesses
2035 exec_bfd of the current program space. */
2036 initialize_progspace ();
2037 initialize_inferiors ();
64cdedad
EZ
2038 initialize_current_architecture ();
2039 init_cli_cmds();
371d5dec 2040 init_main (); /* But that omits this file! Do it now. */
64cdedad 2041
0ea3f30e
DJ
2042 initialize_stdin_serial ();
2043
6a06d660
PP
2044 /* Take a snapshot of our tty state before readline/ncurses have had a chance
2045 to alter it. */
2046 set_initial_gdb_ttystate ();
2047
362646f5 2048 async_init_signals ();
64cdedad 2049
371d5dec
MS
2050 /* We need a default language for parsing expressions, so simple
2051 things like "set width 0" won't fail if no language is explicitly
2052 set in a config file or implicitly set by reading an executable
2053 during startup. */
64cdedad 2054 set_language (language_c);
371d5dec 2055 expected_language = current_language; /* Don't warn about the change. */
64cdedad 2056
6dddc817 2057 /* Python initialization, for example, can require various commands to be
371d5dec
MS
2058 installed. For example "info pretty-printer" needs the "info"
2059 prefix to be installed. Keep things simple and just do final
6dddc817
DE
2060 script initialization here. */
2061 finish_ext_lang_initialization ();
64cdedad 2062}
This page took 2.501398 seconds and 4 git commands to generate.