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