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