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