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