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