2003-02-12 16:31:30 +01:00
|
|
|
/* Definitions used by event-top.c, for GDB, the GNU debugger.
|
|
|
|
|
|
|
|
Copyright 1999, 2001, 2003 Free Software Foundation, Inc.
|
|
|
|
|
1999-09-22 05:28:34 +02:00
|
|
|
Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
2003-02-12 16:31:30 +01:00
|
|
|
#ifndef EVENT_TOP_H
|
|
|
|
#define EVENT_TOP_H
|
|
|
|
|
2003-04-12 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh: Add missing opaque declarations.
* gdbarch.h: Regnerate.
* symtab.h: Add missing opaque declarations.
* value.h, target.h, symfile.h, stabsread.h: Ditto.
* x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
* srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
* ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
* ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
* buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
* i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
* dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
* cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
* ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
* config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
* config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
* cli/cli-setshow.h, cli/cli-script.h: Ditto.
2003-04-12 19:41:26 +02:00
|
|
|
struct cmd_list_element;
|
|
|
|
|
2001-04-20 16:25:59 +02:00
|
|
|
/* Stack for prompts. Each prompt is composed as a prefix, a prompt
|
|
|
|
and a suffix. The prompt to be displayed at any given time is the
|
1999-09-22 05:28:34 +02:00
|
|
|
one on top of the stack. A stack is necessary because of cases in
|
|
|
|
which the execution of a gdb command requires further input from
|
|
|
|
the user, like for instance 'commands' for breakpoints and
|
2001-04-20 16:25:59 +02:00
|
|
|
'actions' for tracepoints. In these cases, the prompt is '>' and
|
1999-09-22 05:28:34 +02:00
|
|
|
gdb should process input using the asynchronous readline interface
|
|
|
|
and the event loop. In order to achieve this, we need to save
|
|
|
|
somewhere the state of GDB, i.e. that it is processing user input
|
|
|
|
as part of a command and not as part of the top level command loop.
|
2001-04-20 16:25:59 +02:00
|
|
|
The prompt stack represents part of the saved state. Another part
|
1999-09-22 05:28:34 +02:00
|
|
|
would be the function that readline would invoke after a whole line
|
2001-04-20 16:25:59 +02:00
|
|
|
of input has ben entered. This second piece would be something
|
1999-09-22 05:28:34 +02:00
|
|
|
like, for instance, where to return within the code for the actions
|
|
|
|
commands after a line has been read. This latter portion has not
|
|
|
|
beeen implemented yet. The need for a 3-part prompt arises from
|
2001-04-20 16:25:59 +02:00
|
|
|
the annotation level. When this is set to 2, the prompt is
|
|
|
|
actually composed of a prefix, the prompt itself and a suffix. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
/* At any particular time there will be always at least one prompt on
|
2001-04-20 16:25:59 +02:00
|
|
|
the stack, the one being currently displayed by gdb. If gdb is
|
1999-09-22 05:28:34 +02:00
|
|
|
using annotation level equal 2, there will be 2 prompts on the
|
|
|
|
stack: the usual one, w/o prefix and suffix (at top - 1), and the
|
2001-04-20 16:25:59 +02:00
|
|
|
'composite' one with prefix and suffix added (at top). At this
|
|
|
|
time, this is the only use of the prompt stack. Resetting annotate
|
1999-09-22 05:28:34 +02:00
|
|
|
to 0 or 1, pops the top of the stack, resetting its size to one
|
2001-04-20 16:25:59 +02:00
|
|
|
element. The MAXPROMPTS limit is safe, for now. Once other cases
|
1999-09-22 05:28:34 +02:00
|
|
|
are dealt with (like the different prompts used for 'commands' or
|
|
|
|
'actions') this array implementation of the prompt stack may have
|
2001-04-20 16:25:59 +02:00
|
|
|
to change. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
#define MAXPROMPTS 10
|
|
|
|
struct prompts
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char *prefix;
|
|
|
|
char *prompt;
|
|
|
|
char *suffix;
|
|
|
|
}
|
|
|
|
prompt_stack[MAXPROMPTS];
|
|
|
|
int top;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
|
|
|
|
#define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
|
|
|
|
#define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
|
|
|
|
|
|
|
|
/* Exported functions from event-top.c.
|
2001-04-20 16:25:59 +02:00
|
|
|
FIXME: these should really go into top.h. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
extern void display_gdb_prompt (char *new_prompt);
|
2003-02-05 Jim Ingham <jingham@apple.com>
Keith Seitz <keiths@redhat.com>
Elena Zannoni <ezannoni@redhat.com>
Andrew Cagney <ac131313@redhat.com>
* Makefile.in (SUBDIR_CLI_OBS): Add "cli-interp.o".
(SUBDIR_CLI_SRCS): Add "cli/cli-interp.c".
(SUBDIR_MI_OBS): Add "mi-interp.o".
(SUBDIR_MI_SRCS): Add "mi/mi-interp.c".
(SFILES): Add "interps.c".
(COMMON_OBS): Add "interps.o".
(interps_h, mi_main_h): Define.
(interps.o, cli-interp.o, mi-interp.o): Add dependencies.
(mi-main.o, main.o, event-top.o): Update dependencies.
* cli/cli-interp.c: New file.
* interps.h, interps.c: New files.
* top.c: (gdb_init): Don't install the default interpreter, handed
by captured_main.
* main.c: Include "interps.h".
(interpreter_p): Note that it should malloc'ed.
(captured_command_loop): Call current_interp_command_loop.
(captured_main): Initialize interpreter_p to INTERP_CONSOLE. Use
xfree and xstrdup when updating interpreter_p. Install the
default interpreter. Add hack to stop mi1's copyright notice
being encoded.
* event-top.h (gdb_setup_readline): Declare.
(gdb_disable_readline): Declare.
* event-top.c: Include "interps.h".
(display_gdb_prompt): Call current_interp_display_prompt_p.
(gdb_setup_readline): Initialize gdb_stdout, gdb_stderr,
gdb_stdlog, and gdb_stdtarg.
(_initialize_event_loop): Don't call gdb_setup_readline.
* cli-out.c (cli_out_set_stream): New function.
* cli-out.h (cli_out_set_stream): Declare.
2003-02-06 02:19:12 +01:00
|
|
|
void gdb_setup_readline (void);
|
|
|
|
void gdb_disable_readline (void);
|
1999-09-22 05:28:34 +02:00
|
|
|
extern void async_init_signals (void);
|
2001-04-20 16:25:59 +02:00
|
|
|
extern void set_async_editing_command (char *args, int from_tty,
|
|
|
|
struct cmd_list_element *c);
|
|
|
|
extern void set_async_annotation_level (char *args, int from_tty,
|
|
|
|
struct cmd_list_element *c);
|
|
|
|
extern void set_async_prompt (char *args, int from_tty,
|
|
|
|
struct cmd_list_element *c);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
|
|
|
|
#ifndef STOP_SIGNAL
|
2001-02-08 06:06:13 +01:00
|
|
|
#include <signal.h>
|
1999-09-22 05:28:34 +02:00
|
|
|
#ifdef SIGTSTP
|
|
|
|
#define STOP_SIGNAL SIGTSTP
|
|
|
|
extern void handle_stop_sig (int sig);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
extern void handle_sigint (int sig);
|
|
|
|
extern void pop_prompt (void);
|
|
|
|
extern void push_prompt (char *prefix, char *prompt, char *suffix);
|
1999-10-06 01:13:56 +02:00
|
|
|
extern void gdb_readline2 (void *client_data);
|
|
|
|
extern void mark_async_signal_handler_wrapper (void *token);
|
|
|
|
extern void async_request_quit (void *arg);
|
|
|
|
extern void stdin_event_handler (int error, void *client_data);
|
1999-09-28 23:55:21 +02:00
|
|
|
extern void async_disable_stdin (void);
|
|
|
|
extern void async_enable_stdin (void *dummy);
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
/* Exported variables from event-top.c.
|
2001-04-20 16:25:59 +02:00
|
|
|
FIXME: these should really go into top.h. */
|
1999-09-22 05:28:34 +02:00
|
|
|
|
|
|
|
extern int async_command_editing_p;
|
|
|
|
extern int exec_done_display_p;
|
|
|
|
extern char *async_annotation_suffix;
|
|
|
|
extern char *new_async_prompt;
|
|
|
|
extern struct prompts the_prompts;
|
1999-10-06 01:13:56 +02:00
|
|
|
extern void (*call_readline) (void *);
|
1999-09-22 05:28:34 +02:00
|
|
|
extern void (*input_handler) (char *);
|
|
|
|
extern int input_fd;
|
2001-11-27 05:15:09 +01:00
|
|
|
extern void (*after_char_processing_hook) (void);
|
2003-02-12 16:31:30 +01:00
|
|
|
|
|
|
|
extern void cli_command_loop (void);
|
|
|
|
|
|
|
|
#endif
|