1 /* UI_FILE - a generic STDIO like output stream.
3 Copyright (C) 1999-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* Implement the ``struct ui_file'' object. */
24 #include "gdbsupport/gdb_obstack.h"
25 #include "gdbsupport/gdb_select.h"
26 #include "gdbsupport/filestuff.h"
28 #include "cli/cli-style.h"
31 null_file null_stream
;
40 ui_file::printf (const char *format
, ...)
44 va_start (args
, format
);
45 vprintf (format
, args
);
50 ui_file::putstr (const char *str
, int quoter
)
53 printchar (*str
++, quoter
, false);
57 ui_file::putstrn (const char *str
, int n
, int quoter
, bool async_safe
)
59 for (int i
= 0; i
< n
; i
++)
60 printchar (str
[i
], quoter
, async_safe
);
71 ui_file::vprintf (const char *format
, va_list args
)
73 ui_out_flags flags
= disallow_ui_out_field
;
74 cli_ui_out (this, flags
).vmessage (m_applied_style
, format
, args
);
80 ui_file::emit_style_escape (const ui_file_style
&style
)
82 if (can_emit_style_escape () && style
!= m_applied_style
)
84 m_applied_style
= style
;
85 this->puts (style
.to_ansi ().c_str ());
92 ui_file::reset_style ()
94 if (can_emit_style_escape ())
96 m_applied_style
= ui_file_style ();
97 this->puts (m_applied_style
.to_ansi ().c_str ());
104 ui_file::printchar (int c
, int quoter
, bool async_safe
)
109 c
&= 0xFF; /* Avoid sign bit follies */
111 if (c
< 0x20 /* Low control chars */
112 || (c
>= 0x7F && c
< 0xA0) /* DEL, High controls */
113 || (sevenbit_strings
&& c
>= 0x80))
114 { /* high order bit set */
142 buf
[out
++] = '0' + ((c
>> 6) & 0x7);
143 buf
[out
++] = '0' + ((c
>> 3) & 0x7);
144 buf
[out
++] = '0' + ((c
>> 0) & 0x7);
151 if (quoter
!= 0 && (c
== '\\' || c
== quoter
))
157 this->write_async_safe (buf
, out
);
159 this->write (buf
, out
);
165 null_file::write (const char *buf
, long sizeof_buf
)
167 /* Discard the request. */
171 null_file::puts (const char *)
173 /* Discard the request. */
177 null_file::write_async_safe (const char *buf
, long sizeof_buf
)
179 /* Discard the request. */
184 /* true if the gdb terminal supports styling, and styling is enabled. */
192 const char *term
= getenv ("TERM");
193 /* Windows doesn't by default define $TERM, but can support styles
196 if (term
== nullptr || !strcmp (term
, "dumb"))
199 /* But if they do define $TERM, let us behave the same as on Posix
200 platforms, for the benefit of programs which invoke GDB as their
202 if (term
&& !strcmp (term
, "dumb"))
210 string_file::~string_file ()
214 string_file::write (const char *buf
, long length_buf
)
216 m_string
.append (buf
, length_buf
);
222 string_file::term_out ()
230 string_file::can_emit_style_escape ()
232 return m_term_out
&& term_cli_styling ();
237 stdio_file::stdio_file (FILE *file
, bool close_p
)
243 stdio_file::stdio_file ()
249 stdio_file::~stdio_file ()
256 stdio_file::set_stream (FILE *file
)
259 m_fd
= fileno (file
);
263 stdio_file::open (const char *name
, const char *mode
)
265 /* Close the previous stream, if we own it. */
272 gdb_file_up f
= gdb_fopen_cloexec (name
, mode
);
277 set_stream (f
.release ());
290 stdio_file::read (char *buf
, long length_buf
)
292 /* Wait until at least one byte of data is available, or we get
293 interrupted with Control-C. */
298 FD_SET (m_fd
, &readfds
);
299 if (interruptible_select (m_fd
+ 1, &readfds
, NULL
, NULL
, NULL
) == -1)
303 return ::read (m_fd
, buf
, length_buf
);
307 stdio_file::write (const char *buf
, long length_buf
)
309 /* Calling error crashes when we are called from the exception framework. */
310 if (fwrite (buf
, length_buf
, 1, m_file
))
317 stdio_file::write_async_safe (const char *buf
, long length_buf
)
319 /* This is written the way it is to avoid a warning from gcc about not using the
320 result of write (since it can be declared with attribute warn_unused_result).
321 Alas casting to void doesn't work for this. */
322 if (::write (m_fd
, buf
, length_buf
))
329 stdio_file::puts (const char *linebuffer
)
331 /* This host-dependent function (with implementations in
332 posix-hdep.c and mingw-hdep.c) is given the opportunity to
333 process the output first in host-dependent way. If it does, it
334 should return non-zero, to avoid calling fputs below. */
335 if (gdb_console_fputs (linebuffer
, m_file
))
337 /* Calling error crashes when we are called from the exception framework. */
338 if (fputs (linebuffer
, m_file
))
345 stdio_file::isatty ()
347 return ::isatty (m_fd
);
353 stdio_file::can_emit_style_escape ()
355 return (this->isatty ()
356 && term_cli_styling ());
361 /* This is the implementation of ui_file method 'write' for stderr.
362 gdb_stdout is flushed before writing to gdb_stderr. */
365 stderr_file::write (const char *buf
, long length_buf
)
367 gdb_stdout
->flush ();
368 stdio_file::write (buf
, length_buf
);
371 /* This is the implementation of ui_file method 'puts' for stderr.
372 gdb_stdout is flushed before writing to gdb_stderr. */
375 stderr_file::puts (const char *linebuffer
)
377 gdb_stdout
->flush ();
378 stdio_file::puts (linebuffer
);
381 stderr_file::stderr_file (FILE *stream
)
382 : stdio_file (stream
)
387 tee_file::tee_file (ui_file
*one
, ui_file_up
&&two
)
389 m_two (std::move (two
))
392 tee_file::~tee_file ()
404 tee_file::write (const char *buf
, long length_buf
)
406 m_one
->write (buf
, length_buf
);
407 m_two
->write (buf
, length_buf
);
411 tee_file::write_async_safe (const char *buf
, long length_buf
)
413 m_one
->write_async_safe (buf
, length_buf
);
414 m_two
->write_async_safe (buf
, length_buf
);
418 tee_file::puts (const char *linebuffer
)
420 m_one
->puts (linebuffer
);
421 m_two
->puts (linebuffer
);
427 return m_one
->isatty ();
433 tee_file::term_out ()
435 return m_one
->term_out ();
441 tee_file::can_emit_style_escape ()
443 return (m_one
->term_out ()
444 && term_cli_styling ());
450 no_terminal_escape_file::write (const char *buf
, long length_buf
)
452 std::string
copy (buf
, length_buf
);
453 this->puts (copy
.c_str ());
459 no_terminal_escape_file::puts (const char *buf
)
463 const char *esc
= strchr (buf
, '\033');
468 if (!skip_ansi_escape (esc
, &n_read
))
471 this->stdio_file::write (buf
, esc
- buf
);
476 this->stdio_file::write (buf
, strlen (buf
));
480 timestamped_file::write (const char *buf
, long len
)
484 /* Print timestamp if previous print ended with a \n. */
485 if (m_needs_timestamp
)
487 using namespace std::chrono
;
489 steady_clock::time_point now
= steady_clock::now ();
490 seconds s
= duration_cast
<seconds
> (now
.time_since_epoch ());
491 microseconds us
= duration_cast
<microseconds
> (now
.time_since_epoch () - s
);
492 std::string timestamp
= string_printf ("%ld.%06ld ",
495 m_stream
->puts (timestamp
.c_str ());
498 /* Print the message. */
499 m_stream
->write (buf
, len
);
501 m_needs_timestamp
= (len
> 0 && buf
[len
- 1] == '\n');
504 m_stream
->write (buf
, len
);