* configure.in: Refine the previous change.
[deliverable/binutils-gdb.git] / gdb / tui / tui.c
CommitLineData
f377b406 1/* General functions for the WDB TUI.
f33c6cbf 2
47d3492a
AC
3 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
4 Foundation, Inc.
f33c6cbf 5
f377b406
SC
6 Contributed by Hewlett-Packard Company.
7
8 This file is part of GDB.
9
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.
14
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.
19
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., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
c906108c
SS
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <ctype.h>
c906108c
SS
28#ifdef HAVE_TERM_H
29#include <term.h>
30#endif
31#include <signal.h>
32#include <fcntl.h>
6d7fbb5a 33#if 0
c906108c 34#include <termio.h>
6d7fbb5a 35#endif
c906108c
SS
36#include <setjmp.h>
37#include "defs.h"
38#include "gdbcmd.h"
d7b2e967 39#include "tui/tui.h"
6a83354a 40#include "tui/tui-hooks.h"
d7b2e967
AC
41#include "tui/tui-data.h"
42#include "tui/tui-layout.h"
43#include "tui/tui-io.h"
44#include "tui/tui-regs.h"
45#include "tui/tui-stack.h"
46#include "tui/tui-win.h"
47#include "tui/tui-winsource.h"
48#include "tui/tui-windata.h"
39db33d6
SC
49#include "readline/readline.h"
50#include "target.h"
51#include "frame.h"
52#include "breakpoint.h"
c6f60bcd 53#include "inferior.h"
52575520
EZ
54#include "symtab.h"
55#include "source.h"
39db33d6 56
6a83354a 57#include "gdb_curses.h"
96ec9981 58
39db33d6
SC
59/* Tells whether the TUI is active or not. */
60int tui_active = 0;
61static int tui_finish_init = 1;
62
6d012f14 63enum tui_key_mode tui_current_key_mode = TUI_COMMAND_MODE;
e09d2eba
SC
64
65struct tui_char_command
66{
67 unsigned char key;
68 const char* cmd;
69};
70
71/* Key mapping to gdb commands when the TUI is using the single key mode. */
72static const struct tui_char_command tui_commands[] = {
73 { 'c', "continue" },
74 { 'd', "down" },
75 { 'f', "finish" },
76 { 'n', "next" },
77 { 'r', "run" },
78 { 's', "step" },
79 { 'u', "up" },
80 { 'v', "info locals" },
81 { 'w', "where" },
82 { 0, 0 },
83};
84
85static Keymap tui_keymap;
86static Keymap tui_readline_standard_keymap;
87
88/* TUI readline command.
89 Switch the output mode between TUI/standard gdb. */
39db33d6 90static int
88fa91b4 91tui_rl_switch_mode (int notused1, int notused2)
c906108c 92{
39db33d6 93 if (tui_active)
c906108c 94 {
39db33d6 95 tui_disable ();
c6f60bcd 96 rl_prep_terminal (0);
39db33d6
SC
97 }
98 else
99 {
c6f60bcd 100 rl_deprep_terminal ();
39db33d6 101 tui_enable ();
c906108c 102 }
c906108c 103
39db33d6
SC
104 /* Clear the readline in case switching occurred in middle of something. */
105 if (rl_end)
106 rl_kill_text (0, rl_end);
107
108 /* Since we left the curses mode, the terminal mode is restored to
109 some previous state. That state may not be suitable for readline
110 to work correctly (it may be restored in line mode). We force an
111 exit of the current readline so that readline is re-entered and it
112 will be able to setup the terminal for its needs. By re-entering
113 in readline, we also redisplay its prompt in the non-curses mode. */
114 rl_newline (1, '\n');
c6f60bcd
SC
115
116 /* Make sure the \n we are returning does not repeat the last command. */
117 dont_repeat ();
39db33d6
SC
118 return 0;
119}
c906108c 120
6ba6ffa2
SC
121/* TUI readline command.
122 Change the TUI layout to show a next layout.
377c38ea
SC
123 This function is bound to CTRL-X 2. It is intended to provide
124 a functionality close to the Emacs split-window command. We always
125 show two windows (src+asm), (src+regs) or (asm+regs). */
126static int
88fa91b4 127tui_rl_change_windows (int notused1, int notused2)
377c38ea
SC
128{
129 if (!tui_active)
88fa91b4 130 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
377c38ea
SC
131
132 if (tui_active)
133 {
2a8854a7
AC
134 enum tui_layout_type new_layout;
135 enum tui_register_display_type regs_type = TUI_UNDEFINED_REGS;
377c38ea 136
dd1abb8c 137 new_layout = tui_current_layout ();
377c38ea
SC
138
139 /* Select a new layout to have a rolling layout behavior
140 with always two windows (except when undefined). */
141 switch (new_layout)
142 {
143 case SRC_COMMAND:
144 new_layout = SRC_DISASSEM_COMMAND;
145 break;
146
147 case DISASSEM_COMMAND:
148 new_layout = SRC_DISASSEM_COMMAND;
149 break;
150
151 case SRC_DATA_COMMAND:
152 new_layout = SRC_DISASSEM_COMMAND;
153 break;
154
155 case SRC_DISASSEM_COMMAND:
156 new_layout = DISASSEM_DATA_COMMAND;
157 break;
158
159 case DISASSEM_DATA_COMMAND:
160 new_layout = SRC_DATA_COMMAND;
161 break;
162
163 default:
164 new_layout = SRC_COMMAND;
165 break;
166 }
080ce8c0 167 tui_set_layout (new_layout, regs_type);
377c38ea
SC
168 }
169 return 0;
170}
171
6ba6ffa2
SC
172/* TUI readline command.
173 Delete the second TUI window to only show one. */
377c38ea 174static int
88fa91b4 175tui_rl_delete_other_windows (int notused1, int notused2)
377c38ea
SC
176{
177 if (!tui_active)
88fa91b4 178 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
377c38ea
SC
179
180 if (tui_active)
181 {
2a8854a7
AC
182 enum tui_layout_type new_layout;
183 enum tui_register_display_type regs_type = TUI_UNDEFINED_REGS;
377c38ea 184
dd1abb8c 185 new_layout = tui_current_layout ();
377c38ea
SC
186
187 /* Kill one window. */
188 switch (new_layout)
189 {
190 case SRC_COMMAND:
191 case SRC_DATA_COMMAND:
192 case SRC_DISASSEM_COMMAND:
193 default:
194 new_layout = SRC_COMMAND;
195 break;
196
197 case DISASSEM_COMMAND:
198 case DISASSEM_DATA_COMMAND:
199 new_layout = DISASSEM_COMMAND;
200 break;
201 }
080ce8c0 202 tui_set_layout (new_layout, regs_type);
377c38ea
SC
203 }
204 return 0;
205}
206
3fc14bdb
SC
207/* TUI readline command.
208 Switch the active window to give the focus to a next window. */
209static int
210tui_rl_other_window (int count, int key)
211{
6ba8e26f 212 struct tui_win_info * win_info;
3fc14bdb
SC
213
214 if (!tui_active)
215 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
216
6ba8e26f
AC
217 win_info = tui_next_win (tui_win_with_focus ());
218 if (win_info)
3fc14bdb 219 {
6ba8e26f 220 tui_set_win_focus_to (win_info);
6d012f14 221 if (TUI_DATA_WIN && TUI_DATA_WIN->generic.is_visible)
edae1ccf 222 tui_refresh_data_win ();
6ba8e26f 223 keypad (TUI_CMD_WIN->generic.handle, (win_info != TUI_CMD_WIN));
3fc14bdb
SC
224 }
225 return 0;
226}
227
e09d2eba
SC
228/* TUI readline command.
229 Execute the gdb command bound to the specified key. */
230static int
231tui_rl_command_key (int count, int key)
232{
233 int i;
234
235 reinitialize_more_filter ();
236 for (i = 0; tui_commands[i].cmd; i++)
237 {
238 if (tui_commands[i].key == key)
239 {
240 /* Must save the command because it can be modified
241 by execute_command. */
242 char* cmd = alloca (strlen (tui_commands[i].cmd) + 1);
243 strcpy (cmd, tui_commands[i].cmd);
244 execute_command (cmd, TRUE);
245 return 0;
246 }
247 }
248 return 0;
249}
250
251/* TUI readline command.
252 Temporarily leave the TUI SingleKey mode to allow editing
253 a gdb command with the normal readline. Once the command
254 is executed, the TUI SingleKey mode is installed back. */
255static int
256tui_rl_command_mode (int count, int key)
257{
6d012f14 258 tui_set_key_mode (TUI_ONE_COMMAND_MODE);
e09d2eba
SC
259 return rl_insert (count, key);
260}
261
262/* TUI readline command.
263 Switch between TUI SingleKey mode and gdb readline editing. */
264static int
88fa91b4 265tui_rl_next_keymap (int notused1, int notused2)
e09d2eba 266{
3fc14bdb
SC
267 if (!tui_active)
268 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
269
6d012f14
AC
270 tui_set_key_mode (tui_current_key_mode == TUI_COMMAND_MODE
271 ? TUI_SINGLE_KEY_MODE : TUI_COMMAND_MODE);
e09d2eba
SC
272 return 0;
273}
274
275/* Readline hook to redisplay ourself the gdb prompt.
276 In the SingleKey mode, the prompt is not printed so that
277 the command window is cleaner. It will be displayed if
278 we temporarily leave the SingleKey mode. */
279static int
d02c80cd 280tui_rl_startup_hook (void)
e09d2eba 281{
8cee930b 282 rl_already_prompted = 1;
6d012f14
AC
283 if (tui_current_key_mode != TUI_COMMAND_MODE)
284 tui_set_key_mode (TUI_SINGLE_KEY_MODE);
8cee930b 285 tui_redisplay_readline ();
e09d2eba
SC
286 return 0;
287}
288
289/* Change the TUI key mode by installing the appropriate readline keymap. */
290void
291tui_set_key_mode (enum tui_key_mode mode)
292{
293 tui_current_key_mode = mode;
6d012f14 294 rl_set_keymap (mode == TUI_SINGLE_KEY_MODE
e09d2eba 295 ? tui_keymap : tui_readline_standard_keymap);
47d3492a 296 tui_show_locator_content ();
e09d2eba
SC
297}
298
39db33d6
SC
299/* Initialize readline and configure the keymap for the switching
300 key shortcut. */
c906108c 301void
d02c80cd 302tui_initialize_readline (void)
c906108c 303{
e09d2eba
SC
304 int i;
305 Keymap tui_ctlx_keymap;
306
39db33d6 307 rl_initialize ();
c906108c 308
6ba6ffa2 309 rl_add_defun ("tui-switch-mode", tui_rl_switch_mode, -1);
e09d2eba
SC
310 rl_add_defun ("gdb-command", tui_rl_command_key, -1);
311 rl_add_defun ("next-keymap", tui_rl_next_keymap, -1);
312
313 tui_keymap = rl_make_bare_keymap ();
314 tui_ctlx_keymap = rl_make_bare_keymap ();
315 tui_readline_standard_keymap = rl_get_keymap ();
316
317 for (i = 0; tui_commands[i].cmd; i++)
318 rl_bind_key_in_map (tui_commands[i].key, tui_rl_command_key, tui_keymap);
319
320 rl_generic_bind (ISKMAP, "\\C-x", (char*) tui_ctlx_keymap, tui_keymap);
321
322 /* Bind all other keys to tui_rl_command_mode so that we switch
323 temporarily from SingleKey mode and can enter a gdb command. */
e3da6fc5 324 for (i = ' '; i < 0x7f; i++)
e09d2eba
SC
325 {
326 int j;
327
328 for (j = 0; tui_commands[j].cmd; j++)
329 if (tui_commands[j].key == i)
330 break;
331
332 if (tui_commands[j].cmd)
333 continue;
334
335 rl_bind_key_in_map (i, tui_rl_command_mode, tui_keymap);
336 }
337
6ba6ffa2 338 rl_bind_key_in_map ('a', tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 339 rl_bind_key_in_map ('a', tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 340 rl_bind_key_in_map ('A', tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 341 rl_bind_key_in_map ('A', tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 342 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 343 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 344 rl_bind_key_in_map ('1', tui_rl_delete_other_windows, emacs_ctlx_keymap);
e09d2eba 345 rl_bind_key_in_map ('1', tui_rl_delete_other_windows, tui_ctlx_keymap);
6ba6ffa2 346 rl_bind_key_in_map ('2', tui_rl_change_windows, emacs_ctlx_keymap);
e09d2eba 347 rl_bind_key_in_map ('2', tui_rl_change_windows, tui_ctlx_keymap);
3fc14bdb
SC
348 rl_bind_key_in_map ('o', tui_rl_other_window, emacs_ctlx_keymap);
349 rl_bind_key_in_map ('o', tui_rl_other_window, tui_ctlx_keymap);
e09d2eba
SC
350 rl_bind_key_in_map ('q', tui_rl_next_keymap, tui_keymap);
351 rl_bind_key_in_map ('s', tui_rl_next_keymap, emacs_ctlx_keymap);
352 rl_bind_key_in_map ('s', tui_rl_next_keymap, tui_ctlx_keymap);
39db33d6 353}
c906108c 354
39db33d6
SC
355/* Enter in the tui mode (curses).
356 When in normal mode, it installs the tui hooks in gdb, redirects
357 the gdb output, configures the readline to work in tui mode.
358 When in curses mode, it does nothing. */
c906108c 359void
39db33d6 360tui_enable (void)
c906108c 361{
39db33d6
SC
362 if (tui_active)
363 return;
364
365 /* To avoid to initialize curses when gdb starts, there is a defered
366 curses initialization. This initialization is made only once
367 and the first time the curses mode is entered. */
368 if (tui_finish_init)
c906108c 369 {
39db33d6
SC
370 WINDOW *w;
371
372 w = initscr ();
373
377c38ea
SC
374 cbreak ();
375 noecho ();
39db33d6
SC
376 /*timeout (1);*/
377 nodelay(w, FALSE);
378 nl();
379 keypad (w, TRUE);
380 rl_initialize ();
dd1abb8c
AC
381 tui_set_term_height_to (LINES);
382 tui_set_term_width_to (COLS);
39db33d6
SC
383 def_prog_mode ();
384
47d3492a 385 tui_show_frame_info (0);
080ce8c0 386 tui_set_layout (SRC_COMMAND, TUI_UNDEFINED_REGS);
6d012f14
AC
387 tui_set_win_focus_to (TUI_SRC_WIN);
388 keypad (TUI_CMD_WIN->generic.handle, TRUE);
389 wrefresh (TUI_CMD_WIN->generic.handle);
39db33d6 390 tui_finish_init = 0;
c906108c 391 }
39db33d6
SC
392 else
393 {
394 /* Save the current gdb setting of the terminal.
395 Curses will restore this state when endwin() is called. */
396 def_shell_mode ();
397 clearok (stdscr, TRUE);
398 }
c906108c 399
39db33d6
SC
400 /* Install the TUI specific hooks. */
401 tui_install_hooks ();
e09d2eba 402 rl_startup_hook = tui_rl_startup_hook;
c906108c 403
377c38ea
SC
404 tui_update_variables ();
405
39db33d6 406 tui_setup_io (1);
c906108c 407
39db33d6 408 tui_active = 1;
6e7f8b9c 409 if (deprecated_selected_frame)
47d3492a 410 tui_show_frame_info (deprecated_selected_frame);
297d1607 411
e3da6fc5
SC
412 /* Restore TUI keymap. */
413 tui_set_key_mode (tui_current_key_mode);
a21fcd8f 414 tui_refresh_all_win ();
1533ce99
SC
415
416 /* Update gdb's knowledge of its terminal. */
417 target_terminal_save_ours ();
3e752b04 418 tui_update_gdb_sizes ();
39db33d6
SC
419}
420
421/* Leave the tui mode.
422 Remove the tui hooks and configure the gdb output and readline
423 back to their original state. The curses mode is left so that
424 the terminal setting is restored to the point when we entered. */
c906108c 425void
39db33d6 426tui_disable (void)
c906108c 427{
39db33d6
SC
428 if (!tui_active)
429 return;
c906108c 430
e3da6fc5
SC
431 /* Restore initial readline keymap. */
432 rl_set_keymap (tui_readline_standard_keymap);
433
39db33d6
SC
434 /* Remove TUI hooks. */
435 tui_remove_hooks ();
e09d2eba
SC
436 rl_startup_hook = 0;
437 rl_already_prompted = 0;
c906108c 438
39db33d6
SC
439 /* Leave curses and restore previous gdb terminal setting. */
440 endwin ();
c906108c 441
39db33d6
SC
442 /* gdb terminal has changed, update gdb internal copy of it
443 so that terminal management with the inferior works. */
444 tui_setup_io (0);
c906108c 445
1533ce99
SC
446 /* Update gdb's knowledge of its terminal. */
447 target_terminal_save_ours ();
448
39db33d6 449 tui_active = 0;
3e752b04 450 tui_update_gdb_sizes ();
39db33d6 451}
c906108c 452
c906108c 453void
6ba8e26f 454strcat_to_buf (char *buf, int buflen, const char *item_to_add)
c906108c 455{
6ba8e26f 456 if (item_to_add != (char *) NULL && buf != (char *) NULL)
c906108c 457 {
6ba8e26f
AC
458 if ((strlen (buf) + strlen (item_to_add)) <= buflen)
459 strcat (buf, item_to_add);
c906108c 460 else
6ba8e26f 461 strncat (buf, item_to_add, (buflen - strlen (buf)));
c906108c 462 }
c906108c
SS
463}
464
39db33d6
SC
465#if 0
466/* Solaris <sys/termios.h> defines CTRL. */
467#ifndef CTRL
468#define CTRL(x) (x & ~0140)
469#endif
c906108c 470
39db33d6
SC
471#define FILEDES 2
472#define CHK(val, dft) (val<=0 ? dft : val)
c906108c
SS
473
474static void
6ba8e26f 475tui_reset (void)
c906108c
SS
476{
477 struct termio mode;
478
479 /*
c5aa993b
JM
480 ** reset the teletype mode bits to a sensible state.
481 ** Copied tset.c
482 */
c906108c
SS
483#if ! defined (USG) && defined (TIOCGETC)
484 struct tchars tbuf;
485#endif /* !USG && TIOCGETC */
486#ifdef UCB_NTTY
487 struct ltchars ltc;
488
489 if (ldisc == NTTYDISC)
490 {
491 ioctl (FILEDES, TIOCGLTC, &ltc);
492 ltc.t_suspc = CHK (ltc.t_suspc, CTRL ('Z'));
493 ltc.t_dsuspc = CHK (ltc.t_dsuspc, CTRL ('Y'));
494 ltc.t_rprntc = CHK (ltc.t_rprntc, CTRL ('R'));
495 ltc.t_flushc = CHK (ltc.t_flushc, CTRL ('O'));
496 ltc.t_werasc = CHK (ltc.t_werasc, CTRL ('W'));
497 ltc.t_lnextc = CHK (ltc.t_lnextc, CTRL ('V'));
498 ioctl (FILEDES, TIOCSLTC, &ltc);
499 }
500#endif /* UCB_NTTY */
501#ifndef USG
502#ifdef TIOCGETC
503 ioctl (FILEDES, TIOCGETC, &tbuf);
504 tbuf.t_intrc = CHK (tbuf.t_intrc, CTRL ('?'));
505 tbuf.t_quitc = CHK (tbuf.t_quitc, CTRL ('\\'));
506 tbuf.t_startc = CHK (tbuf.t_startc, CTRL ('Q'));
507 tbuf.t_stopc = CHK (tbuf.t_stopc, CTRL ('S'));
508 tbuf.t_eofc = CHK (tbuf.t_eofc, CTRL ('D'));
509 /* brkc is left alone */
510 ioctl (FILEDES, TIOCSETC, &tbuf);
511#endif /* TIOCGETC */
512 mode.sg_flags &= ~(RAW
513#ifdef CBREAK
514 | CBREAK
515#endif /* CBREAK */
516 | VTDELAY | ALLDELAY);
517 mode.sg_flags |= XTABS | ECHO | CRMOD | ANYP;
c5aa993b 518#else /*USG */
c906108c
SS
519 ioctl (FILEDES, TCGETA, &mode);
520 mode.c_cc[VINTR] = CHK (mode.c_cc[VINTR], CTRL ('?'));
521 mode.c_cc[VQUIT] = CHK (mode.c_cc[VQUIT], CTRL ('\\'));
522 mode.c_cc[VEOF] = CHK (mode.c_cc[VEOF], CTRL ('D'));
523
524 mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | INLCR | IGNCR | IUCLC | IXOFF);
525 mode.c_iflag |= (BRKINT | ISTRIP | ICRNL | IXON);
526 mode.c_oflag &= ~(OLCUC | OCRNL | ONOCR | ONLRET | OFILL | OFDEL |
527 NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY);
528 mode.c_oflag |= (OPOST | ONLCR);
529 mode.c_cflag &= ~(CSIZE | PARODD | CLOCAL);
530#ifndef hp9000s800
531 mode.c_cflag |= (CS8 | CREAD);
c5aa993b 532#else /*hp9000s800 */
c906108c
SS
533 mode.c_cflag |= (CS8 | CSTOPB | CREAD);
534#endif /* hp9000s800 */
535 mode.c_lflag &= ~(XCASE | ECHONL | NOFLSH);
536 mode.c_lflag |= (ISIG | ICANON | ECHO | ECHOK);
537 ioctl (FILEDES, TCSETAW, &mode);
538#endif /* USG */
539
540 return;
6ba8e26f 541}
39db33d6
SC
542#endif
543
c6f60bcd
SC
544void
545tui_show_source (const char *file, int line)
546{
52575520 547 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
c6f60bcd 548 /* make sure that the source window is displayed */
080ce8c0 549 tui_add_win_to_layout (SRC_WIN);
c6f60bcd 550
f80bda8e 551 tui_update_source_windows_with_line (cursal.symtab, line);
47d3492a 552 tui_update_locator_filename (file);
c6f60bcd 553}
1403b519
SC
554
555void
556tui_show_assembly (CORE_ADDR addr)
557{
080ce8c0 558 tui_add_win_to_layout (DISASSEM_WIN);
f80bda8e 559 tui_update_source_windows_with_addr (addr);
1403b519
SC
560}
561
562int
22940a24 563tui_is_window_visible (enum tui_win_type type)
1403b519 564{
021e7609 565 if (tui_active == 0)
1403b519
SC
566 return 0;
567
6d012f14 568 if (tui_win_list[type] == 0)
1403b519
SC
569 return 0;
570
6d012f14 571 return tui_win_list[type]->generic.is_visible;
1403b519
SC
572}
573
574int
575tui_get_command_dimension (int *width, int *height)
576{
6d012f14 577 if (!tui_active || (TUI_CMD_WIN == NULL))
1403b519
SC
578 {
579 return 0;
580 }
581
6d012f14
AC
582 *width = TUI_CMD_WIN->generic.width;
583 *height = TUI_CMD_WIN->generic.height;
1403b519
SC
584 return 1;
585}
This page took 0.495753 seconds and 4 git commands to generate.