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