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