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