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