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