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