]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/top.h
Update and add .gitignore's
[thirdparty/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
3b12939d
PA
28/* Prompt state. */
29
30enum prompt_state
31{
32 /* The command line is blocked simulating synchronous execution.
33 This is used to implement the foreground execution commands
34 ('run', 'continue', etc.). We won't display the prompt and
35 accept further commands until the execution is actually over. */
36 PROMPT_BLOCKED,
37
38 /* The command finished; display the prompt before returning back to
39 the top level. */
40 PROMPT_NEEDED,
41
42 /* We've displayed the prompt already, ready for input. */
43 PROMPTED,
44};
45
a74e1786
PA
46/* All about a user interface instance. Each user interface has its
47 own I/O files/streams, readline state, its own top level
48 interpreter (for the main UI, this is the interpreter specified
49 with -i on the command line) and secondary interpreters (for
50 interpreter-exec ...), etc. There's always one UI associated with
51 stdin/stdout/stderr, but the user can create secondary UIs, for
52 example, to create a separate MI channel on its own stdio
53 streams. */
54
55struct ui
56{
73ab01a0
PA
57 /* Pointer to next in singly-linked list. */
58 struct ui *next;
59
98d9f24e
PA
60 /* Convenient handle (UI number). Unique across all UIs. */
61 int num;
62
a74e1786
PA
63 /* The UI's command line buffer. This is to used to accumulate
64 input until we have a whole command line. */
65 struct buffer line_buffer;
66
67 /* The callback used by the event loop whenever an event is detected
68 on the UI's input file descriptor. This function incrementally
69 builds a buffer where it accumulates the line read up to the
70 point of invocation. In the special case in which the character
71 read is newline, the function invokes the INPUT_HANDLER callback
72 (see below). */
73 void (*call_readline) (gdb_client_data);
74
75 /* The function to invoke when a complete line of input is ready for
76 processing. */
77 void (*input_handler) (char *);
79aa2fe8 78
3c216924
PA
79 /* True if this UI is using the readline library for command
80 editing; false if using GDB's own simple readline emulation, with
81 no editing support. */
82 int command_editing;
83
cb814510
PA
84 /* Each UI has its own independent set of interpreters. */
85 struct ui_interp_info *interp_info;
86
87 /* True if the UI is in async mode, false if in sync mode. If in
88 sync mode, a synchronous execution command (e.g, "next") does not
89 return until the command is finished. If in async mode, then
90 running a synchronous command returns right after resuming the
91 target. Waiting for the command's completion is later done on
92 the top event loop. For the main UI, this starts out disabled,
93 until all the explicit command line arguments (e.g., `gdb -ex
94 "start" -ex "next"') are processed. */
95 int async;
96
dbf30ca3
PA
97 /* The number of nested readline secondary prompts that are
98 currently active. */
99 int secondary_prompt_depth;
100
268a799a
PA
101 /* The UI's stdin. Set to stdin for the main UI. */
102 FILE *stdin_stream;
103
f38d3ad1
PA
104 /* stdio stream that command input is being read from. Set to stdin
105 normally. Set by source_command to the file we are sourcing.
106 Set to NULL if we are executing a user-defined command or
107 interacting via a GUI. */
108 FILE *instream;
694ec099
PA
109 /* Standard output stream. */
110 FILE *outstream;
111 /* Standard error stream. */
112 FILE *errstream;
f38d3ad1 113
41fd2b0f
PA
114 /* The file descriptor for the input stream, so that we can register
115 it with the event loop. */
116 int input_fd;
117
268a799a
PA
118 /* Whether ISATTY returns true on input_fd. Cached here because
119 quit_force needs to know this _after_ input_fd might be
120 closed. */
121 int input_interactive_p;
122
3b12939d
PA
123 /* See enum prompt_state's description. */
124 enum prompt_state prompt_state;
125
79aa2fe8
PA
126 /* The fields below that start with "m_" are "private". They're
127 meant to be accessed through wrapper macros that make them look
128 like globals. */
129
130 /* The ui_file streams. */
131 /* Normal results */
132 struct ui_file *m_gdb_stdout;
133 /* Input stream */
134 struct ui_file *m_gdb_stdin;
135 /* Serious error notifications */
136 struct ui_file *m_gdb_stderr;
137 /* Log/debug/trace messages that should bypass normal stdout/stderr
138 filtering. For moment, always call this stream using
139 *_unfiltered. In the very near future that restriction shall be
140 removed - either call shall be unfiltered. (cagney 1999-06-13). */
141 struct ui_file *m_gdb_stdlog;
b6dcde57
PA
142
143 /* The current ui_out. */
144 struct ui_out *m_current_uiout;
a74e1786
PA
145};
146
7c36c34e
PA
147/* The main UI. This is the UI that is bound to stdin/stdout/stderr.
148 It always exists and is created automatically when GDB starts
149 up. */
150extern struct ui *main_ui;
151
73ab01a0 152/* The current UI. */
a74e1786 153extern struct ui *current_ui;
b69d38af 154
73ab01a0
PA
155/* The list of all UIs. */
156extern struct ui *ui_list;
157
158/* State for SWITCH_THRU_ALL_UIS. Declared here because it is meant
159 to be created on the stack, but should be treated as opaque. */
160struct switch_thru_all_uis
161{
162 struct ui *iter;
163 struct cleanup *old_chain;
164};
165
166/* Functions to drive SWITCH_THRU_ALL_UIS. Though declared here by
167 necessity, these functions should not be used other than via the
168 SWITCH_THRU_ALL_UIS macro defined below. */
169extern void switch_thru_all_uis_init (struct switch_thru_all_uis *state);
170extern int switch_thru_all_uis_cond (struct switch_thru_all_uis *state);
171extern void switch_thru_all_uis_next (struct switch_thru_all_uis *state);
172
173 /* Traverse through all UI, and switch the current UI to the one
174 being iterated. */
175#define SWITCH_THRU_ALL_UIS(STATE) \
176 for (switch_thru_all_uis_init (&STATE); \
177 switch_thru_all_uis_cond (&STATE); \
178 switch_thru_all_uis_next (&STATE))
179
3b12939d
PA
180/* Traverse over all UIs. */
181#define ALL_UIS(UI) \
182 for (UI = ui_list; UI; UI = UI->next) \
183
98d9f24e
PA
184/* Create a new UI. */
185extern struct ui *new_ui (FILE *instream, FILE *outstream, FILE *errstream);
07169ff7 186extern void delete_ui (struct ui *todel);
98d9f24e 187
8194e927
SM
188/* Cleanup that deletes a UI. */
189extern struct cleanup *make_delete_ui_cleanup (struct ui *ui);
190
a025b477
PA
191/* Make a cleanup that restores the current UI. */
192extern struct cleanup *make_cleanup_restore_current_ui (void);
c61db772 193
3eb7562a
PA
194/* Register the UI's input file descriptor in the event loop. */
195extern void ui_register_input_event_handler (struct ui *ui);
196
197/* Unregister the UI's input file descriptor from the event loop. */
198extern void ui_unregister_input_event_handler (struct ui *ui);
199
c906108c 200/* From top.c. */
dc7eb48e 201extern char *saved_command_line;
698ba934 202extern int in_user_command;
e360902b 203extern int confirm;
c906108c
SS
204extern char gdb_dirbuf[1024];
205extern int inhibit_gdbinit;
e655c1a2 206extern const char gdbinit[];
c906108c 207
d9fcf2fb 208extern void print_gdb_version (struct ui_file *);
6eaaf48b 209extern void print_gdb_configuration (struct ui_file *);
c906108c 210
a14ed312
KB
211extern void read_command_file (FILE *);
212extern void init_history (void);
213extern void command_loop (void);
a14ed312
KB
214extern int quit_confirm (void);
215extern void quit_force (char *, int);
216extern void quit_command (char *, int);
b2cd6b29 217extern void quit_cover (void);
a14ed312 218extern void execute_command (char *, int);
c906108c 219
98880d46
PA
220/* If the interpreter is in sync mode (we're running a user command's
221 list, running command hooks or similars), and we just ran a
222 synchronous command that started the target, wait for that command
223 to end. WAS_SYNC indicates whether sync_execution was set before
224 the command was run. */
225
226extern void maybe_wait_sync_command_done (int was_sync);
227
0b333c5e
PA
228/* Wait for a synchronous execution command to end. */
229extern void wait_sync_command_done (void);
230
77cce10f
PA
231extern void check_frame_language_change (void);
232
4e5d721f 233/* Prepare for execution of a command.
028d0ed5
TJB
234 Call this before every command, CLI or MI.
235 Returns a cleanup to be run after the command is completed. */
236extern struct cleanup *prepare_execute_command (void);
4e5d721f 237
c906108c 238/* This function returns a pointer to the string that is used
371d5dec 239 by gdb for its command prompt. */
ab821bc6 240extern char *get_prompt (void);
95298e72
PM
241
242/* This function returns a pointer to the string that is used
ab821bc6
PA
243 by gdb for its command prompt. */
244extern void set_prompt (const char *s);
c906108c 245
dbf30ca3
PA
246/* Return 1 if UI's current input handler is a secondary prompt, 0
247 otherwise. */
948578a9 248
dbf30ca3 249extern int gdb_in_secondary_prompt_p (struct ui *ui);
948578a9 250
c906108c 251/* From random places. */
c906108c 252extern int readnow_symbol_files;
392a587b 253
371d5dec 254/* Perform _initialize initialization. */
a14ed312 255extern void gdb_init (char *);
0f71a2f6 256
371d5dec
MS
257/* For use by event-top.c. */
258/* Variables from top.c. */
0f71a2f6 259extern int source_line_number;
05159abe 260extern const char *source_file_name;
0f71a2f6
JM
261extern int history_expansion_p;
262extern int server_command;
6dd77b81 263extern char *lim_at_start;
17732724 264
08b13bdd
PP
265extern void gdb_add_history (const char *);
266
b9362cc7
AC
267extern void show_commands (char *args, int from_tty);
268
269extern void set_history (char *, int);
270
271extern void show_history (char *, int);
272
273extern void set_verbose (char *, int, struct cmd_list_element *);
274
275extern void do_restore_instream_cleanup (void *stream);
276
b69d38af
PA
277extern char *handle_line_of_input (struct buffer *cmd_line_buffer,
278 char *rl, int repeat,
279 char *annotation_suffix);
280
17732724 281#endif