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