Introduce interpreter factories
[deliverable/binutils-gdb.git] / gdb / top.h
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
637537d0 2
618f726f 3 Copyright (C) 1986-2016 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 19
17732724
AC
20#ifndef TOP_H
21#define TOP_H
22
a74e1786
PA
23#include "buffer.h"
24#include "event-loop.h"
25
cb814510
PA
26struct tl_interp_info;
27
a74e1786
PA
28/* All about a user interface instance. Each user interface has its
29 own I/O files/streams, readline state, its own top level
30 interpreter (for the main UI, this is the interpreter specified
31 with -i on the command line) and secondary interpreters (for
32 interpreter-exec ...), etc. There's always one UI associated with
33 stdin/stdout/stderr, but the user can create secondary UIs, for
34 example, to create a separate MI channel on its own stdio
35 streams. */
36
37struct ui
38{
39 /* The UI's command line buffer. This is to used to accumulate
40 input until we have a whole command line. */
41 struct buffer line_buffer;
42
43 /* The callback used by the event loop whenever an event is detected
44 on the UI's input file descriptor. This function incrementally
45 builds a buffer where it accumulates the line read up to the
46 point of invocation. In the special case in which the character
47 read is newline, the function invokes the INPUT_HANDLER callback
48 (see below). */
49 void (*call_readline) (gdb_client_data);
50
51 /* The function to invoke when a complete line of input is ready for
52 processing. */
53 void (*input_handler) (char *);
79aa2fe8 54
cb814510
PA
55 /* Each UI has its own independent set of interpreters. */
56 struct ui_interp_info *interp_info;
57
58 /* True if the UI is in async mode, false if in sync mode. If in
59 sync mode, a synchronous execution command (e.g, "next") does not
60 return until the command is finished. If in async mode, then
61 running a synchronous command returns right after resuming the
62 target. Waiting for the command's completion is later done on
63 the top event loop. For the main UI, this starts out disabled,
64 until all the explicit command line arguments (e.g., `gdb -ex
65 "start" -ex "next"') are processed. */
66 int async;
67
79aa2fe8
PA
68 /* The fields below that start with "m_" are "private". They're
69 meant to be accessed through wrapper macros that make them look
70 like globals. */
71
72 /* The ui_file streams. */
73 /* Normal results */
74 struct ui_file *m_gdb_stdout;
75 /* Input stream */
76 struct ui_file *m_gdb_stdin;
77 /* Serious error notifications */
78 struct ui_file *m_gdb_stderr;
79 /* Log/debug/trace messages that should bypass normal stdout/stderr
80 filtering. For moment, always call this stream using
81 *_unfiltered. In the very near future that restriction shall be
82 removed - either call shall be unfiltered. (cagney 1999-06-13). */
83 struct ui_file *m_gdb_stdlog;
a74e1786
PA
84};
85
86extern struct ui *current_ui;
b69d38af 87
c906108c 88/* From top.c. */
dc7eb48e 89extern char *saved_command_line;
c906108c 90extern FILE *instream;
698ba934 91extern int in_user_command;
e360902b 92extern int confirm;
c906108c
SS
93extern char gdb_dirbuf[1024];
94extern int inhibit_gdbinit;
e655c1a2 95extern const char gdbinit[];
c906108c 96
d9fcf2fb 97extern void print_gdb_version (struct ui_file *);
6eaaf48b 98extern void print_gdb_configuration (struct ui_file *);
c906108c 99
a14ed312
KB
100extern void read_command_file (FILE *);
101extern void init_history (void);
102extern void command_loop (void);
a14ed312
KB
103extern int quit_confirm (void);
104extern void quit_force (char *, int);
105extern void quit_command (char *, int);
b2cd6b29 106extern void quit_cover (void);
a14ed312 107extern void execute_command (char *, int);
c906108c 108
98880d46
PA
109/* If the interpreter is in sync mode (we're running a user command's
110 list, running command hooks or similars), and we just ran a
111 synchronous command that started the target, wait for that command
112 to end. WAS_SYNC indicates whether sync_execution was set before
113 the command was run. */
114
115extern void maybe_wait_sync_command_done (int was_sync);
116
0b333c5e
PA
117/* Wait for a synchronous execution command to end. */
118extern void wait_sync_command_done (void);
119
77cce10f
PA
120extern void check_frame_language_change (void);
121
4e5d721f 122/* Prepare for execution of a command.
028d0ed5
TJB
123 Call this before every command, CLI or MI.
124 Returns a cleanup to be run after the command is completed. */
125extern struct cleanup *prepare_execute_command (void);
4e5d721f 126
c906108c 127/* This function returns a pointer to the string that is used
371d5dec 128 by gdb for its command prompt. */
ab821bc6 129extern char *get_prompt (void);
95298e72
PM
130
131/* This function returns a pointer to the string that is used
ab821bc6
PA
132 by gdb for its command prompt. */
133extern void set_prompt (const char *s);
c906108c 134
948578a9
PP
135/* Return 1 if the current input handler is a secondary prompt, 0 otherwise. */
136
137extern int gdb_in_secondary_prompt_p (void);
138
c906108c 139/* From random places. */
c906108c 140extern int readnow_symbol_files;
392a587b 141
371d5dec 142/* Perform _initialize initialization. */
a14ed312 143extern void gdb_init (char *);
0f71a2f6 144
371d5dec
MS
145/* For use by event-top.c. */
146/* Variables from top.c. */
0f71a2f6 147extern int source_line_number;
05159abe 148extern const char *source_file_name;
0f71a2f6
JM
149extern int history_expansion_p;
150extern int server_command;
6dd77b81 151extern char *lim_at_start;
17732724 152
08b13bdd
PP
153extern void gdb_add_history (const char *);
154
b9362cc7
AC
155extern void show_commands (char *args, int from_tty);
156
157extern void set_history (char *, int);
158
159extern void show_history (char *, int);
160
161extern void set_verbose (char *, int, struct cmd_list_element *);
162
163extern void do_restore_instream_cleanup (void *stream);
164
b69d38af
PA
165extern char *handle_line_of_input (struct buffer *cmd_line_buffer,
166 char *rl, int repeat,
167 char *annotation_suffix);
168
17732724 169#endif
This page took 1.6557 seconds and 4 git commands to generate.