Rename deferred code object loading environment variable
[deliverable/binutils-gdb.git] / gdb / ui-file.h
CommitLineData
d9fcf2fb 1/* UI_FILE - a generic STDIO like output stream.
11bc5fe4 2 Copyright (C) 1999-2020 Free Software Foundation, Inc.
d9fcf2fb
JM
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
d9fcf2fb
JM
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d9fcf2fb
JM
18
19#ifndef UI_FILE_H
20#define UI_FILE_H
21
8de00631 22#include <string>
eedeedd2 23#include "ui-style.h"
8de00631 24
d7e74731
PA
25/* The abstract ui_file base class. */
26
27class ui_file
28{
29public:
30 ui_file ();
31 virtual ~ui_file () = 0;
d9fcf2fb 32
d7e74731 33 /* Public non-virtual API. */
d9fcf2fb 34
d7e74731 35 void printf (const char *, ...) ATTRIBUTE_PRINTF (2, 3);
d9fcf2fb 36
d7e74731
PA
37 /* Print a string whose delimiter is QUOTER. Note that these
38 routines should only be called for printing things which are
39 independent of the language of the program being debugged. */
40 void putstr (const char *str, int quoter);
d9fcf2fb 41
d7e74731 42 void putstrn (const char *str, int n, int quoter);
3e43a32a 43
d7e74731 44 int putc (int c);
3e43a32a 45
d7e74731 46 void vprintf (const char *, va_list) ATTRIBUTE_PRINTF (2, 0);
01124a23 47
d7e74731
PA
48 /* Methods below are both public, and overridable by ui_file
49 subclasses. */
3e43a32a 50
d7e74731 51 virtual void write (const char *buf, long length_buf) = 0;
3e43a32a 52
d7e74731
PA
53 /* This version of "write" is safe for use in signal handlers. It's
54 not guaranteed that all existing output will have been flushed
55 first. Implementations are also free to ignore some or all of
56 the request. puts_async is not provided as the async versions
57 are rarely used, no point in having both for a rarely used
58 interface. */
59 virtual void write_async_safe (const char *buf, long length_buf)
60 { gdb_assert_not_reached ("write_async_safe"); }
3e43a32a 61
d7e74731
PA
62 /* Some ui_files override this to provide a efficient implementation
63 that avoids a strlen. */
64 virtual void puts (const char *str)
65 { this->write (str, strlen (str)); }
d9fcf2fb 66
d7e74731
PA
67 virtual long read (char *buf, long length_buf)
68 { gdb_assert_not_reached ("can't read from this file type"); }
d9fcf2fb 69
d7e74731
PA
70 virtual bool isatty ()
71 { return false; }
2a9d5ccf 72
8a522c6c
PW
73 /* true indicates terminal output behaviour such as cli_styling.
74 This default implementation indicates to do terminal output
75 behaviour if the UI_FILE is a tty. A derived class can override
76 TERM_OUT to have cli_styling behaviour without being a tty. */
77 virtual bool term_out ()
78 { return isatty (); }
79
80 /* true if ANSI escapes can be used on STREAM. */
81 virtual bool can_emit_style_escape ()
82 { return false; }
83
d7e74731
PA
84 virtual void flush ()
85 {}
86};
d9fcf2fb 87
d7e74731 88typedef std::unique_ptr<ui_file> ui_file_up;
d9fcf2fb 89
d7e74731 90/* A ui_file that writes to nowhere. */
d9fcf2fb 91
d7e74731
PA
92class null_file : public ui_file
93{
94public:
95 void write (const char *buf, long length_buf) override;
96 void write_async_safe (const char *buf, long sizeof_buf) override;
97 void puts (const char *str) override;
98};
d9fcf2fb 99
d7e74731
PA
100/* A preallocated null_file stream. */
101extern null_file null_stream;
102
ff491e6b 103extern void ui_file_flush (ui_file *);
d9fcf2fb
JM
104
105extern int ui_file_isatty (struct ui_file *);
106
3e43a32a
MS
107extern void ui_file_write (struct ui_file *file, const char *buf,
108 long length_buf);
d9fcf2fb 109
01124a23
DE
110extern void ui_file_write_async_safe (struct ui_file *file, const char *buf,
111 long length_buf);
112
d7e74731
PA
113extern long ui_file_read (struct ui_file *file, char *buf, long length_buf);
114
f49692df
IB
115extern void ui_file_puts (struct ui_file *file, const char *buf);
116
e4adb939
EZ
117extern int gdb_console_fputs (const char *, FILE *);
118
d7e74731
PA
119/* A std::string-based ui_file. Can be used as a scratch buffer for
120 collecting output. */
d9fcf2fb 121
d7e74731
PA
122class string_file : public ui_file
123{
124public:
8a522c6c
PW
125 /* Construct a string_file to collect 'raw' output, i.e. without
126 'terminal' behaviour such as cli_styling. */
127 string_file () : m_term_out (false) {};
128 /* If TERM_OUT, construct a string_file with terminal output behaviour
129 such as cli_styling)
130 else collect 'raw' output like the previous constructor. */
131 explicit string_file (bool term_out) : m_term_out (term_out) {};
d7e74731 132 ~string_file () override;
d9fcf2fb 133
d7e74731 134 /* Override ui_file methods. */
8de00631 135
d7e74731 136 void write (const char *buf, long length_buf) override;
d9fcf2fb 137
d7e74731
PA
138 long read (char *buf, long length_buf) override
139 { gdb_assert_not_reached ("a string_file is not readable"); }
140
8a522c6c
PW
141 bool term_out () override;
142 bool can_emit_style_escape () override;
143
d7e74731
PA
144 /* string_file-specific public API. */
145
146 /* Accesses the std::string containing the entire output collected
147 so far.
148
149 Returns a non-const reference so that it's easy to move the
150 string contents out of the string_file. E.g.:
151
152 string_file buf;
153 buf.printf (....);
154 buf.printf (....);
155 return std::move (buf.string ());
156 */
157 std::string &string () { return m_string; }
158
159 /* Provide a few convenience methods with the same API as the
160 underlying std::string. */
161 const char *data () const { return m_string.data (); }
162 const char *c_str () const { return m_string.c_str (); }
163 size_t size () const { return m_string.size (); }
164 bool empty () const { return m_string.empty (); }
165 void clear () { return m_string.clear (); }
166
167private:
168 /* The internal buffer. */
169 std::string m_string;
8a522c6c
PW
170
171 bool m_term_out;
d7e74731
PA
172};
173
174/* A ui_file implementation that maps directly onto <stdio.h>'s FILE.
175 A stdio_file can either own its underlying file, or not. If it
176 owns the file, then destroying the stdio_file closes the underlying
177 file, otherwise it is left open. */
178
179class stdio_file : public ui_file
180{
181public:
182 /* Create a ui_file from a previously opened FILE. CLOSE_P
183 indicates whether the underlying file should be closed when the
184 stdio_file is destroyed. */
185 explicit stdio_file (FILE *file, bool close_p = false);
186
187 /* Create an stdio_file that is not managing any file yet. Call
188 open to actually open something. */
189 stdio_file ();
190
191 ~stdio_file () override;
192
193 /* Open NAME in mode MODE, and own the resulting file. Returns true
194 on success, false otherwise. If the stdio_file previously owned
195 a file, it is closed. */
196 bool open (const char *name, const char *mode);
197
198 void flush () override;
199
200 void write (const char *buf, long length_buf) override;
201
202 void write_async_safe (const char *buf, long length_buf) override;
203
204 void puts (const char *) override;
205
206 long read (char *buf, long length_buf) override;
207
208 bool isatty () override;
209
8a522c6c
PW
210 bool can_emit_style_escape () override;
211
d7e74731
PA
212private:
213 /* Sets the internal stream to FILE, and saves the FILE's file
214 descriptor in M_FD. */
215 void set_stream (FILE *file);
216
217 /* The file. */
218 FILE *m_file;
219
220 /* The associated file descriptor is extracted ahead of time for
221 stdio_file::write_async_safe's benefit, in case fileno isn't
222 async-safe. */
223 int m_fd;
224
225 /* If true, M_FILE is closed on destruction. */
226 bool m_close_p;
227};
228
229typedef std::unique_ptr<stdio_file> stdio_file_up;
230
231/* Like stdio_file, but specifically for stderr.
232
233 This exists because there is no real line-buffering on Windows, see
234 <http://msdn.microsoft.com/en-us/library/86cebhfs%28v=vs.71%29.aspx>
235 so the stdout is either fully-buffered or non-buffered. We can't
236 make stdout non-buffered, because of two concerns:
449092f6 237
d7e74731
PA
238 1. Non-buffering hurts performance.
239 2. Non-buffering may change GDB's behavior when it is interacting
240 with a front-end, such as Emacs.
2a9d5ccf 241
d7e74731
PA
242 We leave stdout as fully buffered, but flush it first when
243 something is written to stderr.
d9fcf2fb 244
d7e74731
PA
245 Note that the 'write_async_safe' method is not overridden, because
246 there's no way to flush a stream in an async-safe manner.
247 Fortunately, it doesn't really matter, because:
248
249 1. That method is only used for printing internal debug output
250 from signal handlers.
251
252 2. Windows hosts don't have a concept of async-safeness. Signal
253 handlers run in a separate thread, so they can call the regular
254 non-async-safe output routines freely.
255*/
256class stderr_file : public stdio_file
257{
258public:
259 explicit stderr_file (FILE *stream);
260
261 /* Override the output routines to flush gdb_stdout before deferring
262 to stdio_file for the actual outputting. */
263 void write (const char *buf, long length_buf) override;
264 void puts (const char *linebuffer) override;
265};
d9fcf2fb 266
d7e74731 267/* A ui_file implementation that maps onto two ui-file objects. */
d9fcf2fb 268
d7e74731
PA
269class tee_file : public ui_file
270{
271public:
f3a09c80
AH
272 /* Create a file which writes to both ONE and TWO. ONE will remain
273 open when this object is destroyed; but TWO will be closed. */
274 tee_file (ui_file *one, ui_file_up &&two);
d7e74731 275 ~tee_file () override;
d9fcf2fb 276
d7e74731
PA
277 void write (const char *buf, long length_buf) override;
278 void write_async_safe (const char *buf, long length_buf) override;
279 void puts (const char *) override;
ffa4ac95 280
d7e74731 281 bool isatty () override;
8a522c6c
PW
282 bool term_out () override;
283 bool can_emit_style_escape () override;
d7e74731 284 void flush () override;
ffa4ac95 285
d7e74731 286private:
f3a09c80
AH
287 /* The two underlying ui_files. */
288 ui_file *m_one;
289 ui_file_up m_two;
d7e74731 290};
d9fcf2fb 291
0735b091
TT
292/* A ui_file implementation that filters out terminal escape
293 sequences. */
294
295class no_terminal_escape_file : public stdio_file
296{
297public:
298 no_terminal_escape_file ()
299 {
300 }
301
302 /* Like the stdio_file methods, but these filter out terminal escape
303 sequences. */
304 void write (const char *buf, long length_buf) override;
305 void puts (const char *linebuffer) override;
306};
307
d9fcf2fb 308#endif
This page took 2.545162 seconds and 4 git commands to generate.