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