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