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