Add "make pdf" and "make install-pdf", from Brooks Moses
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
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 87char gdbinit[PATH_MAX + 1] = GDBINIT_FILENAME;
c906108c
SS
88
89int 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 94int use_windows = 0;
c906108c 95
c906108c
SS
96extern char lang_frame_mismatch_warn[]; /* language.c */
97
98/* Flag for whether we want all the "from_tty" gubbish printed. */
99
c5aa993b 100int caution = 1; /* Default is yes, sigh. */
920d2a44
AC
101static void
102show_caution (struct ui_file *file, int from_tty,
103 struct cmd_list_element *c, const char *value)
104{
105 fprintf_filtered (file, _("\
106Whether 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
114FILE *instream;
115
698ba934
DJ
116/* Flag to indicate whether a user defined command is currently running. */
117
118int in_user_command;
119
c906108c
SS
120/* Current working directory. */
121
122char *current_directory;
123
124/* The directory name is actually stored here (usually). */
125char 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 131void (*window_hook) (FILE *, char *);
c906108c
SS
132
133int epoch_interface;
134int xgdb_verbose;
135
136/* gdb prints this when reading a command interactively */
c5aa993b 137static 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
142char *line;
143int 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. */
151int 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
158int 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
180int remote_timeout = 2;
c906108c
SS
181
182/* Non-zero tells remote* modules to output debugging info. */
183
184int 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. */
190int target_executing = 0;
191
6dd77b81
RH
192/* Sbrk location on entry to main. Used for statistics only. */
193#ifdef HAVE_SBRK
194char *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 202static 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 214void (*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 220int (*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 225void (*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
230void (*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 234int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
235
236/* Replaces most of warning. */
237
9a4105ab 238void (*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
252void (*deprecated_readline_begin_hook) (char *, ...);
253char *(*deprecated_readline_hook) (char *);
254void (*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
259void (*deprecated_create_breakpoint_hook) (struct breakpoint * bpt);
260void (*deprecated_delete_breakpoint_hook) (struct breakpoint * bpt);
261void (*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
266void (*deprecated_attach_hook) (void);
267void (*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 272void (*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 277void (*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 282void (*deprecated_register_changed_hook) (int regno);
c906108c
SS
283
284/* Tell the GUI someone changed LEN bytes of memory at ADDR */
9a4105ab 285void (*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
290ptid_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
296void (*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 302void (*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 306void (*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 311void (*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 320quit_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 344void
e41a3b1a 345do_restore_instream_cleanup (void *stream)
c906108c
SS
346{
347 /* Restore the previous input stream. */
348 instream = stream;
349}
350
351/* Read commands from STREAM. */
352void
fba45db2 353read_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 363void (*pre_init_ui_hook) (void);
c906108c 364
e41a3b1a
AC
365#ifdef __MSDOS__
366void
367do_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
377void
378execute_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
495void
496command_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. */
568void
569simplified_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
601void
602dont_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. */
621char *
622gdb_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. */
679static 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 687static int write_history_p;
920d2a44
AC
688static void
689show_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 696static int history_size;
920d2a44
AC
697static void
698show_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 705static char *history_filename;
920d2a44
AC
706static void
707show_history_filename (struct ui_file *file, int from_tty,
708 struct cmd_list_element *c, const char *value)
709{
710 fprintf_filtered (file, _("\
711The 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. */
732static int gdb_readline_wrapper_done;
733
734/* The result of the current call to gdb_readline_wrapper, once a newline
735 is seen. */
736static 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. */
744static void (*saved_after_char_processing_hook) (void);
745
746/* This function is called when readline has seen a complete line of
747 text. */
748
749static void
750gdb_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
761struct gdb_readline_wrapper_cleanup
762 {
763 void (*handler_orig) (char *);
764 char *prompt_orig;
765 int already_prompted_orig;
766 };
767
768static void
769gdb_readline_wrapper_cleanup (void *arg)
770{
771 struct gdb_readline_wrapper_cleanup *cleanup = arg;
772
2e03ee74
DJ
773 rl_already_prompted = cleanup->already_prompted_orig;
774 PROMPT (0) = cleanup->prompt_orig;
775
776 gdb_assert (input_handler == gdb_readline_wrapper_line);
777 input_handler = cleanup->handler_orig;
778 gdb_readline_wrapper_result = NULL;
779 gdb_readline_wrapper_done = 0;
780
781 after_char_processing_hook = saved_after_char_processing_hook;
782 saved_after_char_processing_hook = NULL;
783
784 xfree (cleanup);
785}
786
b4f5539f
TT
787char *
788gdb_readline_wrapper (char *prompt)
789{
2e03ee74
DJ
790 struct cleanup *back_to;
791 struct gdb_readline_wrapper_cleanup *cleanup;
792 char *retval;
793
794 cleanup = xmalloc (sizeof (*cleanup));
795 cleanup->handler_orig = input_handler;
796 input_handler = gdb_readline_wrapper_line;
797
798 cleanup->prompt_orig = get_prompt ();
799 PROMPT (0) = prompt;
800 cleanup->already_prompted_orig = rl_already_prompted;
801
802 back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
803
804 /* Display our prompt and prevent double prompt display. */
805 display_gdb_prompt (NULL);
806 rl_already_prompted = 1;
807
362646f5 808 if (after_char_processing_hook)
2e03ee74
DJ
809 (*after_char_processing_hook) ();
810 gdb_assert (after_char_processing_hook == NULL);
811
812 /* gdb_do_one_event argument is unused. */
813 while (gdb_do_one_event (NULL) >= 0)
814 if (gdb_readline_wrapper_done)
815 break;
b4f5539f 816
2e03ee74
DJ
817 retval = gdb_readline_wrapper_result;
818 do_cleanups (back_to);
819 return retval;
b4f5539f
TT
820}
821
9e0b60a8 822\f
d318976c
FN
823#ifdef STOP_SIGNAL
824static void
825stop_sig (int signo)
9e0b60a8 826{
d318976c
FN
827#if STOP_SIGNAL == SIGTSTP
828 signal (SIGTSTP, SIG_DFL);
46711df8
MK
829#if HAVE_SIGPROCMASK
830 {
831 sigset_t zero;
832
833 sigemptyset (&zero);
834 sigprocmask (SIG_SETMASK, &zero, 0);
835 }
836#elif HAVE_SIGSETMASK
d318976c 837 sigsetmask (0);
46711df8 838#endif
d318976c
FN
839 kill (getpid (), SIGTSTP);
840 signal (SIGTSTP, stop_sig);
841#else
842 signal (STOP_SIGNAL, stop_sig);
843#endif
844 printf_unfiltered ("%s", get_prompt ());
845 gdb_flush (gdb_stdout);
9e0b60a8 846
d318976c
FN
847 /* Forget about any previous command -- null line now will do nothing. */
848 dont_repeat ();
9e0b60a8 849}
d318976c 850#endif /* STOP_SIGNAL */
9e0b60a8 851
d318976c 852/* Initialize signal handlers. */
64cdedad
EZ
853static void
854float_handler (int signo)
855{
856 /* This message is based on ANSI C, section 4.7. Note that integer
857 divide by zero causes this, so "float" is a misnomer. */
858 signal (SIGFPE, float_handler);
8a3fe4f8 859 error (_("Erroneous arithmetic operation."));
64cdedad
EZ
860}
861
9e0b60a8 862static void
d318976c 863do_nothing (int signo)
9e0b60a8 864{
d318976c
FN
865 /* Under System V the default disposition of a signal is reinstated after
866 the signal is caught and delivered to an application process. On such
867 systems one must restore the replacement signal handler if one wishes
868 to continue handling the signal in one's program. On BSD systems this
869 is not needed but it is harmless, and it simplifies the code to just do
870 it unconditionally. */
871 signal (signo, do_nothing);
9e0b60a8
JM
872}
873
467d8519
TT
874/* The current saved history number from operate-and-get-next.
875 This is -1 if not valid. */
876static int operate_saved_history = -1;
877
878/* This is put on the appropriate hook and helps operate-and-get-next
879 do its work. */
b9362cc7 880static void
5ae5f592 881gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
882{
883 int delta = where_history () - operate_saved_history;
884 /* The `key' argument to rl_get_previous_history is ignored. */
885 rl_get_previous_history (delta, 0);
886 operate_saved_history = -1;
887
888 /* readline doesn't automatically update the display for us. */
889 rl_redisplay ();
890
891 after_char_processing_hook = NULL;
892 rl_pre_input_hook = NULL;
893}
894
895/* This is a gdb-local readline command handler. It accepts the
896 current command line (like RET does) and, if this command was taken
897 from the history, arranges for the next command in the history to
898 appear on the command line when the prompt returns.
899 We ignore the arguments. */
900static int
901gdb_rl_operate_and_get_next (int count, int key)
902{
b5686e99
MK
903 int where;
904
362646f5
AC
905 /* Use the async hook. */
906 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 907
b5686e99
MK
908 /* Find the current line, and find the next line to use. */
909 where = where_history();
910
911 /* FIXME: kettenis/20020817: max_input_history is renamed into
912 history_max_entries in readline-4.2. When we do a new readline
913 import, we should probably change it here too, even though
914 readline maintains backwards compatibility for now by still
915 defining max_input_history. */
916 if ((history_is_stifled () && (history_length >= max_input_history)) ||
917 (where >= history_length - 1))
918 operate_saved_history = where;
919 else
920 operate_saved_history = where + 1;
921
467d8519
TT
922 return rl_newline (1, key);
923}
924\f
d318976c
FN
925/* Read one line from the command input stream `instream'
926 into the local static buffer `linebuffer' (whose current length
927 is `linelength').
928 The buffer is made bigger as necessary.
929 Returns the address of the start of the line.
9e0b60a8 930
d318976c 931 NULL is returned for end of file.
9e0b60a8 932
d318976c
FN
933 *If* the instream == stdin & stdin is a terminal, the line read
934 is copied into the file line saver (global var char *line,
935 length linesize) so that it can be duplicated.
9e0b60a8 936
d318976c
FN
937 This routine either uses fancy command line editing or
938 simple input as the user has requested. */
10689f25 939
d318976c
FN
940char *
941command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
9e0b60a8 942{
d318976c
FN
943 static char *linebuffer = 0;
944 static unsigned linelength = 0;
52f0bd74 945 char *p;
d318976c
FN
946 char *p1;
947 char *rl;
948 char *local_prompt = prompt_arg;
949 char *nline;
950 char got_eof = 0;
951
952 /* The annotation suffix must be non-NULL. */
953 if (annotation_suffix == NULL)
954 annotation_suffix = "";
9e0b60a8 955
d318976c
FN
956 if (annotation_level > 1 && instream == stdin)
957 {
958 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
959 + strlen (annotation_suffix) + 40);
960 if (prompt_arg == NULL)
961 local_prompt[0] = '\0';
962 else
963 strcpy (local_prompt, prompt_arg);
964 strcat (local_prompt, "\n\032\032");
965 strcat (local_prompt, annotation_suffix);
966 strcat (local_prompt, "\n");
967 }
9e0b60a8 968
d318976c 969 if (linebuffer == 0)
9e0b60a8 970 {
d318976c
FN
971 linelength = 80;
972 linebuffer = (char *) xmalloc (linelength);
9e0b60a8 973 }
9e0b60a8 974
d318976c 975 p = linebuffer;
9e0b60a8 976
d318976c
FN
977 /* Control-C quits instantly if typed while in this loop
978 since it should not wait until the user types a newline. */
979 immediate_quit++;
980#ifdef STOP_SIGNAL
981 if (job_control)
362646f5 982 signal (STOP_SIGNAL, handle_stop_sig);
d318976c
FN
983#endif
984
985 while (1)
9e0b60a8 986 {
d318976c
FN
987 /* Make sure that all output has been output. Some machines may let
988 you get away with leaving out some of the gdb_flush, but not all. */
989 wrap_here ("");
990 gdb_flush (gdb_stdout);
991 gdb_flush (gdb_stderr);
992
993 if (source_file_name != NULL)
637537d0 994 ++source_line_number;
d318976c
FN
995
996 if (annotation_level > 1 && instream == stdin)
997 {
306d9ac5
DC
998 puts_unfiltered ("\n\032\032pre-");
999 puts_unfiltered (annotation_suffix);
1000 puts_unfiltered ("\n");
d318976c
FN
1001 }
1002
1003 /* Don't use fancy stuff if not talking to stdin. */
698ba934 1004 if (deprecated_readline_hook && input_from_terminal_p ())
d318976c 1005 {
9a4105ab 1006 rl = (*deprecated_readline_hook) (local_prompt);
d318976c 1007 }
698ba934 1008 else if (command_editing_p && input_from_terminal_p ())
d318976c 1009 {
b4f5539f 1010 rl = gdb_readline_wrapper (local_prompt);
d318976c 1011 }
9e0b60a8 1012 else
d318976c
FN
1013 {
1014 rl = gdb_readline (local_prompt);
1015 }
9e0b60a8 1016
d318976c
FN
1017 if (annotation_level > 1 && instream == stdin)
1018 {
306d9ac5
DC
1019 puts_unfiltered ("\n\032\032post-");
1020 puts_unfiltered (annotation_suffix);
1021 puts_unfiltered ("\n");
d318976c 1022 }
9e0b60a8 1023
d318976c 1024 if (!rl || rl == (char *) EOF)
9e0b60a8 1025 {
d318976c
FN
1026 got_eof = 1;
1027 break;
9e0b60a8 1028 }
d318976c
FN
1029 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1030 {
1031 linelength = strlen (rl) + 1 + (p - linebuffer);
1032 nline = (char *) xrealloc (linebuffer, linelength);
1033 p += nline - linebuffer;
1034 linebuffer = nline;
1035 }
1036 p1 = rl;
1037 /* Copy line. Don't copy null at end. (Leaves line alone
1038 if this was just a newline) */
1039 while (*p1)
1040 *p++ = *p1++;
9e0b60a8 1041
b8c9b27d 1042 xfree (rl); /* Allocated in readline. */
9e0b60a8 1043
d318976c
FN
1044 if (p == linebuffer || *(p - 1) != '\\')
1045 break;
9e0b60a8 1046
d318976c
FN
1047 p--; /* Put on top of '\'. */
1048 local_prompt = (char *) 0;
1049 }
9e0b60a8 1050
d318976c
FN
1051#ifdef STOP_SIGNAL
1052 if (job_control)
1053 signal (STOP_SIGNAL, SIG_DFL);
1054#endif
1055 immediate_quit--;
9e0b60a8 1056
d318976c
FN
1057 if (got_eof)
1058 return NULL;
9e0b60a8 1059
d318976c
FN
1060#define SERVER_COMMAND_LENGTH 7
1061 server_command =
1062 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 1063 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
d318976c 1064 if (server_command)
9e0b60a8 1065 {
d318976c
FN
1066 /* Note that we don't set `line'. Between this and the check in
1067 dont_repeat, this insures that repeating will still do the
1068 right thing. */
1069 *p = '\0';
1070 return linebuffer + SERVER_COMMAND_LENGTH;
9e0b60a8 1071 }
9e0b60a8 1072
d318976c
FN
1073 /* Do history expansion if that is wished. */
1074 if (history_expansion_p && instream == stdin
1075 && ISATTY (instream))
1076 {
1077 char *history_value;
1078 int expanded;
9e0b60a8 1079
d318976c
FN
1080 *p = '\0'; /* Insert null now. */
1081 expanded = history_expand (linebuffer, &history_value);
1082 if (expanded)
1083 {
1084 /* Print the changes. */
1085 printf_unfiltered ("%s\n", history_value);
9e0b60a8 1086
d318976c
FN
1087 /* If there was an error, call this function again. */
1088 if (expanded < 0)
1089 {
b8c9b27d 1090 xfree (history_value);
d318976c
FN
1091 return command_line_input (prompt_arg, repeat, annotation_suffix);
1092 }
1093 if (strlen (history_value) > linelength)
1094 {
1095 linelength = strlen (history_value) + 1;
1096 linebuffer = (char *) xrealloc (linebuffer, linelength);
1097 }
1098 strcpy (linebuffer, history_value);
1099 p = linebuffer + strlen (linebuffer);
b8c9b27d 1100 xfree (history_value);
d318976c
FN
1101 }
1102 }
9e0b60a8 1103
d318976c
FN
1104 /* If we just got an empty line, and that is supposed
1105 to repeat the previous command, return the value in the
1106 global buffer. */
1107 if (repeat && p == linebuffer)
1108 return line;
1109 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1110 if (repeat && !*p1)
1111 return line;
9e0b60a8 1112
d318976c 1113 *p = 0;
9e0b60a8 1114
d318976c
FN
1115 /* Add line to history if appropriate. */
1116 if (instream == stdin
1117 && ISATTY (stdin) && *linebuffer)
1118 add_history (linebuffer);
9e0b60a8 1119
d318976c
FN
1120 /* Note: lines consisting solely of comments are added to the command
1121 history. This is useful when you type a command, and then
1122 realize you don't want to execute it quite yet. You can comment
1123 out the command and then later fetch it from the value history
1124 and remove the '#'. The kill ring is probably better, but some
1125 people are in the habit of commenting things out. */
1126 if (*p1 == '#')
1127 *p1 = '\0'; /* Found a comment. */
9e0b60a8 1128
d318976c
FN
1129 /* Save into global buffer if appropriate. */
1130 if (repeat)
1131 {
1132 if (linelength > linesize)
1133 {
1134 line = xrealloc (line, linelength);
1135 linesize = linelength;
1136 }
1137 strcpy (line, linebuffer);
1138 return line;
1139 }
9e0b60a8 1140
d318976c 1141 return linebuffer;
9e0b60a8
JM
1142}
1143\f
1144/* Print the GDB banner. */
1145void
fba45db2 1146print_gdb_version (struct ui_file *stream)
9e0b60a8
JM
1147{
1148 /* From GNU coding standards, first line is meant to be easy for a
1149 program to parse, and is just canonical program name and version
1150 number, which starts after last space. */
1151
1152 fprintf_filtered (stream, "GNU gdb %s\n", version);
1153
1154 /* Second line is a copyright notice. */
1155
8c48ebcf 1156 fprintf_filtered (stream, "Copyright (C) 2007 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1157
1158 /* Following the copyright is a brief statement that the program is
1159 free software, that users are free to copy and change it on
1160 certain conditions, that it is covered by the GNU GPL, and that
1161 there is no warranty. */
1162
1163 fprintf_filtered (stream, "\
1164GDB is free software, covered by the GNU General Public License, and you are\n\
1165welcome to change it and/or distribute copies of it under certain conditions.\n\
1166Type \"show copying\" to see the conditions.\n\
1167There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
1168
1169 /* After the required info we print the configuration information. */
1170
1171 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1172 if (strcmp (host_name, target_name) != 0)
9e0b60a8
JM
1173 {
1174 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1175 }
1176 else
1177 {
1178 fprintf_filtered (stream, "%s", host_name);
1179 }
1180 fprintf_filtered (stream, "\".");
1181}
9e0b60a8
JM
1182\f
1183/* get_prompt: access method for the GDB prompt string. */
1184
9e0b60a8 1185char *
fba45db2 1186get_prompt (void)
9e0b60a8 1187{
362646f5 1188 return PROMPT (0);
9e0b60a8
JM
1189}
1190
1191void
fba45db2 1192set_prompt (char *s)
9e0b60a8
JM
1193{
1194/* ??rehrauer: I don't know why this fails, since it looks as though
1195 assignments to prompt are wrapped in calls to savestring...
c5aa993b 1196 if (prompt != NULL)
b8c9b27d 1197 xfree (prompt);
c5aa993b 1198 */
362646f5 1199 PROMPT (0) = savestring (s, strlen (s));
9e0b60a8 1200}
9e0b60a8 1201\f
c5aa993b 1202
9e0b60a8
JM
1203/* If necessary, make the user confirm that we should quit. Return
1204 non-zero if we should quit, zero if we shouldn't. */
1205
1206int
fba45db2 1207quit_confirm (void)
9e0b60a8 1208{
39f77062 1209 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
9e0b60a8
JM
1210 {
1211 char *s;
1212
1213 /* This is something of a hack. But there's no reliable way to
c5aa993b
JM
1214 see if a GUI is running. The `use_windows' variable doesn't
1215 cut it. */
9a4105ab 1216 if (deprecated_init_ui_hook)
9e0b60a8
JM
1217 s = "A debugging session is active.\nDo you still want to close the debugger?";
1218 else if (attach_flag)
1219 s = "The program is running. Quit anyway (and detach it)? ";
1220 else
1221 s = "The program is running. Exit anyway? ";
1222
306d9ac5 1223 if (!query ("%s", s))
9e0b60a8
JM
1224 return 0;
1225 }
1226
1227 return 1;
1228}
1229
b0abbc58 1230/* Helper routine for quit_force that requires error handling. */
9e0b60a8 1231
b0abbc58 1232struct qt_args
9e0b60a8 1233{
b0abbc58
JJ
1234 char *args;
1235 int from_tty;
1236};
9e0b60a8 1237
b0abbc58
JJ
1238static int
1239quit_target (void *arg)
1240{
1241 struct qt_args *qt = (struct qt_args *)arg;
9e0b60a8 1242
39f77062 1243 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
9e0b60a8
JM
1244 {
1245 if (attach_flag)
b0abbc58 1246 target_detach (qt->args, qt->from_tty);
9e0b60a8 1247 else
b0abbc58 1248 target_kill ();
9e0b60a8
JM
1249 }
1250
1251 /* UDI wants this, to kill the TIP. */
f1c07ab0 1252 target_close (&current_target, 1);
9e0b60a8
JM
1253
1254 /* Save the history information if it is appropriate to do so. */
1255 if (write_history_p && history_filename)
1256 write_history (history_filename);
1257
c5aa993b 1258 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
9e0b60a8 1259
b0abbc58
JJ
1260 return 0;
1261}
1262
1263/* Quit without asking for confirmation. */
1264
1265void
1266quit_force (char *args, int from_tty)
1267{
1268 int exit_code = 0;
365c70b1 1269 struct qt_args qt;
b0abbc58
JJ
1270
1271 /* An optional expression may be used to cause gdb to terminate with the
1272 value of that expression. */
1273 if (args)
1274 {
1275 struct value *val = parse_and_eval (args);
1276
1277 exit_code = (int) value_as_long (val);
1278 }
4b0ad762
AS
1279 else if (return_child_result)
1280 exit_code = return_child_result_value;
b0abbc58 1281
365c70b1
JJ
1282 qt.args = args;
1283 qt.from_tty = from_tty;
1284
b0abbc58 1285 /* We want to handle any quit errors and exit regardless. */
365c70b1 1286 catch_errors (quit_target, &qt,
b0abbc58
JJ
1287 "Quitting: ", RETURN_MASK_ALL);
1288
9e0b60a8
JM
1289 exit (exit_code);
1290}
1291
698ba934
DJ
1292/* Returns whether GDB is running on a terminal and input is
1293 currently coming from that terminal. */
9e0b60a8
JM
1294
1295int
fba45db2 1296input_from_terminal_p (void)
9e0b60a8 1297{
698ba934
DJ
1298 if (gdb_has_a_terminal () && instream == stdin)
1299 return 1;
1300
1301 /* If INSTREAM is unset, and we are not in a user command, we
1302 must be in Insight. That's like having a terminal, for our
1303 purposes. */
1304 if (instream == NULL && !in_user_command)
1305 return 1;
1306
1307 return 0;
9e0b60a8
JM
1308}
1309\f
9e0b60a8 1310static void
fba45db2 1311dont_repeat_command (char *ignored, int from_tty)
9e0b60a8 1312{
c5aa993b
JM
1313 *line = 0; /* Can't call dont_repeat here because we're not
1314 necessarily reading from stdin. */
9e0b60a8
JM
1315}
1316\f
1317/* Functions to manipulate command line editing control variables. */
1318
1319/* Number of commands to print in each call to show_commands. */
1320#define Hist_print 10
d318976c 1321void
fba45db2 1322show_commands (char *args, int from_tty)
9e0b60a8
JM
1323{
1324 /* Index for history commands. Relative to history_base. */
1325 int offset;
1326
1327 /* Number of the history entry which we are planning to display next.
1328 Relative to history_base. */
1329 static int num = 0;
1330
1331 /* The first command in the history which doesn't exist (i.e. one more
1332 than the number of the last command). Relative to history_base. */
1333 int hist_len;
1334
9e0b60a8
JM
1335 /* Print out some of the commands from the command history. */
1336 /* First determine the length of the history list. */
1337 hist_len = history_size;
1338 for (offset = 0; offset < history_size; offset++)
1339 {
1340 if (!history_get (history_base + offset))
1341 {
1342 hist_len = offset;
1343 break;
1344 }
1345 }
1346
1347 if (args)
1348 {
1349 if (args[0] == '+' && args[1] == '\0')
1350 /* "info editing +" should print from the stored position. */
1351 ;
1352 else
1353 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1354 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1355 }
1356 /* "show commands" means print the last Hist_print commands. */
1357 else
1358 {
1359 num = hist_len - Hist_print;
1360 }
1361
1362 if (num < 0)
1363 num = 0;
1364
1365 /* If there are at least Hist_print commands, we want to display the last
1366 Hist_print rather than, say, the last 6. */
1367 if (hist_len - num < Hist_print)
1368 {
1369 num = hist_len - Hist_print;
1370 if (num < 0)
1371 num = 0;
1372 }
1373
1374 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1375 {
1376 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1377 (history_get (history_base + offset))->line);
9e0b60a8
JM
1378 }
1379
1380 /* The next command we want to display is the next one that we haven't
1381 displayed yet. */
1382 num += Hist_print;
1383
1384 /* If the user repeats this command with return, it should do what
1385 "show commands +" does. This is unnecessary if arg is null,
1386 because "show commands +" is not useful after "show commands". */
1387 if (from_tty && args)
1388 {
1389 args[0] = '+';
1390 args[1] = '\0';
1391 }
1392}
1393
1394/* Called by do_setshow_command. */
9e0b60a8 1395static void
fba45db2 1396set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1397{
1398 if (history_size == INT_MAX)
1399 unstifle_history ();
1400 else if (history_size >= 0)
1401 stifle_history (history_size);
1402 else
1403 {
1404 history_size = INT_MAX;
8a3fe4f8 1405 error (_("History size must be non-negative"));
9e0b60a8
JM
1406 }
1407}
1408
d318976c 1409void
fba45db2 1410set_history (char *args, int from_tty)
9e0b60a8 1411{
a3f17187 1412 printf_unfiltered (_("\"set history\" must be followed by the name of a history subcommand.\n"));
9e0b60a8
JM
1413 help_list (sethistlist, "set history ", -1, gdb_stdout);
1414}
1415
d318976c 1416void
fba45db2 1417show_history (char *args, int from_tty)
9e0b60a8
JM
1418{
1419 cmd_show_list (showhistlist, from_tty, "");
1420}
1421
1422int info_verbose = 0; /* Default verbose msgs off */
1423
1424/* Called by do_setshow_command. An elaborate joke. */
d318976c 1425void
fba45db2 1426set_verbose (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1427{
1428 char *cmdname = "verbose";
1429 struct cmd_list_element *showcmd;
1430
1431 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1432
1433 if (info_verbose)
1434 {
1435 c->doc = "Set verbose printing of informational messages.";
1436 showcmd->doc = "Show verbose printing of informational messages.";
1437 }
1438 else
1439 {
1440 c->doc = "Set verbosity.";
1441 showcmd->doc = "Show verbosity.";
1442 }
1443}
1444
9e0b60a8
JM
1445/* Init the history buffer. Note that we are called after the init file(s)
1446 * have been read so that the user can change the history file via his
1447 * .gdbinit file (for instance). The GDBHISTFILE environment variable
1448 * overrides all of this.
1449 */
1450
1451void
fba45db2 1452init_history (void)
9e0b60a8
JM
1453{
1454 char *tmpenv;
1455
1456 tmpenv = getenv ("HISTSIZE");
1457 if (tmpenv)
1458 history_size = atoi (tmpenv);
1459 else if (!history_size)
1460 history_size = 256;
1461
1462 stifle_history (history_size);
1463
1464 tmpenv = getenv ("GDBHISTFILE");
1465 if (tmpenv)
c5aa993b
JM
1466 history_filename = savestring (tmpenv, strlen (tmpenv));
1467 else if (!history_filename)
1468 {
1469 /* We include the current directory so that if the user changes
1470 directories the file written will be the same as the one
1471 that was read. */
a0b3c4fd 1472#ifdef __MSDOS__
eb2f494a 1473 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1474 history_filename = concat (current_directory, "/_gdb_history",
1475 (char *)NULL);
a0b3c4fd 1476#else
1754f103
MK
1477 history_filename = concat (current_directory, "/.gdb_history",
1478 (char *)NULL);
a0b3c4fd 1479#endif
c5aa993b 1480 }
9e0b60a8
JM
1481 read_history (history_filename);
1482}
1483
920d2a44
AC
1484static void
1485show_new_async_prompt (struct ui_file *file, int from_tty,
1486 struct cmd_list_element *c, const char *value)
1487{
1488 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1489}
1490
1491static void
1492show_async_command_editing_p (struct ui_file *file, int from_tty,
1493 struct cmd_list_element *c, const char *value)
1494{
1495 fprintf_filtered (file, _("\
1496Editing of command lines as they are typed is %s.\n"),
1497 value);
1498}
1499
1500static void
1501show_annotation_level (struct ui_file *file, int from_tty,
1502 struct cmd_list_element *c, const char *value)
1503{
1504 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1505}
1506
1507static void
1508show_exec_done_display_p (struct ui_file *file, int from_tty,
1509 struct cmd_list_element *c, const char *value)
1510{
1511 fprintf_filtered (file, _("\
1512Notification of completion for asynchronous execution commands is %s.\n"),
1513 value);
1514}
9e0b60a8 1515static void
fba45db2 1516init_main (void)
9e0b60a8
JM
1517{
1518 struct cmd_list_element *c;
1519
362646f5
AC
1520 /* initialize the prompt stack to a simple "(gdb) " prompt or to
1521 whatever the DEFAULT_PROMPT is. */
1522 the_prompts.top = 0;
1523 PREFIX (0) = "";
1524 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1525 SUFFIX (0) = "";
1526 /* Set things up for annotation_level > 1, if the user ever decides
1527 to use it. */
1528 async_annotation_suffix = "prompt";
1529 /* Set the variable associated with the setshow prompt command. */
1530 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1531
1532 /* If gdb was started with --annotate=2, this is equivalent to the
1533 user entering the command 'set annotate 2' at the gdb prompt, so
1534 we need to do extra processing. */
1535 if (annotation_level > 1)
1536 set_async_annotation_level (NULL, 0, NULL);
9e0b60a8
JM
1537
1538 /* Set the important stuff up for command editing. */
1539 command_editing_p = 1;
9e0b60a8
JM
1540 history_expansion_p = 0;
1541 write_history_p = 0;
1542
1543 /* Setup important stuff for command line editing. */
38017ce8 1544 rl_completion_entry_function = readline_line_completion_function;
51065942 1545 rl_completer_word_break_characters = default_word_break_characters ();
d318976c 1546 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
9e0b60a8 1547 rl_readline_name = "gdb";
7cb3ec5e 1548 rl_terminal_name = getenv ("TERM");
9e0b60a8 1549
467d8519
TT
1550 /* The name for this defun comes from Bash, where it originated.
1551 15 is Control-o, the same binding this function has in Bash. */
1552 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1553
4d28ad1e
AC
1554 add_setshow_string_cmd ("prompt", class_support,
1555 &new_async_prompt, _("\
1556Set gdb's prompt"), _("\
1557Show gdb's prompt"), NULL,
1558 set_async_prompt,
920d2a44 1559 show_new_async_prompt,
4d28ad1e 1560 &setlist, &showlist);
9e0b60a8 1561
1bedd215
AC
1562 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1563Don't repeat this command.\n\
9e0b60a8 1564Primarily used inside of user-defined commands that should not be repeated when\n\
1bedd215 1565hitting return."));
9e0b60a8 1566
5bf193a2
AC
1567 add_setshow_boolean_cmd ("editing", class_support,
1568 &async_command_editing_p, _("\
1569Set editing of command lines as they are typed."), _("\
1570Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
1571Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1572Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2
AC
1573EMACS-like or VI-like commands like control-P or ESC."),
1574 set_async_editing_command,
920d2a44 1575 show_async_command_editing_p,
5bf193a2
AC
1576 &setlist, &showlist);
1577
1578 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1579Set saving of the history record on exit."), _("\
1580Show saving of the history record on exit."), _("\
9e0b60a8 1581Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
1582Without an argument, saving is enabled."),
1583 NULL,
920d2a44 1584 show_write_history_p,
5bf193a2 1585 &sethistlist, &showhistlist);
9e0b60a8 1586
4d28ad1e
AC
1587 add_setshow_integer_cmd ("size", no_class, &history_size, _("\
1588Set the size of the command history,"), _("\
1589Show the size of the command history,"), _("\
1590ie. the number of previous commands to keep a record of."),
1591 set_history_size_command,
920d2a44 1592 show_history_size,
4d28ad1e
AC
1593 &sethistlist, &showhistlist);
1594
1595 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1596Set the filename in which to record the command history"), _("\
1597Show the filename in which to record the command history"), _("\
1598(the list of previous commands of which a record is kept)."),
1599 NULL,
920d2a44 1600 show_history_filename,
4d28ad1e 1601 &sethistlist, &showhistlist);
9e0b60a8 1602
5bf193a2
AC
1603 add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
1604Set whether to confirm potentially dangerous operations."), _("\
1605Show whether to confirm potentially dangerous operations."), NULL,
1606 NULL,
920d2a44 1607 show_caution,
5bf193a2 1608 &setlist, &showlist);
9e0b60a8 1609
85c07804
AC
1610 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1611Set annotation_level."), _("\
1612Show annotation_level."), _("\
9e0b60a8 16130 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804
AC
16142 == output annotated suitably for use by programs that control GDB."),
1615 set_async_annotation_level,
920d2a44 1616 show_annotation_level,
85c07804 1617 &setlist, &showlist);
362646f5 1618
5bf193a2
AC
1619 add_setshow_boolean_cmd ("exec-done-display", class_support,
1620 &exec_done_display_p, _("\
1621Set notification of completion for asynchronous execution commands."), _("\
1622Show notification of completion for asynchronous execution commands."), _("\
1623Use \"on\" to enable the notification, and \"off\" to disable it."),
1624 NULL,
920d2a44 1625 show_exec_done_display_p,
5bf193a2 1626 &setlist, &showlist);
9e0b60a8 1627}
64cdedad
EZ
1628
1629void
1630gdb_init (char *argv0)
1631{
1632 if (pre_init_ui_hook)
1633 pre_init_ui_hook ();
1634
1635 /* Run the init function of each source file */
1636
1637 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1638 current_directory = gdb_dirbuf;
1639
1640#ifdef __MSDOS__
1641 /* Make sure we return to the original directory upon exit, come
1642 what may, since the OS doesn't do that for us. */
1643 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1644#endif
1645
1646 init_cmd_lists (); /* This needs to be done first */
1647 initialize_targets (); /* Setup target_terminal macros for utils.c */
1648 initialize_utils (); /* Make errors and warnings possible */
1649 initialize_all_files ();
1650 initialize_current_architecture ();
1651 init_cli_cmds();
1652 init_main (); /* But that omits this file! Do it now */
1653
0ea3f30e
DJ
1654 initialize_stdin_serial ();
1655
362646f5 1656 async_init_signals ();
64cdedad
EZ
1657
1658 /* We need a default language for parsing expressions, so simple things like
1659 "set width 0" won't fail if no language is explicitly set in a config file
1660 or implicitly set by reading an executable during startup. */
1661 set_language (language_c);
1662 expected_language = current_language; /* don't warn about the change. */
1663
9a4105ab
AC
1664 /* Allow another UI to initialize. If the UI fails to initialize,
1665 and it wants GDB to revert to the CLI, it should clear
1666 deprecated_init_ui_hook. */
1667 if (deprecated_init_ui_hook)
1668 deprecated_init_ui_hook (argv0);
64cdedad 1669}
This page took 1.407331 seconds and 4 git commands to generate.