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