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