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