Clear static_links in reread_symbols
[deliverable/binutils-gdb.git] / gdb / tui / tui-io.c
CommitLineData
f377b406 1/* TUI support I/O functions.
f33c6cbf 2
e2882c85 3 Copyright (C) 1998-2018 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>
614c279d 40#include "filestuff.h"
82083d6d 41#include "completer.h"
6a83354a 42#include "gdb_curses.h"
a198b876 43
4a1bcc8c
MK
44/* This redefines CTRL if it is not already defined, so it must come
45 after terminal state releated include files like <term.h> and
46 "gdb_curses.h". */
47#include "readline/readline.h"
48
bcdf1568
AC
49int
50key_is_start_sequence (int ch)
51{
52 return (ch == 27);
53}
54
55int
56key_is_end_sequence (int ch)
57{
58 return (ch == 126);
59}
60
61int
62key_is_backspace (int ch)
63{
64 return (ch == 8);
65}
66
ec6f8892
SC
67/* Use definition from readline 4.3. */
68#undef CTRL_CHAR
08ef48c5
MS
69#define CTRL_CHAR(c) \
70 ((c) < control_character_threshold && (((c) & 0x80) == 0))
ec6f8892 71
a198b876
SC
72/* This file controls the IO interactions between gdb and curses.
73 When the TUI is enabled, gdb has two modes a curses and a standard
74 mode.
75
1cc6d956
MS
76 In curses mode, the gdb outputs are made in a curses command
77 window. For this, the gdb_stdout and gdb_stderr are redirected to
78 the specific ui_file implemented by TUI. The output is handled by
79 tui_puts(). The input is also controlled by curses with
80 tui_getc(). The readline library uses this function to get its
81 input. Several readline hooks are installed to redirect readline
82 output to the TUI (see also the note below).
a198b876
SC
83
84 In normal mode, the gdb outputs are restored to their origin, that
85 is as if TUI is not used. Readline also uses its original getc()
86 function with stdin.
87
1cc6d956
MS
88 Note SCz/2001-07-21: the current readline is not clean in its
89 management of the output. Even if we install a redisplay handler,
90 it sometimes writes on a stdout file. It is important to redirect
91 every output produced by readline, otherwise the curses window will
92 be garbled. This is implemented with a pipe that TUI reads and
93 readline writes to. A gdb input handler is created so that reading
94 the pipe is handled automatically. This will probably not work on
95 non-Unix platforms. The best fix is to make readline clean enougth
96 so that is never write on stdout.
97
98 Note SCz/2002-09-01: we now use more readline hooks and it seems
99 that with them we don't need the pipe anymore (verified by creating
100 the pipe and closing its end so that write causes a SIGPIPE). The
101 old pipe code is still there and can be conditionally removed by
8cee930b
SC
102 #undef TUI_USE_PIPE_FOR_READLINE. */
103
104/* For gdb 5.3, prefer to continue the pipe hack as a backup wheel. */
a156a290 105#ifdef HAVE_PIPE
8cee930b 106#define TUI_USE_PIPE_FOR_READLINE
a156a290 107#endif
1cc6d956 108/* #undef TUI_USE_PIPE_FOR_READLINE */
a198b876
SC
109
110/* TUI output files. */
111static struct ui_file *tui_stdout;
112static struct ui_file *tui_stderr;
2b68e2c5 113struct ui_out *tui_out;
a198b876
SC
114
115/* GDB output files in non-curses mode. */
116static struct ui_file *tui_old_stdout;
117static struct ui_file *tui_old_stderr;
112e8700 118cli_ui_out *tui_old_uiout;
a198b876
SC
119
120/* Readline previous hooks. */
840ed64d
JK
121static rl_getc_func_t *tui_old_rl_getc_function;
122static rl_voidfunc_t *tui_old_rl_redisplay_function;
123static rl_vintfunc_t *tui_old_rl_prep_terminal;
124static rl_voidfunc_t *tui_old_rl_deprep_terminal;
ef0b411a 125static rl_compdisp_func_t *tui_old_rl_display_matches_hook;
cc88a640 126static int tui_old_rl_echoing_p;
a198b876
SC
127
128/* Readline output stream.
129 Should be removed when readline is clean. */
130static FILE *tui_rl_outstream;
131static FILE *tui_old_rl_outstream;
8cee930b 132#ifdef TUI_USE_PIPE_FOR_READLINE
a198b876 133static int tui_readline_pipe[2];
8cee930b 134#endif
c906108c 135
57266a33
SC
136/* The last gdb prompt that was registered in readline.
137 This may be the main gdb prompt or a secondary prompt. */
138static char *tui_rl_saved_prompt;
139
9753a2f6
PA
140/* Print a character in the curses command window. The output is
141 buffered. It is up to the caller to refresh the screen if
142 necessary. */
143
144static void
145do_tui_putc (WINDOW *w, char c)
146{
147 static int tui_skip_line = -1;
148
149 /* Catch annotation and discard them. We need two \032 and discard
150 until a \n is seen. */
151 if (c == '\032')
152 {
153 tui_skip_line++;
154 }
155 else if (tui_skip_line != 1)
156 {
157 tui_skip_line = -1;
158 /* Expand TABs, since ncurses on MS-Windows doesn't. */
159 if (c == '\t')
160 {
161 int col;
162
163 col = getcurx (w);
164 do
165 {
166 waddch (w, ' ');
167 col++;
168 }
169 while ((col % 8) != 0);
170 }
171 else
172 waddch (w, c);
173 }
174 else if (c == '\n')
175 tui_skip_line = -1;
176}
177
178/* Update the cached value of the command window's start line based on
179 the window's current Y coordinate. */
180
181static void
182update_cmdwin_start_line ()
183{
184 TUI_CMD_WIN->detail.command_info.start_line
185 = getcury (TUI_CMD_WIN->generic.handle);
186}
187
188/* Print a character in the curses command window. The output is
189 buffered. It is up to the caller to refresh the screen if
190 necessary. */
191
8cee930b
SC
192static void
193tui_putc (char c)
194{
9753a2f6 195 WINDOW *w = TUI_CMD_WIN->generic.handle;
8cee930b 196
9753a2f6
PA
197 do_tui_putc (w, c);
198 update_cmdwin_start_line ();
8cee930b 199}
c906108c 200
9753a2f6
PA
201/* Print LENGTH characters from the buffer pointed to by BUF to the
202 curses command window. The output is buffered. It is up to the
203 caller to refresh the screen if necessary. */
204
205void
206tui_write (const char *buf, size_t length)
207{
208 WINDOW *w = TUI_CMD_WIN->generic.handle;
209
210 for (size_t i = 0; i < length; i++)
211 do_tui_putc (w, buf[i]);
212 update_cmdwin_start_line ();
213}
214
215/* Print a string in the curses command window. The output is
216 buffered. It is up to the caller to refresh the screen if
217 necessary. */
518be979 218
c906108c 219void
a198b876 220tui_puts (const char *string)
c906108c 221{
9753a2f6 222 WINDOW *w = TUI_CMD_WIN->generic.handle;
a198b876 223 char c;
c906108c 224
a198b876 225 while ((c = *string++) != 0)
9753a2f6
PA
226 do_tui_putc (w, c);
227 update_cmdwin_start_line ();
a198b876
SC
228}
229
230/* Readline callback.
231 Redisplay the command line with its prompt after readline has
232 changed the edited text. */
e09d2eba 233void
a198b876
SC
234tui_redisplay_readline (void)
235{
236 int prev_col;
237 int height;
cecc8b99 238 int col;
a198b876
SC
239 int c_pos;
240 int c_line;
241 int in;
242 WINDOW *w;
e6a959d6 243 const char *prompt;
a198b876 244 int start_line;
e3da6fc5
SC
245
246 /* Detect when we temporarily left SingleKey and now the readline
1cc6d956 247 edit buffer is empty, automatically restore the SingleKey
9b8d6827
SC
248 mode. The restore must only be done if the command has finished.
249 The command could call prompt_for_continue and we must not
250 restore SingleKey so that the prompt and normal keymap are used. */
251 if (tui_current_key_mode == TUI_ONE_COMMAND_MODE && rl_end == 0
dbf30ca3 252 && !gdb_in_secondary_prompt_p (current_ui))
6d012f14 253 tui_set_key_mode (TUI_SINGLE_KEY_MODE);
e3da6fc5 254
6d012f14 255 if (tui_current_key_mode == TUI_SINGLE_KEY_MODE)
e09d2eba
SC
256 prompt = "";
257 else
57266a33 258 prompt = tui_rl_saved_prompt;
a198b876
SC
259
260 c_pos = -1;
261 c_line = -1;
6d012f14
AC
262 w = TUI_CMD_WIN->generic.handle;
263 start_line = TUI_CMD_WIN->detail.command_info.start_line;
a198b876
SC
264 wmove (w, start_line, 0);
265 prev_col = 0;
266 height = 1;
267 for (in = 0; prompt && prompt[in]; in++)
268 {
269 waddch (w, prompt[in]);
cecc8b99 270 col = getcurx (w);
588dcc3e 271 if (col <= prev_col)
a198b876
SC
272 height++;
273 prev_col = col;
274 }
588dcc3e 275 for (in = 0; in <= rl_end; in++)
a198b876
SC
276 {
277 unsigned char c;
278
a198b876
SC
279 if (in == rl_point)
280 {
281 getyx (w, c_line, c_pos);
282 }
283
588dcc3e
PP
284 if (in == rl_end)
285 break;
286
287 c = (unsigned char) rl_line_buffer[in];
a198b876
SC
288 if (CTRL_CHAR (c) || c == RUBOUT)
289 {
290 waddch (w, '^');
291 waddch (w, CTRL_CHAR (c) ? UNCTRL (c) : '?');
292 }
312809f8
EZ
293 else if (c == '\t')
294 {
295 /* Expand TABs, since ncurses on MS-Windows doesn't. */
cecc8b99 296 col = getcurx (w);
312809f8
EZ
297 do
298 {
299 waddch (w, ' ');
300 col++;
301 } while ((col % 8) != 0);
302 }
c906108c
SS
303 else
304 {
a198b876 305 waddch (w, c);
c906108c 306 }
a198b876 307 if (c == '\n')
6f1cb6ea 308 TUI_CMD_WIN->detail.command_info.start_line = getcury (w);
cecc8b99 309 col = getcurx (w);
a198b876
SC
310 if (col < prev_col)
311 height++;
312 prev_col = col;
c906108c 313 }
a198b876 314 wclrtobot (w);
6f1cb6ea 315 TUI_CMD_WIN->detail.command_info.start_line = getcury (w);
a198b876 316 if (c_line >= 0)
6f1cb6ea 317 wmove (w, c_line, c_pos);
6d012f14 318 TUI_CMD_WIN->detail.command_info.start_line -= height - 1;
a198b876 319
a198b876
SC
320 wrefresh (w);
321 fflush(stdout);
322}
323
1cc6d956
MS
324/* Readline callback to prepare the terminal. It is called once each
325 time we enter readline. Terminal is already setup in curses
326 mode. */
a198b876 327static void
88fa91b4 328tui_prep_terminal (int notused1)
c906108c 329{
57266a33
SC
330 /* Save the prompt registered in readline to correctly display it.
331 (we can't use gdb_prompt() due to secondary prompts and can't use
332 rl_prompt because it points to an alloca buffer). */
333 xfree (tui_rl_saved_prompt);
36d6eb95 334 tui_rl_saved_prompt = rl_prompt != NULL ? xstrdup (rl_prompt) : NULL;
a198b876 335}
c906108c 336
1cc6d956
MS
337/* Readline callback to restore the terminal. It is called once each
338 time we leave readline. There is nothing to do in curses mode. */
a198b876
SC
339static void
340tui_deprep_terminal (void)
341{
342}
c906108c 343
8cee930b 344#ifdef TUI_USE_PIPE_FOR_READLINE
a198b876
SC
345/* Read readline output pipe and feed the command window with it.
346 Should be removed when readline is clean. */
347static void
01f69b38 348tui_readline_output (int error, gdb_client_data data)
a198b876
SC
349{
350 int size;
351 char buf[256];
c906108c 352
a198b876
SC
353 size = read (tui_readline_pipe[0], buf, sizeof (buf) - 1);
354 if (size > 0 && tui_active)
c906108c 355 {
a198b876
SC
356 buf[size] = 0;
357 tui_puts (buf);
c906108c 358 }
a198b876 359}
8cee930b
SC
360#endif
361
82083d6d 362/* TUI version of displayer.crlf. */
8cee930b 363
82083d6d
DE
364static void
365tui_mld_crlf (const struct match_list_displayer *displayer)
8cee930b 366{
82083d6d 367 tui_putc ('\n');
8cee930b
SC
368}
369
82083d6d 370/* TUI version of displayer.putch. */
8cee930b 371
82083d6d
DE
372static void
373tui_mld_putch (const struct match_list_displayer *displayer, int ch)
8cee930b 374{
82083d6d 375 tui_putc (ch);
8cee930b
SC
376}
377
82083d6d
DE
378/* TUI version of displayer.puts. */
379
380static void
381tui_mld_puts (const struct match_list_displayer *displayer, const char *s)
8cee930b 382{
82083d6d
DE
383 tui_puts (s);
384}
8cee930b 385
82083d6d
DE
386/* TUI version of displayer.flush. */
387
388static void
389tui_mld_flush (const struct match_list_displayer *displayer)
390{
391 wrefresh (TUI_CMD_WIN->generic.handle);
8cee930b
SC
392}
393
82083d6d 394/* TUI version of displayer.erase_entire_line. */
8cee930b 395
8cee930b 396static void
82083d6d 397tui_mld_erase_entire_line (const struct match_list_displayer *displayer)
8cee930b 398{
82083d6d 399 WINDOW *w = TUI_CMD_WIN->generic.handle;
6f1cb6ea 400 int cur_y = getcury (w);
8cee930b 401
6f1cb6ea 402 wmove (w, cur_y, 0);
82083d6d 403 wclrtoeol (w);
6f1cb6ea 404 wmove (w, cur_y, 0);
82083d6d 405}
8cee930b 406
82083d6d 407/* TUI version of displayer.beep. */
8cee930b 408
82083d6d
DE
409static void
410tui_mld_beep (const struct match_list_displayer *displayer)
411{
412 beep ();
413}
414
7a956928
TT
415/* A wrapper for wgetch that enters nonl mode. We We normally want
416 curses' "nl" mode, but when reading from the user, we'd like to
417 differentiate between C-j and C-m, because some users bind these
418 keys differently in their .inputrc. So, put curses into nonl mode
419 just when reading from the user. See PR tui/20819. */
420
421static int
422gdb_wgetch (WINDOW *win)
423{
424 nonl ();
425 int r = wgetch (win);
426 nl ();
427 return r;
428}
429
82083d6d
DE
430/* Helper function for tui_mld_read_key.
431 This temporarily replaces tui_getc for use during tab-completion
432 match list display. */
433
434static int
435tui_mld_getc (FILE *fp)
436{
437 WINDOW *w = TUI_CMD_WIN->generic.handle;
7a956928 438 int c = gdb_wgetch (w);
8cee930b 439
82083d6d
DE
440 return c;
441}
8cee930b 442
82083d6d 443/* TUI version of displayer.read_key. */
8cee930b 444
82083d6d
DE
445static int
446tui_mld_read_key (const struct match_list_displayer *displayer)
447{
448 rl_getc_func_t *prev = rl_getc_function;
449 int c;
8cee930b 450
82083d6d
DE
451 /* We can't use tui_getc as we need NEWLINE to not get emitted. */
452 rl_getc_function = tui_mld_getc;
453 c = rl_read_key ();
454 rl_getc_function = prev;
455 return c;
456}
8cee930b 457
82083d6d
DE
458/* TUI version of rl_completion_display_matches_hook.
459 See gdb_display_match_list for a description of the arguments. */
8cee930b 460
82083d6d
DE
461static void
462tui_rl_display_match_list (char **matches, int len, int max)
463{
464 struct match_list_displayer displayer;
465
466 rl_get_screen_size (&displayer.height, &displayer.width);
467 displayer.crlf = tui_mld_crlf;
468 displayer.putch = tui_mld_putch;
469 displayer.puts = tui_mld_puts;
470 displayer.flush = tui_mld_flush;
471 displayer.erase_entire_line = tui_mld_erase_entire_line;
472 displayer.beep = tui_mld_beep;
473 displayer.read_key = tui_mld_read_key;
474
475 gdb_display_match_list (matches, len, max, &displayer);
8cee930b 476}
a198b876
SC
477
478/* Setup the IO for curses or non-curses mode.
479 - In non-curses mode, readline and gdb use the standard input and
480 standard output/error directly.
481 - In curses mode, the standard output/error is controlled by TUI
482 with the tui_stdout and tui_stderr. The output is redirected in
483 the curses command window. Several readline callbacks are installed
484 so that readline asks for its input to the curses command window
485 with wgetch(). */
486void
487tui_setup_io (int mode)
488{
cc88a640
JK
489 extern int _rl_echoing_p;
490
a198b876 491 if (mode)
c906108c 492 {
a198b876
SC
493 /* Redirect readline to TUI. */
494 tui_old_rl_redisplay_function = rl_redisplay_function;
495 tui_old_rl_deprep_terminal = rl_deprep_term_function;
496 tui_old_rl_prep_terminal = rl_prep_term_function;
497 tui_old_rl_getc_function = rl_getc_function;
ef0b411a 498 tui_old_rl_display_matches_hook = rl_completion_display_matches_hook;
a198b876 499 tui_old_rl_outstream = rl_outstream;
cc88a640 500 tui_old_rl_echoing_p = _rl_echoing_p;
a198b876
SC
501 rl_redisplay_function = tui_redisplay_readline;
502 rl_deprep_term_function = tui_deprep_terminal;
503 rl_prep_term_function = tui_prep_terminal;
504 rl_getc_function = tui_getc;
cc88a640 505 _rl_echoing_p = 0;
a198b876
SC
506 rl_outstream = tui_rl_outstream;
507 rl_prompt = 0;
8cee930b
SC
508 rl_completion_display_matches_hook = tui_rl_display_match_list;
509 rl_already_prompted = 0;
a198b876
SC
510
511 /* Keep track of previous gdb output. */
512 tui_old_stdout = gdb_stdout;
513 tui_old_stderr = gdb_stderr;
112e8700
SM
514 tui_old_uiout = dynamic_cast<cli_ui_out *> (current_uiout);
515 gdb_assert (tui_old_uiout != nullptr);
a198b876
SC
516
517 /* Reconfigure gdb output. */
518 gdb_stdout = tui_stdout;
519 gdb_stderr = tui_stderr;
520 gdb_stdlog = gdb_stdout; /* for moment */
521 gdb_stdtarg = gdb_stderr; /* for moment */
8d4d924b 522 gdb_stdtargerr = gdb_stderr; /* for moment */
79a45e25 523 current_uiout = tui_out;
9d876a16
SC
524
525 /* Save tty for SIGCONT. */
526 savetty ();
c906108c 527 }
a198b876 528 else
c906108c 529 {
a198b876
SC
530 /* Restore gdb output. */
531 gdb_stdout = tui_old_stdout;
532 gdb_stderr = tui_old_stderr;
533 gdb_stdlog = gdb_stdout; /* for moment */
534 gdb_stdtarg = gdb_stderr; /* for moment */
8d4d924b 535 gdb_stdtargerr = gdb_stderr; /* for moment */
79a45e25 536 current_uiout = tui_old_uiout;
a198b876
SC
537
538 /* Restore readline. */
539 rl_redisplay_function = tui_old_rl_redisplay_function;
540 rl_deprep_term_function = tui_old_rl_deprep_terminal;
541 rl_prep_term_function = tui_old_rl_prep_terminal;
542 rl_getc_function = tui_old_rl_getc_function;
ef0b411a 543 rl_completion_display_matches_hook = tui_old_rl_display_matches_hook;
a198b876 544 rl_outstream = tui_old_rl_outstream;
cc88a640 545 _rl_echoing_p = tui_old_rl_echoing_p;
bd9b0abf 546 rl_already_prompted = 0;
9d876a16
SC
547
548 /* Save tty for SIGCONT. */
549 savetty ();
550 }
551}
552
553#ifdef SIGCONT
554/* Catch SIGCONT to restore the terminal and refresh the screen. */
555static void
556tui_cont_sig (int sig)
557{
558 if (tui_active)
559 {
560 /* Restore the terminal setting because another process (shell)
561 might have changed it. */
562 resetty ();
563
564 /* Force a refresh of the screen. */
a21fcd8f 565 tui_refresh_all_win ();
d75e970c 566
6d012f14 567 wrefresh (TUI_CMD_WIN->generic.handle);
c906108c 568 }
9d876a16 569 signal (sig, tui_cont_sig);
a198b876 570}
9d876a16 571#endif
c906108c 572
a198b876
SC
573/* Initialize the IO for gdb in curses mode. */
574void
d02c80cd 575tui_initialize_io (void)
a198b876 576{
9d876a16
SC
577#ifdef SIGCONT
578 signal (SIGCONT, tui_cont_sig);
579#endif
580
a198b876 581 /* Create tui output streams. */
d7e74731
PA
582 tui_stdout = new tui_file (stdout);
583 tui_stderr = new tui_file (stderr);
a198b876
SC
584 tui_out = tui_out_new (tui_stdout);
585
43df09d9 586 /* Create the default UI. */
4801a9a3 587 tui_old_uiout = cli_out_new (gdb_stdout);
a198b876 588
8cee930b 589#ifdef TUI_USE_PIPE_FOR_READLINE
1cc6d956
MS
590 /* Temporary solution for readline writing to stdout: redirect
591 readline output in a pipe, read that pipe and output the content
592 in the curses command window. */
614c279d 593 if (gdb_pipe_cloexec (tui_readline_pipe) != 0)
e0e6bcab
GB
594 error (_("Cannot create pipe for readline"));
595
a198b876
SC
596 tui_rl_outstream = fdopen (tui_readline_pipe[1], "w");
597 if (tui_rl_outstream == 0)
e0e6bcab
GB
598 error (_("Cannot redirect readline output"));
599
0f59c96f 600 setvbuf (tui_rl_outstream, (char*) NULL, _IOLBF, 0);
c906108c 601
a198b876
SC
602#ifdef O_NONBLOCK
603 (void) fcntl (tui_readline_pipe[0], F_SETFL, O_NONBLOCK);
c906108c 604#else
a198b876
SC
605#ifdef O_NDELAY
606 (void) fcntl (tui_readline_pipe[0], F_SETFL, O_NDELAY);
c906108c 607#endif
a198b876 608#endif
a198b876 609 add_file_handler (tui_readline_pipe[0], tui_readline_output, 0);
8cee930b
SC
610#else
611 tui_rl_outstream = stdout;
612#endif
a198b876
SC
613}
614
1cc6d956
MS
615/* Get a character from the command window. This is called from the
616 readline package. */
a198b876
SC
617int
618tui_getc (FILE *fp)
619{
620 int ch;
621 WINDOW *w;
622
6d012f14 623 w = TUI_CMD_WIN->generic.handle;
a198b876 624
8cee930b 625#ifdef TUI_USE_PIPE_FOR_READLINE
a198b876 626 /* Flush readline output. */
01f69b38 627 tui_readline_output (0, 0);
8cee930b
SC
628#endif
629
7a956928 630 ch = gdb_wgetch (w);
c906108c 631
1cc6d956
MS
632 /* The \n must be echoed because it will not be printed by
633 readline. */
a198b876
SC
634 if (ch == '\n')
635 {
636 /* When hitting return with an empty input, gdb executes the last
637 command. If we emit a newline, this fills up the command window
638 with empty lines with gdb prompt at beginning. Instead of that,
639 stay on the same line but provide a visual effect to show the
640 user we recognized the command. */
dbf30ca3 641 if (rl_end == 0 && !gdb_in_secondary_prompt_p (current_ui))
a198b876 642 {
6f1cb6ea 643 wmove (w, getcury (w), 0);
a198b876
SC
644
645 /* Clear the line. This will blink the gdb prompt since
646 it will be redrawn at the same line. */
647 wclrtoeol (w);
648 wrefresh (w);
649 napms (20);
650 }
651 else
652 {
d9080678
PP
653 /* Move cursor to the end of the command line before emitting the
654 newline. We need to do so because when ncurses outputs a newline
655 it truncates any text that appears past the end of the cursor. */
6f1cb6ea
PP
656 int px, py;
657 getyx (w, py, px);
d9080678
PP
658 px += rl_end - rl_point;
659 py += px / TUI_CMD_WIN->generic.width;
660 px %= TUI_CMD_WIN->generic.width;
661 wmove (w, py, px);
7a8bcb88 662 tui_putc ('\n');
a198b876
SC
663 }
664 }
665
69efdff1
PP
666 /* Handle prev/next/up/down here. */
667 ch = tui_dispatch_ctrl_char (ch);
a198b876 668
a198b876
SC
669 if (ch == KEY_BACKSPACE)
670 return '\b';
d64e57fa 671
3c216924 672 if (current_ui->command_editing && key_is_start_sequence (ch))
d64e57fa
PP
673 {
674 int ch_pending;
675
676 nodelay (w, TRUE);
7a956928 677 ch_pending = gdb_wgetch (w);
d64e57fa
PP
678 nodelay (w, FALSE);
679
680 /* If we have pending input following a start sequence, call the stdin
681 event handler again because ncurses may have already read and stored
682 the input into its internal buffer, meaning that we won't get an stdin
683 event for it. If we don't compensate for this missed stdin event, key
684 sequences as Alt_F (^[f) will not behave promptly.
685
686 (We only compensates for the missed 2nd byte of a key sequence because
687 2-byte sequences are by far the most commonly used. ncurses may have
688 buffered a larger, 3+-byte key sequence though it remains to be seen
689 whether it is useful to compensate for all the bytes of such
690 sequences.) */
691 if (ch_pending != ERR)
692 {
693 ungetch (ch_pending);
694 call_stdin_event_handler_again_p = 1;
695 }
696 }
697
c906108c 698 return ch;
a198b876 699}
c906108c 700
312809f8
EZ
701/* Utility function to expand TABs in a STRING into spaces. STRING
702 will be displayed starting at column COL, and is assumed to include
703 no newlines. The returned expanded string is malloc'ed. */
704
705char *
706tui_expand_tabs (const char *string, int col)
707{
b1a0f704 708 int n_adjust, ncol;
312809f8
EZ
709 const char *s;
710 char *ret, *q;
711
712 /* 1. How many additional characters do we need? */
b1a0f704 713 for (ncol = col, n_adjust = 0, s = string; s; )
312809f8
EZ
714 {
715 s = strpbrk (s, "\t");
716 if (s)
717 {
b1a0f704 718 ncol += (s - string) + n_adjust;
312809f8
EZ
719 /* Adjustment for the next tab stop, minus one for the TAB
720 we replace with spaces. */
b1a0f704 721 n_adjust += 8 - (ncol % 8) - 1;
312809f8
EZ
722 s++;
723 }
724 }
725
726 /* Allocate the copy. */
224c3ddb 727 ret = q = (char *) xmalloc (strlen (string) + n_adjust + 1);
312809f8
EZ
728
729 /* 2. Copy the original string while replacing TABs with spaces. */
b1a0f704 730 for (ncol = col, s = string; s; )
312809f8 731 {
cd46431b 732 const char *s1 = strpbrk (s, "\t");
312809f8
EZ
733 if (s1)
734 {
735 if (s1 > s)
736 {
737 strncpy (q, s, s1 - s);
738 q += s1 - s;
b1a0f704 739 ncol += s1 - s;
312809f8
EZ
740 }
741 do {
742 *q++ = ' ';
b1a0f704
EZ
743 ncol++;
744 } while ((ncol % 8) != 0);
312809f8
EZ
745 s1++;
746 }
747 else
748 strcpy (q, s);
749 s = s1;
750 }
751
752 return ret;
753}
This page took 2.326488 seconds and 4 git commands to generate.