Make gdb_stdout&co be per UI
[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
26/* All about a user interface instance. Each user interface has its
27 own I/O files/streams, readline state, its own top level
28 interpreter (for the main UI, this is the interpreter specified
29 with -i on the command line) and secondary interpreters (for
30 interpreter-exec ...), etc. There's always one UI associated with
31 stdin/stdout/stderr, but the user can create secondary UIs, for
32 example, to create a separate MI channel on its own stdio
33 streams. */
34
35struct ui
36{
37 /* The UI's command line buffer. This is to used to accumulate
38 input until we have a whole command line. */
39 struct buffer line_buffer;
40
41 /* The callback used by the event loop whenever an event is detected
42 on the UI's input file descriptor. This function incrementally
43 builds a buffer where it accumulates the line read up to the
44 point of invocation. In the special case in which the character
45 read is newline, the function invokes the INPUT_HANDLER callback
46 (see below). */
47 void (*call_readline) (gdb_client_data);
48
49 /* The function to invoke when a complete line of input is ready for
50 processing. */
51 void (*input_handler) (char *);
79aa2fe8
PA
52
53 /* The fields below that start with "m_" are "private". They're
54 meant to be accessed through wrapper macros that make them look
55 like globals. */
56
57 /* The ui_file streams. */
58 /* Normal results */
59 struct ui_file *m_gdb_stdout;
60 /* Input stream */
61 struct ui_file *m_gdb_stdin;
62 /* Serious error notifications */
63 struct ui_file *m_gdb_stderr;
64 /* Log/debug/trace messages that should bypass normal stdout/stderr
65 filtering. For moment, always call this stream using
66 *_unfiltered. In the very near future that restriction shall be
67 removed - either call shall be unfiltered. (cagney 1999-06-13). */
68 struct ui_file *m_gdb_stdlog;
a74e1786
PA
69};
70
71extern struct ui *current_ui;
b69d38af 72
c906108c 73/* From top.c. */
dc7eb48e 74extern char *saved_command_line;
c906108c 75extern FILE *instream;
698ba934 76extern int in_user_command;
e360902b 77extern int confirm;
c906108c
SS
78extern char gdb_dirbuf[1024];
79extern int inhibit_gdbinit;
e655c1a2 80extern const char gdbinit[];
c906108c 81
d9fcf2fb 82extern void print_gdb_version (struct ui_file *);
6eaaf48b 83extern void print_gdb_configuration (struct ui_file *);
c906108c 84
a14ed312
KB
85extern void read_command_file (FILE *);
86extern void init_history (void);
87extern void command_loop (void);
a14ed312
KB
88extern int quit_confirm (void);
89extern void quit_force (char *, int);
90extern void quit_command (char *, int);
b2cd6b29 91extern void quit_cover (void);
a14ed312 92extern void execute_command (char *, int);
c906108c 93
98880d46
PA
94/* If the interpreter is in sync mode (we're running a user command's
95 list, running command hooks or similars), and we just ran a
96 synchronous command that started the target, wait for that command
97 to end. WAS_SYNC indicates whether sync_execution was set before
98 the command was run. */
99
100extern void maybe_wait_sync_command_done (int was_sync);
101
0b333c5e
PA
102/* Wait for a synchronous execution command to end. */
103extern void wait_sync_command_done (void);
104
77cce10f
PA
105extern void check_frame_language_change (void);
106
4e5d721f 107/* Prepare for execution of a command.
028d0ed5
TJB
108 Call this before every command, CLI or MI.
109 Returns a cleanup to be run after the command is completed. */
110extern struct cleanup *prepare_execute_command (void);
4e5d721f 111
c906108c 112/* This function returns a pointer to the string that is used
371d5dec 113 by gdb for its command prompt. */
ab821bc6 114extern char *get_prompt (void);
95298e72
PM
115
116/* This function returns a pointer to the string that is used
ab821bc6
PA
117 by gdb for its command prompt. */
118extern void set_prompt (const char *s);
c906108c 119
948578a9
PP
120/* Return 1 if the current input handler is a secondary prompt, 0 otherwise. */
121
122extern int gdb_in_secondary_prompt_p (void);
123
c906108c 124/* From random places. */
c906108c 125extern int readnow_symbol_files;
392a587b 126
371d5dec 127/* Perform _initialize initialization. */
a14ed312 128extern void gdb_init (char *);
0f71a2f6 129
371d5dec
MS
130/* For use by event-top.c. */
131/* Variables from top.c. */
0f71a2f6 132extern int source_line_number;
05159abe 133extern const char *source_file_name;
0f71a2f6
JM
134extern int history_expansion_p;
135extern int server_command;
6dd77b81 136extern char *lim_at_start;
17732724 137
08b13bdd
PP
138extern void gdb_add_history (const char *);
139
b9362cc7
AC
140extern void show_commands (char *args, int from_tty);
141
142extern void set_history (char *, int);
143
144extern void show_history (char *, int);
145
146extern void set_verbose (char *, int, struct cmd_list_element *);
147
148extern void do_restore_instream_cleanup (void *stream);
149
b69d38af
PA
150extern char *handle_line_of_input (struct buffer *cmd_line_buffer,
151 char *rl, int repeat,
152 char *annotation_suffix);
153
17732724 154#endif
This page took 1.7423 seconds and 4 git commands to generate.