1 /* General functions for the WDB TUI.
3 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
6 Contributed by Hewlett-Packard Company.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA. */
28 #include "tui/tui-hooks.h"
29 #include "tui/tui-data.h"
30 #include "tui/tui-layout.h"
31 #include "tui/tui-io.h"
32 #include "tui/tui-regs.h"
33 #include "tui/tui-stack.h"
34 #include "tui/tui-win.h"
35 #include "tui/tui-winsource.h"
36 #include "tui/tui-windata.h"
39 #include "breakpoint.h"
54 #include "gdb_curses.h"
56 /* This redefines CTRL if it is not already defined, so it must come
57 after terminal state releated include files like <term.h> and
59 #include "readline/readline.h"
61 /* Tells whether the TUI is active or not. */
63 static int tui_finish_init
= 1;
65 enum tui_key_mode tui_current_key_mode
= TUI_COMMAND_MODE
;
67 struct tui_char_command
73 /* Key mapping to gdb commands when the TUI is using the single key mode. */
74 static const struct tui_char_command tui_commands
[] = {
82 { 'v', "info locals" },
87 static Keymap tui_keymap
;
88 static Keymap tui_readline_standard_keymap
;
90 /* TUI readline command.
91 Switch the output mode between TUI/standard gdb. */
93 tui_rl_switch_mode (int notused1
, int notused2
)
102 rl_deprep_terminal ();
106 /* Clear the readline in case switching occurred in middle of something. */
108 rl_kill_text (0, rl_end
);
110 /* Since we left the curses mode, the terminal mode is restored to
111 some previous state. That state may not be suitable for readline
112 to work correctly (it may be restored in line mode). We force an
113 exit of the current readline so that readline is re-entered and it
114 will be able to setup the terminal for its needs. By re-entering
115 in readline, we also redisplay its prompt in the non-curses mode. */
116 rl_newline (1, '\n');
118 /* Make sure the \n we are returning does not repeat the last command. */
123 /* TUI readline command.
124 Change the TUI layout to show a next layout.
125 This function is bound to CTRL-X 2. It is intended to provide
126 a functionality close to the Emacs split-window command. We always
127 show two windows (src+asm), (src+regs) or (asm+regs). */
129 tui_rl_change_windows (int notused1
, int notused2
)
132 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
136 enum tui_layout_type new_layout
;
137 enum tui_register_display_type regs_type
= TUI_UNDEFINED_REGS
;
139 new_layout
= tui_current_layout ();
141 /* Select a new layout to have a rolling layout behavior
142 with always two windows (except when undefined). */
146 new_layout
= SRC_DISASSEM_COMMAND
;
149 case DISASSEM_COMMAND
:
150 new_layout
= SRC_DISASSEM_COMMAND
;
153 case SRC_DATA_COMMAND
:
154 new_layout
= SRC_DISASSEM_COMMAND
;
157 case SRC_DISASSEM_COMMAND
:
158 new_layout
= DISASSEM_DATA_COMMAND
;
161 case DISASSEM_DATA_COMMAND
:
162 new_layout
= SRC_DATA_COMMAND
;
166 new_layout
= SRC_COMMAND
;
169 tui_set_layout (new_layout
, regs_type
);
174 /* TUI readline command.
175 Delete the second TUI window to only show one. */
177 tui_rl_delete_other_windows (int notused1
, int notused2
)
180 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
184 enum tui_layout_type new_layout
;
185 enum tui_register_display_type regs_type
= TUI_UNDEFINED_REGS
;
187 new_layout
= tui_current_layout ();
189 /* Kill one window. */
193 case SRC_DATA_COMMAND
:
194 case SRC_DISASSEM_COMMAND
:
196 new_layout
= SRC_COMMAND
;
199 case DISASSEM_COMMAND
:
200 case DISASSEM_DATA_COMMAND
:
201 new_layout
= DISASSEM_COMMAND
;
204 tui_set_layout (new_layout
, regs_type
);
209 /* TUI readline command.
210 Switch the active window to give the focus to a next window. */
212 tui_rl_other_window (int count
, int key
)
214 struct tui_win_info
* win_info
;
217 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
219 win_info
= tui_next_win (tui_win_with_focus ());
222 tui_set_win_focus_to (win_info
);
223 if (TUI_DATA_WIN
&& TUI_DATA_WIN
->generic
.is_visible
)
224 tui_refresh_data_win ();
225 keypad (TUI_CMD_WIN
->generic
.handle
, (win_info
!= TUI_CMD_WIN
));
230 /* TUI readline command.
231 Execute the gdb command bound to the specified key. */
233 tui_rl_command_key (int count
, int key
)
237 reinitialize_more_filter ();
238 for (i
= 0; tui_commands
[i
].cmd
; i
++)
240 if (tui_commands
[i
].key
== key
)
242 /* Must save the command because it can be modified
243 by execute_command. */
244 char* cmd
= alloca (strlen (tui_commands
[i
].cmd
) + 1);
245 strcpy (cmd
, tui_commands
[i
].cmd
);
246 execute_command (cmd
, TRUE
);
253 /* TUI readline command.
254 Temporarily leave the TUI SingleKey mode to allow editing
255 a gdb command with the normal readline. Once the command
256 is executed, the TUI SingleKey mode is installed back. */
258 tui_rl_command_mode (int count
, int key
)
260 tui_set_key_mode (TUI_ONE_COMMAND_MODE
);
261 return rl_insert (count
, key
);
264 /* TUI readline command.
265 Switch between TUI SingleKey mode and gdb readline editing. */
267 tui_rl_next_keymap (int notused1
, int notused2
)
270 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
272 tui_set_key_mode (tui_current_key_mode
== TUI_COMMAND_MODE
273 ? TUI_SINGLE_KEY_MODE
: TUI_COMMAND_MODE
);
277 /* Readline hook to redisplay ourself the gdb prompt.
278 In the SingleKey mode, the prompt is not printed so that
279 the command window is cleaner. It will be displayed if
280 we temporarily leave the SingleKey mode. */
282 tui_rl_startup_hook (void)
284 rl_already_prompted
= 1;
285 if (tui_current_key_mode
!= TUI_COMMAND_MODE
)
286 tui_set_key_mode (TUI_SINGLE_KEY_MODE
);
287 tui_redisplay_readline ();
291 /* Change the TUI key mode by installing the appropriate readline keymap. */
293 tui_set_key_mode (enum tui_key_mode mode
)
295 tui_current_key_mode
= mode
;
296 rl_set_keymap (mode
== TUI_SINGLE_KEY_MODE
297 ? tui_keymap
: tui_readline_standard_keymap
);
298 tui_show_locator_content ();
301 /* Initialize readline and configure the keymap for the switching
304 tui_initialize_readline (void)
307 Keymap tui_ctlx_keymap
;
311 rl_add_defun ("tui-switch-mode", tui_rl_switch_mode
, -1);
312 rl_add_defun ("gdb-command", tui_rl_command_key
, -1);
313 rl_add_defun ("next-keymap", tui_rl_next_keymap
, -1);
315 tui_keymap
= rl_make_bare_keymap ();
316 tui_ctlx_keymap
= rl_make_bare_keymap ();
317 tui_readline_standard_keymap
= rl_get_keymap ();
319 for (i
= 0; tui_commands
[i
].cmd
; i
++)
320 rl_bind_key_in_map (tui_commands
[i
].key
, tui_rl_command_key
, tui_keymap
);
322 rl_generic_bind (ISKMAP
, "\\C-x", (char*) tui_ctlx_keymap
, tui_keymap
);
324 /* Bind all other keys to tui_rl_command_mode so that we switch
325 temporarily from SingleKey mode and can enter a gdb command. */
326 for (i
= ' '; i
< 0x7f; i
++)
330 for (j
= 0; tui_commands
[j
].cmd
; j
++)
331 if (tui_commands
[j
].key
== i
)
334 if (tui_commands
[j
].cmd
)
337 rl_bind_key_in_map (i
, tui_rl_command_mode
, tui_keymap
);
340 rl_bind_key_in_map ('a', tui_rl_switch_mode
, emacs_ctlx_keymap
);
341 rl_bind_key_in_map ('a', tui_rl_switch_mode
, tui_ctlx_keymap
);
342 rl_bind_key_in_map ('A', tui_rl_switch_mode
, emacs_ctlx_keymap
);
343 rl_bind_key_in_map ('A', tui_rl_switch_mode
, tui_ctlx_keymap
);
344 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode
, emacs_ctlx_keymap
);
345 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode
, tui_ctlx_keymap
);
346 rl_bind_key_in_map ('1', tui_rl_delete_other_windows
, emacs_ctlx_keymap
);
347 rl_bind_key_in_map ('1', tui_rl_delete_other_windows
, tui_ctlx_keymap
);
348 rl_bind_key_in_map ('2', tui_rl_change_windows
, emacs_ctlx_keymap
);
349 rl_bind_key_in_map ('2', tui_rl_change_windows
, tui_ctlx_keymap
);
350 rl_bind_key_in_map ('o', tui_rl_other_window
, emacs_ctlx_keymap
);
351 rl_bind_key_in_map ('o', tui_rl_other_window
, tui_ctlx_keymap
);
352 rl_bind_key_in_map ('q', tui_rl_next_keymap
, tui_keymap
);
353 rl_bind_key_in_map ('s', tui_rl_next_keymap
, emacs_ctlx_keymap
);
354 rl_bind_key_in_map ('s', tui_rl_next_keymap
, tui_ctlx_keymap
);
357 /* Enter in the tui mode (curses).
358 When in normal mode, it installs the tui hooks in gdb, redirects
359 the gdb output, configures the readline to work in tui mode.
360 When in curses mode, it does nothing. */
367 /* To avoid to initialize curses when gdb starts, there is a defered
368 curses initialization. This initialization is made only once
369 and the first time the curses mode is entered. */
383 tui_set_term_height_to (LINES
);
384 tui_set_term_width_to (COLS
);
387 tui_show_frame_info (0);
388 tui_set_layout (SRC_COMMAND
, TUI_UNDEFINED_REGS
);
389 tui_set_win_focus_to (TUI_SRC_WIN
);
390 keypad (TUI_CMD_WIN
->generic
.handle
, TRUE
);
391 wrefresh (TUI_CMD_WIN
->generic
.handle
);
396 /* Save the current gdb setting of the terminal.
397 Curses will restore this state when endwin() is called. */
399 clearok (stdscr
, TRUE
);
402 /* Install the TUI specific hooks. */
403 tui_install_hooks ();
404 rl_startup_hook
= tui_rl_startup_hook
;
406 tui_update_variables ();
411 if (deprecated_selected_frame
)
412 tui_show_frame_info (deprecated_selected_frame
);
414 /* Restore TUI keymap. */
415 tui_set_key_mode (tui_current_key_mode
);
416 tui_refresh_all_win ();
418 /* Update gdb's knowledge of its terminal. */
419 target_terminal_save_ours ();
420 tui_update_gdb_sizes ();
423 /* Leave the tui mode.
424 Remove the tui hooks and configure the gdb output and readline
425 back to their original state. The curses mode is left so that
426 the terminal setting is restored to the point when we entered. */
433 /* Restore initial readline keymap. */
434 rl_set_keymap (tui_readline_standard_keymap
);
436 /* Remove TUI hooks. */
439 rl_already_prompted
= 0;
441 /* Leave curses and restore previous gdb terminal setting. */
444 /* gdb terminal has changed, update gdb internal copy of it
445 so that terminal management with the inferior works. */
448 /* Update gdb's knowledge of its terminal. */
449 target_terminal_save_ours ();
452 tui_update_gdb_sizes ();
456 strcat_to_buf (char *buf
, int buflen
, const char *item_to_add
)
458 if (item_to_add
!= (char *) NULL
&& buf
!= (char *) NULL
)
460 if ((strlen (buf
) + strlen (item_to_add
)) <= buflen
)
461 strcat (buf
, item_to_add
);
463 strncat (buf
, item_to_add
, (buflen
- strlen (buf
)));
468 /* Solaris <sys/termios.h> defines CTRL. */
470 #define CTRL(x) (x & ~0140)
474 #define CHK(val, dft) (val<=0 ? dft : val)
482 ** reset the teletype mode bits to a sensible state.
485 #if defined (TIOCGETC)
487 #endif /* TIOCGETC */
491 if (ldisc
== NTTYDISC
)
493 ioctl (FILEDES
, TIOCGLTC
, <c
);
494 ltc
.t_suspc
= CHK (ltc
.t_suspc
, CTRL ('Z'));
495 ltc
.t_dsuspc
= CHK (ltc
.t_dsuspc
, CTRL ('Y'));
496 ltc
.t_rprntc
= CHK (ltc
.t_rprntc
, CTRL ('R'));
497 ltc
.t_flushc
= CHK (ltc
.t_flushc
, CTRL ('O'));
498 ltc
.t_werasc
= CHK (ltc
.t_werasc
, CTRL ('W'));
499 ltc
.t_lnextc
= CHK (ltc
.t_lnextc
, CTRL ('V'));
500 ioctl (FILEDES
, TIOCSLTC
, <c
);
502 #endif /* UCB_NTTY */
504 ioctl (FILEDES
, TIOCGETC
, &tbuf
);
505 tbuf
.t_intrc
= CHK (tbuf
.t_intrc
, CTRL ('?'));
506 tbuf
.t_quitc
= CHK (tbuf
.t_quitc
, CTRL ('\\'));
507 tbuf
.t_startc
= CHK (tbuf
.t_startc
, CTRL ('Q'));
508 tbuf
.t_stopc
= CHK (tbuf
.t_stopc
, CTRL ('S'));
509 tbuf
.t_eofc
= CHK (tbuf
.t_eofc
, CTRL ('D'));
510 /* brkc is left alone */
511 ioctl (FILEDES
, TIOCSETC
, &tbuf
);
512 #endif /* TIOCGETC */
513 mode
.sg_flags
&= ~(RAW
517 | VTDELAY
| ALLDELAY
);
518 mode
.sg_flags
|= XTABS
| ECHO
| CRMOD
| ANYP
;
525 tui_show_source (const char *file
, int line
)
527 struct symtab_and_line cursal
= get_current_source_symtab_and_line ();
528 /* make sure that the source window is displayed */
529 tui_add_win_to_layout (SRC_WIN
);
531 tui_update_source_windows_with_line (cursal
.symtab
, line
);
532 tui_update_locator_filename (file
);
536 tui_show_assembly (CORE_ADDR addr
)
538 tui_add_win_to_layout (DISASSEM_WIN
);
539 tui_update_source_windows_with_addr (addr
);
543 tui_is_window_visible (enum tui_win_type type
)
548 if (tui_win_list
[type
] == 0)
551 return tui_win_list
[type
]->generic
.is_visible
;
555 tui_get_command_dimension (unsigned int *width
, unsigned int *height
)
557 if (!tui_active
|| (TUI_CMD_WIN
== NULL
))
562 *width
= TUI_CMD_WIN
->generic
.width
;
563 *height
= TUI_CMD_WIN
->generic
.height
;