1 /* Copyright (C) 2023-2024 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "cli/cli-cmds.h"
21 #include "event-top.h"
22 #include "gdbsupport/buildargv.h"
23 #include "gdbsupport/filestuff.h"
24 #include "gdbsupport/gdb_file.h"
25 #include "gdbsupport/scoped_fd.h"
34 struct ui
*current_ui
;
37 /* The highest UI number ever assigned. */
39 static int highest_ui_num
;
43 ui::ui (FILE *instream_
, FILE *outstream_
, FILE *errstream_
)
44 : num (++highest_ui_num
),
45 stdin_stream (instream_
),
47 outstream (outstream_
),
48 errstream (errstream_
),
49 input_fd (fileno (instream
)),
50 m_input_interactive_p (ISATTY (instream
)),
51 m_gdb_stdout (new pager_file (new stdio_file (outstream
))),
52 m_gdb_stdin (new stdio_file (instream
)),
53 m_gdb_stderr (new stderr_file (errstream
)),
54 m_gdb_stdlog (new timestamped_file (m_gdb_stderr
))
56 unbuffer_stream (instream_
);
64 for (last
= ui_list
; last
->next
!= NULL
; last
= last
->next
)
72 struct ui
*ui
, *uiprev
;
76 for (ui
= ui_list
; ui
!= NULL
; uiprev
= ui
, ui
= ui
->next
)
80 gdb_assert (ui
!= NULL
);
93 /* Returns whether GDB is running on an interactive terminal. */
96 ui::input_interactive_p () const
101 if (interactive_mode
!= AUTO_BOOLEAN_AUTO
)
102 return interactive_mode
== AUTO_BOOLEAN_TRUE
;
104 return m_input_interactive_p
;
108 /* When there is an event ready on the stdin file descriptor, instead
109 of calling readline directly throught the callback function, or
110 instead of calling gdb_readline_no_editing_callback, give gdb a
111 chance to detect errors and do something. */
114 stdin_event_handler (int error
, gdb_client_data client_data
)
116 struct ui
*ui
= (struct ui
*) client_data
;
120 /* Switch to the main UI, so diagnostics always go there. */
121 current_ui
= main_ui
;
123 ui
->unregister_file_handler ();
126 /* If stdin died, we may as well kill gdb. */
127 gdb_printf (gdb_stderr
, _("error detected on stdin\n"));
128 quit_command ((char *) 0, 0);
132 /* Simply delete the UI. */
138 /* Switch to the UI whose input descriptor woke up the event
142 /* This makes sure a ^C immediately followed by further input is
143 always processed in that order. E.g,. with input like
144 "^Cprint 1\n", the SIGINT handler runs, marks the async
145 signal handler, and then select/poll may return with stdin
146 ready, instead of -1/EINTR. The
147 gdb.base/double-prompt-target-event-error.exp test exercises
153 call_stdin_event_handler_again_p
= 0;
154 ui
->call_readline (client_data
);
156 while (call_stdin_event_handler_again_p
!= 0);
163 ui::register_file_handler ()
166 add_file_handler (input_fd
, stdin_event_handler
, this,
167 string_printf ("ui-%d", num
), true);
173 ui::unregister_file_handler ()
176 delete_file_handler (input_fd
);
179 /* Open file named NAME for read/write, making sure not to make it the
180 controlling terminal. */
183 open_terminal_stream (const char *name
)
185 scoped_fd fd
= gdb_open_cloexec (name
, O_RDWR
| O_NOCTTY
, 0);
187 perror_with_name (_("opening terminal failed"));
189 return fd
.to_file ("w+");
192 /* Implementation of the "new-ui" command. */
195 new_ui_command (const char *args
, int from_tty
)
198 const char *interpreter_name
;
199 const char *tty_name
;
203 gdb_argv
argv (args
);
204 argc
= argv
.count ();
207 error (_("Usage: new-ui INTERPRETER TTY"));
209 interpreter_name
= argv
[0];
213 scoped_restore save_ui
= make_scoped_restore (¤t_ui
);
215 /* Open specified terminal. Note: we used to open it three times,
216 once for each of stdin/stdout/stderr, but that does not work
217 with Windows named pipes. */
218 gdb_file_up stream
= open_terminal_stream (tty_name
);
220 std::unique_ptr
<ui
> ui
221 (new struct ui (stream
.get (), stream
.get (), stream
.get ()));
225 current_ui
= ui
.get ();
227 set_top_level_interpreter (interpreter_name
);
229 top_level_interpreter ()->pre_command_loop ();
231 /* Make sure the file is not closed. */
237 gdb_printf ("New UI allocated\n");
240 void _initialize_ui ();
244 cmd_list_element
*c
= add_cmd ("new-ui", class_support
, new_ui_command
, _("\
246 Usage: new-ui INTERPRETER TTY\n\
247 The first argument is the name of the interpreter to run.\n\
248 The second argument is the terminal the UI runs on."), &cmdlist
);
249 set_cmd_completer (c
, interpreter_completer
);