]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/tui/tui-io.c
Replace most calls to help_list and cmd_show_list
[thirdparty/binutils-gdb.git] / gdb / tui / tui-io.c
1 /* TUI support I/O functions.
2
3 Copyright (C) 1998-2020 Free Software Foundation, Inc.
4
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22 #include "defs.h"
23 #include "target.h"
24 #include "gdbsupport/event-loop.h"
25 #include "event-top.h"
26 #include "command.h"
27 #include "top.h"
28 #include "tui/tui.h"
29 #include "tui/tui-data.h"
30 #include "tui/tui-io.h"
31 #include "tui/tui-command.h"
32 #include "tui/tui-win.h"
33 #include "tui/tui-wingeneral.h"
34 #include "tui/tui-file.h"
35 #include "tui/tui-out.h"
36 #include "ui-out.h"
37 #include "cli-out.h"
38 #include <fcntl.h>
39 #include <signal.h>
40 #ifdef __MINGW32__
41 #include <windows.h>
42 #endif
43 #include "gdbsupport/filestuff.h"
44 #include "completer.h"
45 #include "gdb_curses.h"
46 #include <map>
47
48 /* This redefines CTRL if it is not already defined, so it must come
49 after terminal state releated include files like <term.h> and
50 "gdb_curses.h". */
51 #include "readline/readline.h"
52
53 #ifdef __MINGW32__
54 static SHORT ncurses_norm_attr;
55 #endif
56
57 static int tui_getc (FILE *fp);
58
59 static int
60 key_is_start_sequence (int ch)
61 {
62 return (ch == 27);
63 }
64
65 /* Use definition from readline 4.3. */
66 #undef CTRL_CHAR
67 #define CTRL_CHAR(c) \
68 ((c) < control_character_threshold && (((c) & 0x80) == 0))
69
70 /* This file controls the IO interactions between gdb and curses.
71 When the TUI is enabled, gdb has two modes a curses and a standard
72 mode.
73
74 In curses mode, the gdb outputs are made in a curses command
75 window. For this, the gdb_stdout and gdb_stderr are redirected to
76 the specific ui_file implemented by TUI. The output is handled by
77 tui_puts(). The input is also controlled by curses with
78 tui_getc(). The readline library uses this function to get its
79 input. Several readline hooks are installed to redirect readline
80 output to the TUI (see also the note below).
81
82 In normal mode, the gdb outputs are restored to their origin, that
83 is as if TUI is not used. Readline also uses its original getc()
84 function with stdin.
85
86 Note SCz/2001-07-21: the current readline is not clean in its
87 management of the output. Even if we install a redisplay handler,
88 it sometimes writes on a stdout file. It is important to redirect
89 every output produced by readline, otherwise the curses window will
90 be garbled. This is implemented with a pipe that TUI reads and
91 readline writes to. A gdb input handler is created so that reading
92 the pipe is handled automatically. This will probably not work on
93 non-Unix platforms. The best fix is to make readline clean enough
94 so that is never write on stdout.
95
96 Note SCz/2002-09-01: we now use more readline hooks and it seems
97 that with them we don't need the pipe anymore (verified by creating
98 the pipe and closing its end so that write causes a SIGPIPE). The
99 old pipe code is still there and can be conditionally removed by
100 #undef TUI_USE_PIPE_FOR_READLINE. */
101
102 /* For gdb 5.3, prefer to continue the pipe hack as a backup wheel. */
103 #ifdef HAVE_PIPE
104 #define TUI_USE_PIPE_FOR_READLINE
105 #endif
106 /* #undef TUI_USE_PIPE_FOR_READLINE */
107
108 /* TUI output files. */
109 static struct ui_file *tui_stdout;
110 static struct ui_file *tui_stderr;
111 struct ui_out *tui_out;
112
113 /* GDB output files in non-curses mode. */
114 static struct ui_file *tui_old_stdout;
115 static struct ui_file *tui_old_stderr;
116 cli_ui_out *tui_old_uiout;
117
118 /* Readline previous hooks. */
119 static rl_getc_func_t *tui_old_rl_getc_function;
120 static rl_voidfunc_t *tui_old_rl_redisplay_function;
121 static rl_vintfunc_t *tui_old_rl_prep_terminal;
122 static rl_voidfunc_t *tui_old_rl_deprep_terminal;
123 static rl_compdisp_func_t *tui_old_rl_display_matches_hook;
124 static int tui_old_rl_echoing_p;
125
126 /* Readline output stream.
127 Should be removed when readline is clean. */
128 static FILE *tui_rl_outstream;
129 static FILE *tui_old_rl_outstream;
130 #ifdef TUI_USE_PIPE_FOR_READLINE
131 static int tui_readline_pipe[2];
132 #endif
133
134 /* Print a character in the curses command window. The output is
135 buffered. It is up to the caller to refresh the screen if
136 necessary. */
137
138 static void
139 do_tui_putc (WINDOW *w, char c)
140 {
141 /* Expand TABs, since ncurses on MS-Windows doesn't. */
142 if (c == '\t')
143 {
144 int col;
145
146 col = getcurx (w);
147 do
148 {
149 waddch (w, ' ');
150 col++;
151 }
152 while ((col % 8) != 0);
153 }
154 else
155 waddch (w, c);
156 }
157
158 /* Update the cached value of the command window's start line based on
159 the window's current Y coordinate. */
160
161 static void
162 update_cmdwin_start_line ()
163 {
164 TUI_CMD_WIN->start_line = getcury (TUI_CMD_WIN->handle.get ());
165 }
166
167 /* Print a character in the curses command window. The output is
168 buffered. It is up to the caller to refresh the screen if
169 necessary. */
170
171 static void
172 tui_putc (char c)
173 {
174 do_tui_putc (TUI_CMD_WIN->handle.get (), c);
175 update_cmdwin_start_line ();
176 }
177
178 /* This maps colors to their corresponding color index. */
179
180 static std::map<ui_file_style::color, int> color_map;
181
182 /* This holds a pair of colors and is used to track the mapping
183 between a color pair index and the actual colors. */
184
185 struct color_pair
186 {
187 int fg;
188 int bg;
189
190 bool operator< (const color_pair &o) const
191 {
192 return fg < o.fg || (fg == o.fg && bg < o.bg);
193 }
194 };
195
196 /* This maps pairs of colors to their corresponding color pair
197 index. */
198
199 static std::map<color_pair, int> color_pair_map;
200
201 /* This is indexed by ANSI color offset from the base color, and holds
202 the corresponding curses color constant. */
203
204 static const int curses_colors[] = {
205 COLOR_BLACK,
206 COLOR_RED,
207 COLOR_GREEN,
208 COLOR_YELLOW,
209 COLOR_BLUE,
210 COLOR_MAGENTA,
211 COLOR_CYAN,
212 COLOR_WHITE
213 };
214
215 /* Given a color, find its index. */
216
217 static bool
218 get_color (const ui_file_style::color &color, int *result)
219 {
220 if (color.is_none ())
221 *result = -1;
222 else if (color.is_basic ())
223 *result = curses_colors[color.get_value ()];
224 else
225 {
226 auto it = color_map.find (color);
227 if (it == color_map.end ())
228 {
229 /* The first 8 colors are standard. */
230 int next = color_map.size () + 8;
231 if (next >= COLORS)
232 return false;
233 uint8_t rgb[3];
234 color.get_rgb (rgb);
235 /* We store RGB as 0..255, but curses wants 0..1000. */
236 if (init_color (next, rgb[0] * 1000 / 255, rgb[1] * 1000 / 255,
237 rgb[2] * 1000 / 255) == ERR)
238 return false;
239 color_map[color] = next;
240 *result = next;
241 }
242 else
243 *result = it->second;
244 }
245 return true;
246 }
247
248 /* The most recently emitted color pair. */
249
250 static int last_color_pair = -1;
251
252 /* The most recently applied style. */
253
254 static ui_file_style last_style;
255
256 /* If true, we're highlighting the current source line in reverse
257 video mode. */
258 static bool reverse_mode_p = false;
259
260 /* The background/foreground colors before we entered reverse
261 mode. */
262 static ui_file_style::color reverse_save_bg (ui_file_style::NONE);
263 static ui_file_style::color reverse_save_fg (ui_file_style::NONE);
264
265 /* Given two colors, return their color pair index; making a new one
266 if necessary. */
267
268 static int
269 get_color_pair (int fg, int bg)
270 {
271 color_pair c = { fg, bg };
272 auto it = color_pair_map.find (c);
273 if (it == color_pair_map.end ())
274 {
275 /* Color pair 0 is our default color, so new colors start at
276 1. */
277 int next = color_pair_map.size () + 1;
278 /* Curses has a limited number of available color pairs. Fall
279 back to the default if we've used too many. */
280 if (next >= COLOR_PAIRS)
281 return 0;
282 init_pair (next, fg, bg);
283 color_pair_map[c] = next;
284 return next;
285 }
286 return it->second;
287 }
288
289 /* Apply STYLE to W. */
290
291 void
292 tui_apply_style (WINDOW *w, ui_file_style style)
293 {
294 /* Reset. */
295 wattron (w, A_NORMAL);
296 wattroff (w, A_BOLD);
297 wattroff (w, A_DIM);
298 wattroff (w, A_REVERSE);
299 if (last_color_pair != -1)
300 wattroff (w, COLOR_PAIR (last_color_pair));
301 wattron (w, COLOR_PAIR (0));
302
303 const ui_file_style::color &fg = style.get_foreground ();
304 const ui_file_style::color &bg = style.get_background ();
305 if (!fg.is_none () || !bg.is_none ())
306 {
307 int fgi, bgi;
308 if (get_color (fg, &fgi) && get_color (bg, &bgi))
309 {
310 #ifdef __MINGW32__
311 /* MS-Windows port of ncurses doesn't support implicit
312 default foreground and background colors, so we must
313 specify them explicitly when needed, using the colors we
314 saw at startup. */
315 if (fgi == -1)
316 fgi = ncurses_norm_attr & 15;
317 if (bgi == -1)
318 bgi = (ncurses_norm_attr >> 4) & 15;
319 #endif
320 int pair = get_color_pair (fgi, bgi);
321 if (last_color_pair != -1)
322 wattroff (w, COLOR_PAIR (last_color_pair));
323 wattron (w, COLOR_PAIR (pair));
324 last_color_pair = pair;
325 }
326 }
327
328 switch (style.get_intensity ())
329 {
330 case ui_file_style::NORMAL:
331 break;
332
333 case ui_file_style::BOLD:
334 wattron (w, A_BOLD);
335 break;
336
337 case ui_file_style::DIM:
338 wattron (w, A_DIM);
339 break;
340
341 default:
342 gdb_assert_not_reached ("invalid intensity");
343 }
344
345 if (style.is_reverse ())
346 wattron (w, A_REVERSE);
347
348 last_style = style;
349 }
350
351 /* Apply an ANSI escape sequence from BUF to W. BUF must start with
352 the ESC character. If BUF does not start with an ANSI escape,
353 return 0. Otherwise, apply the sequence if it is recognized, or
354 simply ignore it if not. In this case, the number of bytes read
355 from BUF is returned. */
356
357 static size_t
358 apply_ansi_escape (WINDOW *w, const char *buf)
359 {
360 ui_file_style style = last_style;
361 size_t n_read;
362
363 if (!style.parse (buf, &n_read))
364 return n_read;
365
366 if (reverse_mode_p)
367 {
368 /* We want to reverse _only_ the default foreground/background
369 colors. If the foreground color is not the default (because
370 the text was styled), we want to leave it as is. If e.g.,
371 the terminal is fg=BLACK, and bg=WHITE, and the style wants
372 to print text in RED, we want to reverse the background color
373 (print in BLACK), but still print the text in RED. To do
374 that, we enable the A_REVERSE attribute, and re-reverse the
375 parsed-style's fb/bg colors.
376
377 Notes on the approach:
378
379 - there's no portable way to know which colors the default
380 fb/bg colors map to.
381
382 - this approach does the right thing even if you change the
383 terminal colors while GDB is running -- the reversed
384 colors automatically adapt.
385 */
386 if (!style.is_default ())
387 {
388 ui_file_style::color bg = style.get_background ();
389 ui_file_style::color fg = style.get_foreground ();
390 style.set_fg (bg);
391 style.set_bg (fg);
392 }
393
394 /* Enable A_REVERSE. */
395 style.set_reverse (true);
396 }
397
398 tui_apply_style (w, style);
399 return n_read;
400 }
401
402 /* See tui.io.h. */
403
404 void
405 tui_set_reverse_mode (WINDOW *w, bool reverse)
406 {
407 ui_file_style style = last_style;
408
409 reverse_mode_p = reverse;
410 style.set_reverse (reverse);
411
412 if (reverse)
413 {
414 reverse_save_bg = style.get_background ();
415 reverse_save_fg = style.get_foreground ();
416 }
417 else
418 {
419 style.set_bg (reverse_save_bg);
420 style.set_fg (reverse_save_fg);
421 }
422
423 tui_apply_style (w, style);
424 }
425
426 /* Print LENGTH characters from the buffer pointed to by BUF to the
427 curses command window. The output is buffered. It is up to the
428 caller to refresh the screen if necessary. */
429
430 void
431 tui_write (const char *buf, size_t length)
432 {
433 /* We need this to be \0-terminated for the regexp matching. */
434 std::string copy (buf, length);
435 tui_puts (copy.c_str ());
436 }
437
438 static void
439 tui_puts_internal (WINDOW *w, const char *string, int *height)
440 {
441 char c;
442 int prev_col = 0;
443 bool saw_nl = false;
444
445 while ((c = *string++) != 0)
446 {
447 if (c == '\n')
448 saw_nl = true;
449
450 if (c == '\1' || c == '\2')
451 {
452 /* Ignore these, they are readline escape-marking
453 sequences. */
454 }
455 else
456 {
457 if (c == '\033')
458 {
459 size_t bytes_read = apply_ansi_escape (w, string - 1);
460 if (bytes_read > 0)
461 {
462 string = string + bytes_read - 1;
463 continue;
464 }
465 }
466 do_tui_putc (w, c);
467
468 if (height != nullptr)
469 {
470 int col = getcurx (w);
471 if (col <= prev_col)
472 ++*height;
473 prev_col = col;
474 }
475 }
476 }
477 if (TUI_CMD_WIN != nullptr && w == TUI_CMD_WIN->handle.get ())
478 update_cmdwin_start_line ();
479 if (saw_nl)
480 wrefresh (w);
481 }
482
483 /* Print a string in the curses command window. The output is
484 buffered. It is up to the caller to refresh the screen if
485 necessary. */
486
487 void
488 tui_puts (const char *string, WINDOW *w)
489 {
490 if (w == nullptr)
491 w = TUI_CMD_WIN->handle.get ();
492 tui_puts_internal (w, string, nullptr);
493 }
494
495 /* Readline callback.
496 Redisplay the command line with its prompt after readline has
497 changed the edited text. */
498 void
499 tui_redisplay_readline (void)
500 {
501 int prev_col;
502 int height;
503 int col;
504 int c_pos;
505 int c_line;
506 int in;
507 WINDOW *w;
508 const char *prompt;
509 int start_line;
510
511 /* Detect when we temporarily left SingleKey and now the readline
512 edit buffer is empty, automatically restore the SingleKey
513 mode. The restore must only be done if the command has finished.
514 The command could call prompt_for_continue and we must not
515 restore SingleKey so that the prompt and normal keymap are used. */
516 if (tui_current_key_mode == TUI_ONE_COMMAND_MODE && rl_end == 0
517 && !gdb_in_secondary_prompt_p (current_ui))
518 tui_set_key_mode (TUI_SINGLE_KEY_MODE);
519
520 if (tui_current_key_mode == TUI_SINGLE_KEY_MODE)
521 prompt = "";
522 else
523 prompt = rl_display_prompt;
524
525 c_pos = -1;
526 c_line = -1;
527 w = TUI_CMD_WIN->handle.get ();
528 start_line = TUI_CMD_WIN->start_line;
529 wmove (w, start_line, 0);
530 prev_col = 0;
531 height = 1;
532 if (prompt != nullptr)
533 tui_puts_internal (w, prompt, &height);
534
535 prev_col = getcurx (w);
536 for (in = 0; in <= rl_end; in++)
537 {
538 unsigned char c;
539
540 if (in == rl_point)
541 {
542 getyx (w, c_line, c_pos);
543 }
544
545 if (in == rl_end)
546 break;
547
548 c = (unsigned char) rl_line_buffer[in];
549 if (CTRL_CHAR (c) || c == RUBOUT)
550 {
551 waddch (w, '^');
552 waddch (w, CTRL_CHAR (c) ? UNCTRL (c) : '?');
553 }
554 else if (c == '\t')
555 {
556 /* Expand TABs, since ncurses on MS-Windows doesn't. */
557 col = getcurx (w);
558 do
559 {
560 waddch (w, ' ');
561 col++;
562 } while ((col % 8) != 0);
563 }
564 else
565 {
566 waddch (w, c);
567 }
568 if (c == '\n')
569 TUI_CMD_WIN->start_line = getcury (w);
570 col = getcurx (w);
571 if (col < prev_col)
572 height++;
573 prev_col = col;
574 }
575 wclrtobot (w);
576 TUI_CMD_WIN->start_line = getcury (w);
577 if (c_line >= 0)
578 wmove (w, c_line, c_pos);
579 TUI_CMD_WIN->start_line -= height - 1;
580
581 wrefresh (w);
582 fflush(stdout);
583 }
584
585 /* Readline callback to prepare the terminal. It is called once each
586 time we enter readline. Terminal is already setup in curses
587 mode. */
588 static void
589 tui_prep_terminal (int notused1)
590 {
591 }
592
593 /* Readline callback to restore the terminal. It is called once each
594 time we leave readline. There is nothing to do in curses mode. */
595 static void
596 tui_deprep_terminal (void)
597 {
598 }
599
600 #ifdef TUI_USE_PIPE_FOR_READLINE
601 /* Read readline output pipe and feed the command window with it.
602 Should be removed when readline is clean. */
603 static void
604 tui_readline_output (int error, gdb_client_data data)
605 {
606 int size;
607 char buf[256];
608
609 size = read (tui_readline_pipe[0], buf, sizeof (buf) - 1);
610 if (size > 0 && tui_active)
611 {
612 buf[size] = 0;
613 tui_puts (buf);
614 }
615 }
616 #endif
617
618 /* TUI version of displayer.crlf. */
619
620 static void
621 tui_mld_crlf (const struct match_list_displayer *displayer)
622 {
623 tui_putc ('\n');
624 }
625
626 /* TUI version of displayer.putch. */
627
628 static void
629 tui_mld_putch (const struct match_list_displayer *displayer, int ch)
630 {
631 tui_putc (ch);
632 }
633
634 /* TUI version of displayer.puts. */
635
636 static void
637 tui_mld_puts (const struct match_list_displayer *displayer, const char *s)
638 {
639 tui_puts (s);
640 }
641
642 /* TUI version of displayer.flush. */
643
644 static void
645 tui_mld_flush (const struct match_list_displayer *displayer)
646 {
647 wrefresh (TUI_CMD_WIN->handle.get ());
648 }
649
650 /* TUI version of displayer.erase_entire_line. */
651
652 static void
653 tui_mld_erase_entire_line (const struct match_list_displayer *displayer)
654 {
655 WINDOW *w = TUI_CMD_WIN->handle.get ();
656 int cur_y = getcury (w);
657
658 wmove (w, cur_y, 0);
659 wclrtoeol (w);
660 wmove (w, cur_y, 0);
661 }
662
663 /* TUI version of displayer.beep. */
664
665 static void
666 tui_mld_beep (const struct match_list_displayer *displayer)
667 {
668 beep ();
669 }
670
671 /* A wrapper for wgetch that enters nonl mode. We We normally want
672 curses' "nl" mode, but when reading from the user, we'd like to
673 differentiate between C-j and C-m, because some users bind these
674 keys differently in their .inputrc. So, put curses into nonl mode
675 just when reading from the user. See PR tui/20819. */
676
677 static int
678 gdb_wgetch (WINDOW *win)
679 {
680 nonl ();
681 int r = wgetch (win);
682 nl ();
683 return r;
684 }
685
686 /* Helper function for tui_mld_read_key.
687 This temporarily replaces tui_getc for use during tab-completion
688 match list display. */
689
690 static int
691 tui_mld_getc (FILE *fp)
692 {
693 WINDOW *w = TUI_CMD_WIN->handle.get ();
694 int c = gdb_wgetch (w);
695
696 return c;
697 }
698
699 /* TUI version of displayer.read_key. */
700
701 static int
702 tui_mld_read_key (const struct match_list_displayer *displayer)
703 {
704 rl_getc_func_t *prev = rl_getc_function;
705 int c;
706
707 /* We can't use tui_getc as we need NEWLINE to not get emitted. */
708 rl_getc_function = tui_mld_getc;
709 c = rl_read_key ();
710 rl_getc_function = prev;
711 return c;
712 }
713
714 /* TUI version of rl_completion_display_matches_hook.
715 See gdb_display_match_list for a description of the arguments. */
716
717 static void
718 tui_rl_display_match_list (char **matches, int len, int max)
719 {
720 struct match_list_displayer displayer;
721
722 rl_get_screen_size (&displayer.height, &displayer.width);
723 displayer.crlf = tui_mld_crlf;
724 displayer.putch = tui_mld_putch;
725 displayer.puts = tui_mld_puts;
726 displayer.flush = tui_mld_flush;
727 displayer.erase_entire_line = tui_mld_erase_entire_line;
728 displayer.beep = tui_mld_beep;
729 displayer.read_key = tui_mld_read_key;
730
731 gdb_display_match_list (matches, len, max, &displayer);
732 }
733
734 /* Setup the IO for curses or non-curses mode.
735 - In non-curses mode, readline and gdb use the standard input and
736 standard output/error directly.
737 - In curses mode, the standard output/error is controlled by TUI
738 with the tui_stdout and tui_stderr. The output is redirected in
739 the curses command window. Several readline callbacks are installed
740 so that readline asks for its input to the curses command window
741 with wgetch(). */
742 void
743 tui_setup_io (int mode)
744 {
745 extern int _rl_echoing_p;
746
747 if (mode)
748 {
749 /* Redirect readline to TUI. */
750 tui_old_rl_redisplay_function = rl_redisplay_function;
751 tui_old_rl_deprep_terminal = rl_deprep_term_function;
752 tui_old_rl_prep_terminal = rl_prep_term_function;
753 tui_old_rl_getc_function = rl_getc_function;
754 tui_old_rl_display_matches_hook = rl_completion_display_matches_hook;
755 tui_old_rl_outstream = rl_outstream;
756 tui_old_rl_echoing_p = _rl_echoing_p;
757 rl_redisplay_function = tui_redisplay_readline;
758 rl_deprep_term_function = tui_deprep_terminal;
759 rl_prep_term_function = tui_prep_terminal;
760 rl_getc_function = tui_getc;
761 _rl_echoing_p = 0;
762 rl_outstream = tui_rl_outstream;
763 rl_prompt = 0;
764 rl_completion_display_matches_hook = tui_rl_display_match_list;
765 rl_already_prompted = 0;
766
767 /* Keep track of previous gdb output. */
768 tui_old_stdout = gdb_stdout;
769 tui_old_stderr = gdb_stderr;
770 tui_old_uiout = dynamic_cast<cli_ui_out *> (current_uiout);
771 gdb_assert (tui_old_uiout != nullptr);
772
773 /* Reconfigure gdb output. */
774 gdb_stdout = tui_stdout;
775 gdb_stderr = tui_stderr;
776 gdb_stdlog = gdb_stdout; /* for moment */
777 gdb_stdtarg = gdb_stderr; /* for moment */
778 gdb_stdtargerr = gdb_stderr; /* for moment */
779 current_uiout = tui_out;
780
781 /* Save tty for SIGCONT. */
782 savetty ();
783 }
784 else
785 {
786 /* Restore gdb output. */
787 gdb_stdout = tui_old_stdout;
788 gdb_stderr = tui_old_stderr;
789 gdb_stdlog = gdb_stdout; /* for moment */
790 gdb_stdtarg = gdb_stderr; /* for moment */
791 gdb_stdtargerr = gdb_stderr; /* for moment */
792 current_uiout = tui_old_uiout;
793
794 /* Restore readline. */
795 rl_redisplay_function = tui_old_rl_redisplay_function;
796 rl_deprep_term_function = tui_old_rl_deprep_terminal;
797 rl_prep_term_function = tui_old_rl_prep_terminal;
798 rl_getc_function = tui_old_rl_getc_function;
799 rl_completion_display_matches_hook = tui_old_rl_display_matches_hook;
800 rl_outstream = tui_old_rl_outstream;
801 _rl_echoing_p = tui_old_rl_echoing_p;
802 rl_already_prompted = 0;
803
804 /* Save tty for SIGCONT. */
805 savetty ();
806
807 /* Clean up color information. */
808 last_color_pair = -1;
809 last_style = ui_file_style ();
810 color_map.clear ();
811 color_pair_map.clear ();
812 }
813 }
814
815 #ifdef SIGCONT
816 /* Catch SIGCONT to restore the terminal and refresh the screen. */
817 static void
818 tui_cont_sig (int sig)
819 {
820 if (tui_active)
821 {
822 /* Restore the terminal setting because another process (shell)
823 might have changed it. */
824 resetty ();
825
826 /* Force a refresh of the screen. */
827 tui_refresh_all_win ();
828 }
829 signal (sig, tui_cont_sig);
830 }
831 #endif
832
833 /* Initialize the IO for gdb in curses mode. */
834 void
835 tui_initialize_io (void)
836 {
837 #ifdef SIGCONT
838 signal (SIGCONT, tui_cont_sig);
839 #endif
840
841 /* Create tui output streams. */
842 tui_stdout = new tui_file (stdout);
843 tui_stderr = new tui_file (stderr);
844 tui_out = tui_out_new (tui_stdout);
845
846 /* Create the default UI. */
847 tui_old_uiout = cli_out_new (gdb_stdout);
848
849 #ifdef TUI_USE_PIPE_FOR_READLINE
850 /* Temporary solution for readline writing to stdout: redirect
851 readline output in a pipe, read that pipe and output the content
852 in the curses command window. */
853 if (gdb_pipe_cloexec (tui_readline_pipe) != 0)
854 error (_("Cannot create pipe for readline"));
855
856 tui_rl_outstream = fdopen (tui_readline_pipe[1], "w");
857 if (tui_rl_outstream == 0)
858 error (_("Cannot redirect readline output"));
859
860 setvbuf (tui_rl_outstream, NULL, _IOLBF, 0);
861
862 #ifdef O_NONBLOCK
863 (void) fcntl (tui_readline_pipe[0], F_SETFL, O_NONBLOCK);
864 #else
865 #ifdef O_NDELAY
866 (void) fcntl (tui_readline_pipe[0], F_SETFL, O_NDELAY);
867 #endif
868 #endif
869 add_file_handler (tui_readline_pipe[0], tui_readline_output, 0);
870 #else
871 tui_rl_outstream = stdout;
872 #endif
873
874 #ifdef __MINGW32__
875 /* MS-Windows port of ncurses doesn't support default foreground and
876 background colors, so we must record the default colors at startup. */
877 HANDLE hstdout = (HANDLE)_get_osfhandle (fileno (stdout));
878 DWORD cmode;
879 CONSOLE_SCREEN_BUFFER_INFO csbi;
880
881 if (hstdout != INVALID_HANDLE_VALUE
882 && GetConsoleMode (hstdout, &cmode) != 0
883 && GetConsoleScreenBufferInfo (hstdout, &csbi))
884 ncurses_norm_attr = csbi.wAttributes;
885 #endif
886 }
887
888 /* Dispatch the correct tui function based upon the control
889 character. */
890 static unsigned int
891 tui_dispatch_ctrl_char (unsigned int ch)
892 {
893 struct tui_win_info *win_info = tui_win_with_focus ();
894
895 /* Handle the CTRL-L refresh for each window. */
896 if (ch == '\f')
897 tui_refresh_all_win ();
898
899 /* If no window has the focus, or if the focus window can't scroll,
900 just pass the character through. */
901 if (win_info == NULL || !win_info->can_scroll ())
902 return ch;
903
904 switch (ch)
905 {
906 case KEY_NPAGE:
907 win_info->forward_scroll (0);
908 break;
909 case KEY_PPAGE:
910 win_info->backward_scroll (0);
911 break;
912 case KEY_DOWN:
913 case KEY_SF:
914 win_info->forward_scroll (1);
915 break;
916 case KEY_UP:
917 case KEY_SR:
918 win_info->backward_scroll (1);
919 break;
920 case KEY_RIGHT:
921 win_info->left_scroll (1);
922 break;
923 case KEY_LEFT:
924 win_info->right_scroll (1);
925 break;
926 case '\f':
927 break;
928 default:
929 /* We didn't recognize the character as a control character, so pass it
930 through. */
931 return ch;
932 }
933
934 /* We intercepted the control character, so return 0 (which readline
935 will interpret as a no-op). */
936 return 0;
937 }
938
939 /* Main worker for tui_getc. Get a character from the command window.
940 This is called from the readline package, but wrapped in a
941 try/catch by tui_getc. */
942
943 static int
944 tui_getc_1 (FILE *fp)
945 {
946 int ch;
947 WINDOW *w;
948
949 w = TUI_CMD_WIN->handle.get ();
950
951 #ifdef TUI_USE_PIPE_FOR_READLINE
952 /* Flush readline output. */
953 tui_readline_output (0, 0);
954 #endif
955
956 ch = gdb_wgetch (w);
957
958 /* The \n must be echoed because it will not be printed by
959 readline. */
960 if (ch == '\n' || ch == '\r')
961 {
962 /* When hitting return with an empty input, gdb executes the last
963 command. If we emit a newline, this fills up the command window
964 with empty lines with gdb prompt at beginning. Instead of that,
965 stay on the same line but provide a visual effect to show the
966 user we recognized the command. */
967 if (rl_end == 0 && !gdb_in_secondary_prompt_p (current_ui))
968 {
969 wmove (w, getcury (w), 0);
970
971 /* Clear the line. This will blink the gdb prompt since
972 it will be redrawn at the same line. */
973 wclrtoeol (w);
974 wrefresh (w);
975 napms (20);
976 }
977 else
978 {
979 /* Move cursor to the end of the command line before emitting the
980 newline. We need to do so because when ncurses outputs a newline
981 it truncates any text that appears past the end of the cursor. */
982 int px, py;
983 getyx (w, py, px);
984 px += rl_end - rl_point;
985 py += px / TUI_CMD_WIN->width;
986 px %= TUI_CMD_WIN->width;
987 wmove (w, py, px);
988 tui_putc ('\n');
989 }
990 }
991
992 /* Handle prev/next/up/down here. */
993 ch = tui_dispatch_ctrl_char (ch);
994
995 if (ch == KEY_BACKSPACE)
996 return '\b';
997
998 if (current_ui->command_editing && key_is_start_sequence (ch))
999 {
1000 int ch_pending;
1001
1002 nodelay (w, TRUE);
1003 ch_pending = gdb_wgetch (w);
1004 nodelay (w, FALSE);
1005
1006 /* If we have pending input following a start sequence, call the stdin
1007 event handler again because ncurses may have already read and stored
1008 the input into its internal buffer, meaning that we won't get an stdin
1009 event for it. If we don't compensate for this missed stdin event, key
1010 sequences as Alt_F (^[f) will not behave promptly.
1011
1012 (We only compensates for the missed 2nd byte of a key sequence because
1013 2-byte sequences are by far the most commonly used. ncurses may have
1014 buffered a larger, 3+-byte key sequence though it remains to be seen
1015 whether it is useful to compensate for all the bytes of such
1016 sequences.) */
1017 if (ch_pending != ERR)
1018 {
1019 ungetch (ch_pending);
1020 call_stdin_event_handler_again_p = 1;
1021 }
1022 }
1023
1024 return ch;
1025 }
1026
1027 /* Get a character from the command window. This is called from the
1028 readline package. */
1029
1030 static int
1031 tui_getc (FILE *fp)
1032 {
1033 try
1034 {
1035 return tui_getc_1 (fp);
1036 }
1037 catch (const gdb_exception &ex)
1038 {
1039 /* Just in case, don't ever let an exception escape to readline.
1040 This shouldn't ever happen, but if it does, print the
1041 exception instead of just crashing GDB. */
1042 exception_print (gdb_stderr, ex);
1043
1044 /* If we threw an exception, it's because we recognized the
1045 character. */
1046 return 0;
1047 }
1048 }
1049
1050 /* See tui-io.h. */
1051
1052 gdb::unique_xmalloc_ptr<char>
1053 tui_expand_tabs (const char *string)
1054 {
1055 int n_adjust, ncol;
1056 const char *s;
1057 char *ret, *q;
1058
1059 /* 1. How many additional characters do we need? */
1060 for (ncol = 0, n_adjust = 0, s = string; s; )
1061 {
1062 s = strpbrk (s, "\t");
1063 if (s)
1064 {
1065 ncol += (s - string) + n_adjust;
1066 /* Adjustment for the next tab stop, minus one for the TAB
1067 we replace with spaces. */
1068 n_adjust += 8 - (ncol % 8) - 1;
1069 s++;
1070 }
1071 }
1072
1073 /* Allocate the copy. */
1074 ret = q = (char *) xmalloc (strlen (string) + n_adjust + 1);
1075
1076 /* 2. Copy the original string while replacing TABs with spaces. */
1077 for (ncol = 0, s = string; s; )
1078 {
1079 const char *s1 = strpbrk (s, "\t");
1080 if (s1)
1081 {
1082 if (s1 > s)
1083 {
1084 strncpy (q, s, s1 - s);
1085 q += s1 - s;
1086 ncol += s1 - s;
1087 }
1088 do {
1089 *q++ = ' ';
1090 ncol++;
1091 } while ((ncol % 8) != 0);
1092 s1++;
1093 }
1094 else
1095 strcpy (q, s);
1096 s = s1;
1097 }
1098
1099 return gdb::unique_xmalloc_ptr<char> (ret);
1100 }