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