1 /* General functions for the WDB TUI.
3 Copyright (C) 1998-2019 Free Software Foundation, Inc.
5 Contributed by Hewlett-Packard Company.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "tui/tui-hooks.h"
26 #include "tui/tui-command.h"
27 #include "tui/tui-data.h"
28 #include "tui/tui-layout.h"
29 #include "tui/tui-io.h"
30 #include "tui/tui-regs.h"
31 #include "tui/tui-stack.h"
32 #include "tui/tui-win.h"
33 #include "tui/tui-winsource.h"
34 #include "tui/tui-source.h"
37 #include "breakpoint.h"
49 #include "gdb_curses.h"
52 /* This redefines CTRL if it is not already defined, so it must come
53 after terminal state releated include files like <term.h> and
55 #include "readline/readline.h"
57 /* Tells whether the TUI is active or not. */
58 bool tui_active
= false;
59 static bool tui_finish_init
= true;
61 enum tui_key_mode tui_current_key_mode
= TUI_COMMAND_MODE
;
63 struct tui_char_command
69 /* Key mapping to gdb commands when the TUI is using the single key
71 static const struct tui_char_command tui_commands
[] = {
81 { 'v', "info locals" },
86 static Keymap tui_keymap
;
87 static Keymap tui_readline_standard_keymap
;
89 /* TUI readline command.
90 Switch the output mode between TUI/standard gdb. */
92 tui_rl_switch_mode (int notused1
, int notused2
)
95 /* Don't let exceptions escape. We're in the middle of a readline
96 callback that isn't prepared for that. */
102 rl_prep_terminal (0);
106 /* If tui_enable throws, we'll re-prep below. */
107 rl_deprep_terminal ();
111 catch (const gdb_exception
&ex
)
113 exception_print (gdb_stderr
, ex
);
116 rl_prep_terminal (0);
119 /* Clear the readline in case switching occurred in middle of
122 rl_kill_text (0, rl_end
);
124 /* Since we left the curses mode, the terminal mode is restored to
125 some previous state. That state may not be suitable for readline
126 to work correctly (it may be restored in line mode). We force an
127 exit of the current readline so that readline is re-entered and
128 it will be able to setup the terminal for its needs. By
129 re-entering in readline, we also redisplay its prompt in the
131 rl_newline (1, '\n');
133 /* Make sure the \n we are returning does not repeat the last
139 /* TUI readline command.
140 Change the TUI layout to show a next layout.
141 This function is bound to CTRL-X 2. It is intended to provide
142 a functionality close to the Emacs split-window command. We
143 always show two windows (src+asm), (src+regs) or (asm+regs). */
145 tui_rl_change_windows (int notused1
, int notused2
)
148 tui_rl_switch_mode (0 /* notused */, 0 /* notused */);
152 enum tui_layout_type new_layout
;
154 new_layout
= tui_current_layout ();
156 /* Select a new layout to have a rolling layout behavior with
157 always two windows (except when undefined). */
161 new_layout
= SRC_DISASSEM_COMMAND
;
164 case DISASSEM_COMMAND
:
165 new_layout
= SRC_DISASSEM_COMMAND
;
168 case SRC_DATA_COMMAND
:
169 new_layout
= SRC_DISASSEM_COMMAND
;
172 case SRC_DISASSEM_COMMAND
:
173 new_layout
= DISASSEM_DATA_COMMAND
;
176 case DISASSEM_DATA_COMMAND
:
177 new_layout
= SRC_DATA_COMMAND
;
181 new_layout
= SRC_COMMAND
;
184 tui_set_layout (new_layout
);
189 /* TUI readline command.
190 Delete the second TUI window to only show one. */
192 tui_rl_delete_other_windows (int notused1
, int notused2
)
195 tui_rl_switch_mode (0 /* notused */, 0 /* notused */);
199 enum tui_layout_type new_layout
;
201 new_layout
= tui_current_layout ();
203 /* Kill one window. */
207 case SRC_DATA_COMMAND
:
208 case SRC_DISASSEM_COMMAND
:
210 new_layout
= SRC_COMMAND
;
213 case DISASSEM_COMMAND
:
214 case DISASSEM_DATA_COMMAND
:
215 new_layout
= DISASSEM_COMMAND
;
218 tui_set_layout (new_layout
);
223 /* TUI readline command.
224 Switch the active window to give the focus to a next window. */
226 tui_rl_other_window (int count
, int key
)
228 struct tui_win_info
*win_info
;
231 tui_rl_switch_mode (0 /* notused */, 0 /* notused */);
233 win_info
= tui_next_win (tui_win_with_focus ());
236 tui_set_win_focus_to (win_info
);
237 keypad (TUI_CMD_WIN
->handle
.get (), win_info
!= TUI_CMD_WIN
);
242 /* TUI readline command.
243 Execute the gdb command bound to the specified key. */
245 tui_rl_command_key (int count
, int key
)
249 reinitialize_more_filter ();
250 for (i
= 0; tui_commands
[i
].cmd
; i
++)
252 if (tui_commands
[i
].key
== key
)
254 /* Insert the command in the readline buffer.
255 Avoid calling the gdb command here since it creates
256 a possible recursion on readline if prompt_for_continue
257 is called (See PR 9584). The command will also appear
258 in the readline history which turns out to be better. */
259 rl_insert_text (tui_commands
[i
].cmd
);
260 rl_newline (1, '\n');
262 /* Switch to gdb command mode while executing the command.
263 This way the gdb's continue prompty will be displayed. */
264 tui_set_key_mode (TUI_ONE_COMMAND_MODE
);
271 /* TUI readline command.
272 Temporarily leave the TUI SingleKey mode to allow editing
273 a gdb command with the normal readline. Once the command
274 is executed, the TUI SingleKey mode is installed back. */
276 tui_rl_command_mode (int count
, int key
)
278 tui_set_key_mode (TUI_ONE_COMMAND_MODE
);
279 return rl_insert (count
, key
);
282 /* TUI readline command.
283 Switch between TUI SingleKey mode and gdb readline editing. */
285 tui_rl_next_keymap (int notused1
, int notused2
)
288 tui_rl_switch_mode (0 /* notused */, 0 /* notused */);
290 tui_set_key_mode (tui_current_key_mode
== TUI_COMMAND_MODE
291 ? TUI_SINGLE_KEY_MODE
: TUI_COMMAND_MODE
);
295 /* Readline hook to redisplay ourself the gdb prompt.
296 In the SingleKey mode, the prompt is not printed so that
297 the command window is cleaner. It will be displayed if
298 we temporarily leave the SingleKey mode. */
300 tui_rl_startup_hook (void)
302 rl_already_prompted
= 1;
303 if (tui_current_key_mode
!= TUI_COMMAND_MODE
304 && !gdb_in_secondary_prompt_p (current_ui
))
305 tui_set_key_mode (TUI_SINGLE_KEY_MODE
);
306 tui_redisplay_readline ();
310 /* Change the TUI key mode by installing the appropriate readline
313 tui_set_key_mode (enum tui_key_mode mode
)
315 tui_current_key_mode
= mode
;
316 rl_set_keymap (mode
== TUI_SINGLE_KEY_MODE
317 ? tui_keymap
: tui_readline_standard_keymap
);
318 tui_show_locator_content ();
321 /* Initialize readline and configure the keymap for the switching
324 tui_initialize_readline (void)
327 Keymap tui_ctlx_keymap
;
329 rl_add_defun ("tui-switch-mode", tui_rl_switch_mode
, -1);
330 rl_add_defun ("next-keymap", tui_rl_next_keymap
, -1);
331 rl_add_defun ("tui-delete-other-windows", tui_rl_delete_other_windows
, -1);
332 rl_add_defun ("tui-change-windows", tui_rl_change_windows
, -1);
333 rl_add_defun ("tui-other-window", tui_rl_other_window
, -1);
335 tui_keymap
= rl_make_bare_keymap ();
337 /* The named keymap feature was added in Readline 8.0. */
338 #if RL_READLINE_VERSION >= 0x800
339 rl_set_keymap_name ("SingleKey", tui_keymap
);
342 tui_ctlx_keymap
= rl_make_bare_keymap ();
343 tui_readline_standard_keymap
= rl_get_keymap ();
345 for (i
= 0; tui_commands
[i
].cmd
; i
++)
346 rl_bind_key_in_map (tui_commands
[i
].key
, tui_rl_command_key
, tui_keymap
);
348 rl_generic_bind (ISKMAP
, "\\C-x", (char*) tui_ctlx_keymap
, tui_keymap
);
350 /* Bind all other keys to tui_rl_command_mode so that we switch
351 temporarily from SingleKey mode and can enter a gdb command. */
352 for (i
= ' '; i
< 0x7f; i
++)
356 for (j
= 0; tui_commands
[j
].cmd
; j
++)
357 if (tui_commands
[j
].key
== i
)
360 if (tui_commands
[j
].cmd
)
363 rl_bind_key_in_map (i
, tui_rl_command_mode
, tui_keymap
);
366 rl_bind_key_in_map ('a', tui_rl_switch_mode
, emacs_ctlx_keymap
);
367 rl_bind_key_in_map ('a', tui_rl_switch_mode
, tui_ctlx_keymap
);
368 rl_bind_key_in_map ('A', tui_rl_switch_mode
, emacs_ctlx_keymap
);
369 rl_bind_key_in_map ('A', tui_rl_switch_mode
, tui_ctlx_keymap
);
370 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode
, emacs_ctlx_keymap
);
371 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode
, tui_ctlx_keymap
);
372 rl_bind_key_in_map ('1', tui_rl_delete_other_windows
, emacs_ctlx_keymap
);
373 rl_bind_key_in_map ('1', tui_rl_delete_other_windows
, tui_ctlx_keymap
);
374 rl_bind_key_in_map ('2', tui_rl_change_windows
, emacs_ctlx_keymap
);
375 rl_bind_key_in_map ('2', tui_rl_change_windows
, tui_ctlx_keymap
);
376 rl_bind_key_in_map ('o', tui_rl_other_window
, emacs_ctlx_keymap
);
377 rl_bind_key_in_map ('o', tui_rl_other_window
, tui_ctlx_keymap
);
378 rl_bind_key_in_map ('q', tui_rl_next_keymap
, tui_keymap
);
379 rl_bind_key_in_map ('s', tui_rl_next_keymap
, emacs_ctlx_keymap
);
380 rl_bind_key_in_map ('s', tui_rl_next_keymap
, tui_ctlx_keymap
);
383 /* Return the TERM variable from the environment, or "<unset>"
387 gdb_getenv_term (void)
391 term
= getenv ("TERM");
397 /* Enter in the tui mode (curses).
398 When in normal mode, it installs the tui hooks in gdb, redirects
399 the gdb output, configures the readline to work in tui mode.
400 When in curses mode, it does nothing. */
407 /* To avoid to initialize curses when gdb starts, there is a deferred
408 curses initialization. This initialization is made only once
409 and the first time the curses mode is entered. */
419 /* If the top level interpreter is not the console/tui (e.g.,
420 MI), enabling curses will certainly lose. */
421 interp
= top_level_interpreter ()->name ();
422 if (strcmp (interp
, INTERP_TUI
) != 0)
423 error (_("Cannot enable the TUI when the interpreter is '%s'"), interp
);
425 /* Don't try to setup curses (and print funny control
426 characters) if we're not outputting to a terminal. */
427 if (!ui_file_isatty (gdb_stdout
))
428 error (_("Cannot enable the TUI when output is not a terminal"));
430 s
= newterm (NULL
, stdout
, stdin
);
432 /* The MinGW port of ncurses requires $TERM to be unset in order
433 to activate the Windows console driver. */
435 s
= newterm ((char *) "unknown", stdout
, stdin
);
439 error (_("Cannot enable the TUI: error opening terminal [TERM=%s]"),
445 #ifdef HAVE_USE_DEFAULT_COLORS
446 /* Ncurses extension to help with resetting to the default
448 use_default_colors ();
453 /* Check required terminal capabilities. The MinGW port of
454 ncurses does have them, but doesn't expose them through "cup". */
456 cap
= tigetstr ((char *) "cup");
457 if (cap
== NULL
|| cap
== (char *) -1 || *cap
== '\0')
461 error (_("Cannot enable the TUI: "
462 "terminal doesn't support cursor addressing [TERM=%s]"),
473 tui_set_term_height_to (LINES
);
474 tui_set_term_width_to (COLS
);
477 tui_show_frame_info (0);
478 tui_set_layout (SRC_COMMAND
);
479 tui_set_win_focus_to (TUI_SRC_WIN
);
480 keypad (TUI_CMD_WIN
->handle
.get (), TRUE
);
481 wrefresh (TUI_CMD_WIN
->handle
.get ());
482 tui_finish_init
= false;
486 /* Save the current gdb setting of the terminal.
487 Curses will restore this state when endwin() is called. */
489 clearok (stdscr
, TRUE
);
492 /* Install the TUI specific hooks. */
493 tui_install_hooks ();
494 rl_startup_hook
= tui_rl_startup_hook
;
496 if (tui_update_variables ())
497 tui_rehighlight_all ();
503 /* Resize windows before anything might display/refresh a
505 if (tui_win_resized ())
507 tui_set_win_resized_to (false);
511 if (deprecated_safe_get_selected_frame ())
512 tui_show_frame_info (deprecated_safe_get_selected_frame ());
516 /* Restore TUI keymap. */
517 tui_set_key_mode (tui_current_key_mode
);
519 /* Refresh the screen. */
520 tui_refresh_all_win ();
522 /* Update gdb's knowledge of its terminal. */
523 gdb_save_tty_state ();
524 tui_update_gdb_sizes ();
527 /* Leave the tui mode.
528 Remove the tui hooks and configure the gdb output and readline
529 back to their original state. The curses mode is left so that
530 the terminal setting is restored to the point when we entered. */
537 /* Restore initial readline keymap. */
538 rl_set_keymap (tui_readline_standard_keymap
);
540 /* Remove TUI hooks. */
543 rl_already_prompted
= 0;
545 /* Leave curses and restore previous gdb terminal setting. */
548 /* gdb terminal has changed, update gdb internal copy of it
549 so that terminal management with the inferior works. */
552 /* Update gdb's knowledge of its terminal. */
553 gdb_save_tty_state ();
556 tui_update_gdb_sizes ();
559 /* Command wrapper for enabling tui mode. */
562 tui_enable_command (const char *args
, int from_tty
)
567 /* Command wrapper for leaving tui mode. */
570 tui_disable_command (const char *args
, int from_tty
)
576 tui_show_assembly (struct gdbarch
*gdbarch
, CORE_ADDR addr
)
578 tui_add_win_to_layout (DISASSEM_WIN
);
579 tui_update_source_windows_with_addr (gdbarch
, addr
);
583 tui_is_window_visible (enum tui_win_type type
)
588 if (tui_win_list
[type
] == 0)
591 return tui_win_list
[type
]->is_visible ();
595 tui_get_command_dimension (unsigned int *width
,
596 unsigned int *height
)
598 if (!tui_active
|| (TUI_CMD_WIN
== NULL
))
603 *width
= TUI_CMD_WIN
->width
;
604 *height
= TUI_CMD_WIN
->height
;
609 _initialize_tui (void)
611 struct cmd_list_element
**tuicmd
;
613 tuicmd
= tui_get_cmd_list ();
615 add_cmd ("enable", class_tui
, tui_enable_command
,
616 _("Enable TUI display mode."),
618 add_cmd ("disable", class_tui
, tui_disable_command
,
619 _("Disable TUI display mode."),