1 /* display.c -- readline redisplay facility. */
3 /* Copyright (C) 1987-2009 Free Software Foundation, Inc.
5 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
8 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
22 #define READLINE_LIBRARY
24 #if defined (HAVE_CONFIG_H)
28 #include <sys/types.h>
30 #if defined (HAVE_UNISTD_H)
32 #endif /* HAVE_UNISTD_H */
34 #include "posixstat.h"
36 #if defined (HAVE_STDLIB_H)
39 # include "ansi_stdlib.h"
40 #endif /* HAVE_STDLIB_H */
48 /* System-specific feature definitions and include files. */
52 /* Termcap library stuff. */
55 /* Some standard library routines. */
59 #include "rlprivate.h"
62 #if !defined (strchr) && !defined (__STDC__)
63 extern char *strchr (), *strrchr ();
64 #endif /* !strchr && !__STDC__ */
66 static void update_line
PARAMS((char *, char *, int, int, int, int));
67 static void space_to_eol
PARAMS((int));
68 static void delete_chars
PARAMS((int));
69 static void insert_some_chars
PARAMS((char *, int, int));
70 static void cr
PARAMS((void));
72 /* State of visible and invisible lines. */
78 #if defined (HANDLE_MULTIBYTE)
84 /* The line display buffers. One is the line currently displayed on
85 the screen. The other is the line about to be displayed. */
86 static struct line_state line_state_array
[2];
87 static struct line_state
*line_state_visible
= &line_state_array
[0];
88 static struct line_state
*line_state_invisible
= &line_state_array
[1];
89 static int line_structures_initialized
= 0;
91 /* Backwards-compatible names. */
92 #define inv_lbreaks (line_state_invisible->lbreaks)
93 #define inv_lbsize (line_state_invisible->lbsize)
94 #define vis_lbreaks (line_state_visible->lbreaks)
95 #define vis_lbsize (line_state_visible->lbsize)
97 #define visible_line (line_state_visible->line)
98 #define invisible_line (line_state_invisible->line)
100 #if defined (HANDLE_MULTIBYTE)
101 static int _rl_col_width
PARAMS((const char *, int, int, int));
103 # define _rl_col_width(l, s, e, f) (((e) <= (s)) ? 0 : (e) - (s))
106 /* Heuristic used to decide whether it is faster to move from CUR to NEW
107 by backing up or outputting a carriage return and moving forward. CUR
108 and NEW are either both buffer positions or absolute screen positions. */
109 #define CR_FASTER(new, cur) (((new) + 1) < ((cur) - (new)))
111 /* _rl_last_c_pos is an absolute cursor position in multibyte locales and a
112 buffer index in others. This macro is used when deciding whether the
113 current cursor position is in the middle of a prompt string containing
114 invisible characters. XXX - might need to take `modmark' into account. */
115 #define PROMPT_ENDING_INDEX \
116 ((MB_CUR_MAX > 1 && rl_byte_oriented == 0) ? prompt_physical_chars : prompt_last_invisible+1)
119 /* **************************************************************** */
123 /* **************************************************************** */
125 /* This is the stuff that is hard for me. I never seem to write good
126 display routines in C. Let's see how I do this time. */
128 /* (PWP) Well... Good for a simple line updater, but totally ignores
129 the problems of input lines longer than the screen width.
131 update_line and the code that calls it makes a multiple line,
132 automatically wrapping line update. Careful attention needs
133 to be paid to the vertical position variables. */
135 /* Keep two buffers; one which reflects the current contents of the
136 screen, and the other to draw what we think the new contents should
137 be. Then compare the buffers, and make whatever changes to the
138 screen itself that we should. Finally, make the buffer that we
139 just drew into be the one which reflects the current contents of the
140 screen, and place the cursor where it belongs.
142 Commands that want to can fix the display themselves, and then let
143 this function know that the display has been fixed by setting the
144 RL_DISPLAY_FIXED variable. This is good for efficiency. */
146 /* Application-specific redisplay function. */
147 rl_voidfunc_t
*rl_redisplay_function
= rl_redisplay
;
149 /* Global variables declared here. */
150 /* What YOU turn on when you have handled all redisplay yourself. */
151 int rl_display_fixed
= 0;
153 int _rl_suppress_redisplay
= 0;
154 int _rl_want_redisplay
= 0;
156 /* The stuff that gets printed out before the actual text of the line.
157 This is usually pointing to rl_prompt. */
158 char *rl_display_prompt
= (char *)NULL
;
160 /* Pseudo-global variables declared here. */
162 /* The visible cursor position. If you print some text, adjust this. */
163 /* NOTE: _rl_last_c_pos is used as a buffer index when not in a locale
164 supporting multibyte characters, and an absolute cursor position when
165 in such a locale. This is an artifact of the donated multibyte support.
166 Care must be taken when modifying its value. */
167 int _rl_last_c_pos
= 0;
168 int _rl_last_v_pos
= 0;
170 static int cpos_adjusted
;
171 static int cpos_buffer_position
;
172 static int prompt_multibyte_chars
;
174 /* Number of lines currently on screen minus 1. */
175 int _rl_vis_botlin
= 0;
177 /* Variables used only in this file. */
178 /* The last left edge of text that was displayed. This is used when
179 doing horizontal scrolling. It shifts in thirds of a screenwidth. */
180 static int last_lmargin
;
182 /* A buffer for `modeline' messages. */
183 static char msg_buf
[128];
185 /* Non-zero forces the redisplay even if we thought it was unnecessary. */
186 static int forced_display
;
188 /* Default and initial buffer size. Can grow. */
189 static int line_size
= 1024;
191 /* Variables to keep track of the expanded prompt string, which may
192 include invisible characters. */
194 static char *local_prompt
, *local_prompt_prefix
;
195 static int local_prompt_len
;
196 static int prompt_visible_length
, prompt_prefix_length
;
198 /* The number of invisible characters in the line currently being
199 displayed on the screen. */
200 static int visible_wrap_offset
;
202 /* The number of invisible characters in the prompt string. Static so it
203 can be shared between rl_redisplay and update_line */
204 static int wrap_offset
;
206 /* The index of the last invisible character in the prompt string. */
207 static int prompt_last_invisible
;
209 /* The length (buffer offset) of the first line of the last (possibly
210 multi-line) buffer displayed on the screen. */
211 static int visible_first_line_len
;
213 /* Number of invisible characters on the first physical line of the prompt.
214 Only valid when the number of physical characters in the prompt exceeds
215 (or is equal to) _rl_screenwidth. */
216 static int prompt_invis_chars_first_line
;
218 static int prompt_last_screen_line
;
220 static int prompt_physical_chars
;
222 /* set to a non-zero value by rl_redisplay if we are marking modified history
223 lines and the current line is so marked. */
226 /* Variables to save and restore prompt and display information. */
228 /* These are getting numerous enough that it's time to create a struct. */
230 static char *saved_local_prompt
;
231 static char *saved_local_prefix
;
232 static int saved_last_invisible
;
233 static int saved_visible_length
;
234 static int saved_prefix_length
;
235 static int saved_local_length
;
236 static int saved_invis_chars_first_line
;
237 static int saved_physical_chars
;
239 /* Expand the prompt string S and return the number of visible
240 characters in *LP, if LP is not null. This is currently more-or-less
241 a placeholder for expansion. LIP, if non-null is a place to store the
242 index of the last invisible character in the returned string. NIFLP,
243 if non-zero, is a place to store the number of invisible characters in
244 the first prompt line. The previous are used as byte counts -- indexes
245 into a character buffer. */
247 /* Current implementation:
248 \001 (^A) start non-visible characters
249 \002 (^B) end non-visible characters
250 all characters except \001 and \002 (following a \001) are copied to
251 the returned string; all characters except those between \001 and
252 \002 are assumed to be `visible'. */
255 expand_prompt (pmt
, lp
, lip
, niflp
, vlp
)
257 int *lp
, *lip
, *niflp
, *vlp
;
259 char *r
, *ret
, *p
, *igstart
;
260 int l
, rl
, last
, ignoring
, ninvis
, invfl
, invflset
, ind
, pind
, physchars
;
262 /* Short-circuit if we can. */
263 if ((MB_CUR_MAX
<= 1 || rl_byte_oriented
) && strchr (pmt
, RL_PROMPT_START_IGNORE
) == 0)
265 r
= savestring (pmt
);
273 *vlp
= lp
? *lp
: strlen (r
);
278 r
= ret
= (char *)xmalloc (l
+ 1);
280 invfl
= 0; /* invisible chars in first line of prompt */
281 invflset
= 0; /* we only want to set invfl once */
284 for (rl
= ignoring
= last
= ninvis
= physchars
= 0, p
= pmt
; p
&& *p
; p
++)
286 /* This code strips the invisible character string markers
287 RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE */
288 if (ignoring
== 0 && *p
== RL_PROMPT_START_IGNORE
) /* XXX - check ignoring? */
294 else if (ignoring
&& *p
== RL_PROMPT_END_IGNORE
)
297 if (p
!= (igstart
+ 1))
303 #if defined (HANDLE_MULTIBYTE)
304 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
307 ind
= _rl_find_next_mbchar (pmt
, pind
, 1, MB_FIND_NONZERO
);
313 /* rl ends up being assigned to prompt_visible_length,
314 which is the number of characters in the buffer that
315 contribute to characters on the screen, which might
316 not be the same as the number of physical characters
317 on the screen in the presence of multibyte characters */
319 physchars
+= _rl_col_width (pmt
, pind
, ind
, 0);
322 ninvis
+= ind
- pind
;
323 p
--; /* compensate for later increment */
331 rl
++; /* visible length byte counter */
335 ninvis
++; /* invisible chars byte counter */
338 if (invflset
== 0 && rl
>= _rl_screenwidth
)
346 if (rl
< _rl_screenwidth
)
361 /* Just strip out RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE from
362 PMT and return the rest of PMT. */
364 _rl_strip_prompt (pmt
)
369 ret
= expand_prompt (pmt
, (int *)NULL
, (int *)NULL
, (int *)NULL
, (int *)NULL
);
374 * Expand the prompt string into the various display components, if
377 * local_prompt = expanded last line of string in rl_display_prompt
378 * (portion after the final newline)
379 * local_prompt_prefix = portion before last newline of rl_display_prompt,
380 * expanded via expand_prompt
381 * prompt_visible_length = number of visible characters in local_prompt
382 * prompt_prefix_length = number of visible characters in local_prompt_prefix
384 * This function is called once per call to readline(). It may also be
385 * called arbitrarily to expand the primary prompt.
387 * The return value is the number of visible characters on the last line
388 * of the (possibly multi-line) prompt.
391 rl_expand_prompt (prompt
)
397 /* Clear out any saved values. */
399 FREE (local_prompt_prefix
);
401 local_prompt
= local_prompt_prefix
= (char *)0;
402 local_prompt_len
= 0;
403 prompt_last_invisible
= prompt_invis_chars_first_line
= 0;
404 prompt_visible_length
= prompt_physical_chars
= 0;
406 if (prompt
== 0 || *prompt
== 0)
409 p
= strrchr (prompt
, '\n');
412 /* The prompt is only one logical line, though it might wrap. */
413 local_prompt
= expand_prompt (prompt
, &prompt_visible_length
,
414 &prompt_last_invisible
,
415 &prompt_invis_chars_first_line
,
416 &prompt_physical_chars
);
417 local_prompt_prefix
= (char *)0;
418 local_prompt_len
= local_prompt
? strlen (local_prompt
) : 0;
419 return (prompt_visible_length
);
423 /* The prompt spans multiple lines. */
425 local_prompt
= expand_prompt (p
, &prompt_visible_length
,
426 &prompt_last_invisible
,
427 &prompt_invis_chars_first_line
,
428 &prompt_physical_chars
);
430 /* The portion of the prompt string up to and including the
431 final newline is now null-terminated. */
432 local_prompt_prefix
= expand_prompt (prompt
, &prompt_prefix_length
,
437 local_prompt_len
= local_prompt
? strlen (local_prompt
) : 0;
438 return (prompt_prefix_length
);
442 /* Initialize the VISIBLE_LINE and INVISIBLE_LINE arrays, and their associated
443 arrays of line break markers. MINSIZE is the minimum size of VISIBLE_LINE
444 and INVISIBLE_LINE; if it is greater than LINE_SIZE, LINE_SIZE is
445 increased. If the lines have already been allocated, this ensures that
446 they can hold at least MINSIZE characters. */
448 init_line_structures (minsize
)
453 if (invisible_line
== 0) /* initialize it */
455 if (line_size
< minsize
)
457 visible_line
= (char *)xmalloc (line_size
);
458 invisible_line
= (char *)xmalloc (line_size
);
460 else if (line_size
< minsize
) /* ensure it can hold MINSIZE chars */
463 if (line_size
< minsize
)
465 visible_line
= (char *)xrealloc (visible_line
, line_size
);
466 invisible_line
= (char *)xrealloc (invisible_line
, line_size
);
469 for (n
= minsize
; n
< line_size
; n
++)
472 invisible_line
[n
] = 1;
475 if (vis_lbreaks
== 0)
477 /* should be enough. */
478 inv_lbsize
= vis_lbsize
= 256;
480 #if defined (HANDLE_MULTIBYTE)
481 line_state_visible
->wbsize
= vis_lbsize
;
482 line_state_visible
->wrapped_line
= (int *)xmalloc (line_state_visible
->wbsize
* sizeof (int));
484 line_state_invisible
->wbsize
= inv_lbsize
;
485 line_state_invisible
->wrapped_line
= (int *)xmalloc (line_state_invisible
->wbsize
* sizeof (int));
488 inv_lbreaks
= (int *)xmalloc (inv_lbsize
* sizeof (int));
489 vis_lbreaks
= (int *)xmalloc (vis_lbsize
* sizeof (int));
490 inv_lbreaks
[0] = vis_lbreaks
[0] = 0;
493 line_structures_initialized
= 1;
496 /* Basic redisplay algorithm. */
500 register int in
, out
, c
, linenum
, cursor_linenum
;
502 int inv_botlin
, lb_botlin
, lb_linenum
, o_cpos
;
503 int newlines
, lpos
, temp
, n0
, num
, prompt_lines_estimate
;
504 char *prompt_this_line
;
505 #if defined (HANDLE_MULTIBYTE)
510 int _rl_wrapped_multicolumn
= 0;
513 if (_rl_echoing_p
== 0)
516 /* Block keyboard interrupts because this function manipulates global
519 RL_SETSTATE (RL_STATE_REDISPLAYING
);
521 if (!rl_display_prompt
)
522 rl_display_prompt
= "";
524 if (line_structures_initialized
== 0)
526 init_line_structures (0);
530 /* Draw the line into the buffer. */
531 cpos_buffer_position
= -1;
533 prompt_multibyte_chars
= prompt_visible_length
- prompt_physical_chars
;
535 line
= invisible_line
;
536 out
= inv_botlin
= 0;
538 /* Mark the line as modified or not. We only do this for history
541 if (_rl_mark_modified_lines
&& current_history () && rl_undo_list
)
548 /* If someone thought that the redisplay was handled, but the currently
549 visible line has a different modification state than the one about
550 to become visible, then correct the caller's misconception. */
551 if (visible_line
[0] != invisible_line
[0])
552 rl_display_fixed
= 0;
554 /* If the prompt to be displayed is the `primary' readline prompt (the
555 one passed to readline()), use the values we have already expanded.
556 If not, use what's already in rl_display_prompt. WRAP_OFFSET is the
557 number of non-visible characters in the prompt string. */
558 if (rl_display_prompt
== rl_prompt
|| local_prompt
)
560 if (local_prompt_prefix
&& forced_display
)
561 _rl_output_some_chars (local_prompt_prefix
, strlen (local_prompt_prefix
));
563 if (local_prompt_len
> 0)
565 temp
= local_prompt_len
+ out
+ 2;
566 if (temp
>= line_size
)
568 line_size
= (temp
+ 1024) - (temp
% 1024);
569 visible_line
= (char *)xrealloc (visible_line
, line_size
);
570 line
= invisible_line
= (char *)xrealloc (invisible_line
, line_size
);
572 strncpy (line
+ out
, local_prompt
, local_prompt_len
);
573 out
+= local_prompt_len
;
576 wrap_offset
= local_prompt_len
- prompt_visible_length
;
581 prompt_this_line
= strrchr (rl_display_prompt
, '\n');
582 if (!prompt_this_line
)
583 prompt_this_line
= rl_display_prompt
;
587 pmtlen
= prompt_this_line
- rl_display_prompt
; /* temp var */
590 _rl_output_some_chars (rl_display_prompt
, pmtlen
);
591 /* Make sure we are at column zero even after a newline,
592 regardless of the state of terminal output processing. */
593 if (pmtlen
< 2 || prompt_this_line
[-2] != '\r')
598 prompt_physical_chars
= pmtlen
= strlen (prompt_this_line
);
599 temp
= pmtlen
+ out
+ 2;
600 if (temp
>= line_size
)
602 line_size
= (temp
+ 1024) - (temp
% 1024);
603 visible_line
= (char *)xrealloc (visible_line
, line_size
);
604 line
= invisible_line
= (char *)xrealloc (invisible_line
, line_size
);
606 strncpy (line
+ out
, prompt_this_line
, pmtlen
);
609 wrap_offset
= prompt_invis_chars_first_line
= 0;
612 #define CHECK_INV_LBREAKS() \
614 if (newlines >= (inv_lbsize - 2)) \
617 inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \
621 #if defined (HANDLE_MULTIBYTE)
622 #define CHECK_LPOS() \
625 if (lpos >= _rl_screenwidth) \
627 if (newlines >= (inv_lbsize - 2)) \
630 inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \
632 inv_lbreaks[++newlines] = out; \
633 if (newlines >= (line_state_invisible->wbsize - 1)) \
635 line_state_invisible->wbsize *= 2; \
636 line_state_invisible->wrapped_line = (int *)xrealloc (line_state_invisible->wrapped_line, line_state_invisible->wbsize * sizeof(int)); \
638 line_state_invisible->wrapped_line[newlines] = _rl_wrapped_multicolumn; \
643 #define CHECK_LPOS() \
646 if (lpos >= _rl_screenwidth) \
648 if (newlines >= (inv_lbsize - 2)) \
651 inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \
653 inv_lbreaks[++newlines] = out; \
659 /* inv_lbreaks[i] is where line i starts in the buffer. */
660 inv_lbreaks
[newlines
= 0] = 0;
661 lpos
= prompt_physical_chars
+ modmark
;
663 #if defined (HANDLE_MULTIBYTE)
664 memset (line_state_invisible
->wrapped_line
, 0, line_state_invisible
->wbsize
* sizeof (int));
668 /* prompt_invis_chars_first_line is the number of invisible characters in
669 the first physical line of the prompt.
670 wrap_offset - prompt_invis_chars_first_line is the number of invis
671 chars on the second (or, more generally, last) line. */
673 /* This is zero-based, used to set the newlines */
674 prompt_lines_estimate
= lpos
/ _rl_screenwidth
;
676 /* what if lpos is already >= _rl_screenwidth before we start drawing the
677 contents of the command line? */
678 while (lpos
>= _rl_screenwidth
)
681 /* fix from Darin Johnson <darin@acuson.com> for prompt string with
682 invisible characters that is longer than the screen width. The
683 prompt_invis_chars_first_line variable could be made into an array
684 saying how many invisible characters there are per line, but that's
685 probably too much work for the benefit gained. How many people have
686 prompts that exceed two physical lines?
687 Additional logic fix from Edward Catmur <ed@catmur.co.uk> */
688 #if defined (HANDLE_MULTIBYTE)
689 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0 && prompt_multibyte_chars
> 0)
692 temp
= local_prompt_len
;
695 z
= _rl_col_width (local_prompt
, n0
, num
, 1);
696 if (z
> _rl_screenwidth
)
698 num
= _rl_find_prev_mbchar (local_prompt
, num
, MB_FIND_ANY
);
701 else if (z
== _rl_screenwidth
)
708 #endif /* !HANDLE_MULTIBYTE */
709 temp
= ((newlines
+ 1) * _rl_screenwidth
);
711 /* Now account for invisible characters in the current line. */
712 /* XXX - this assumes that the invisible characters may be split, but only
713 between the first and the last lines. */
714 temp
+= ((local_prompt_prefix
== 0) ? ((newlines
== 0) ? prompt_invis_chars_first_line
715 : ((newlines
== prompt_lines_estimate
) ? wrap_offset
: prompt_invis_chars_first_line
))
716 : ((newlines
== 0) ? wrap_offset
: 0));
718 inv_lbreaks
[++newlines
] = temp
;
719 #if defined (HANDLE_MULTIBYTE)
720 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0 && prompt_multibyte_chars
> 0)
721 lpos
-= _rl_col_width (local_prompt
, n0
, num
, 1);
724 lpos
-= _rl_screenwidth
;
727 prompt_last_screen_line
= newlines
;
729 /* Draw the rest of the line (after the prompt) into invisible_line, keeping
730 track of where the cursor is (cpos_buffer_position), the number of the line containing
731 the cursor (lb_linenum), the last line number (lb_botlin and inv_botlin).
732 It maintains an array of line breaks for display (inv_lbreaks).
733 This handles expanding tabs for display and displaying meta characters. */
735 #if defined (HANDLE_MULTIBYTE)
737 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
739 memset (&ps
, 0, sizeof (mbstate_t));
740 /* XXX - what if wc_bytes ends up <= 0? check for MB_INVALIDCH */
741 wc_bytes
= mbrtowc (&wc
, rl_line_buffer
, rl_end
, &ps
);
747 for (in
= 0; in
< rl_end
; in
++)
750 c
= (unsigned char)rl_line_buffer
[in
];
752 #if defined (HANDLE_MULTIBYTE)
753 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
755 if (MB_INVALIDCH (wc_bytes
))
757 /* Byte sequence is invalid or shortened. Assume that the
758 first byte represents a character. */
760 /* Assume that a character occupies a single column. */
762 memset (&ps
, 0, sizeof (mbstate_t));
764 else if (MB_NULLWCH (wc_bytes
))
765 break; /* Found '\0' */
769 wc_width
= (temp
>= 0) ? temp
: 1;
774 if (out
+ 8 >= line_size
) /* XXX - 8 for \t */
777 visible_line
= (char *)xrealloc (visible_line
, line_size
);
778 invisible_line
= (char *)xrealloc (invisible_line
, line_size
);
779 line
= invisible_line
;
784 cpos_buffer_position
= out
;
785 lb_linenum
= newlines
;
788 #if defined (HANDLE_MULTIBYTE)
789 if (META_CHAR (c
) && _rl_output_meta_chars
== 0) /* XXX - clean up */
794 if (_rl_output_meta_chars
== 0)
796 sprintf (line
+ out
, "\\%o", c
);
798 if (lpos
+ 4 >= _rl_screenwidth
)
800 temp
= _rl_screenwidth
- lpos
;
801 CHECK_INV_LBREAKS ();
802 inv_lbreaks
[++newlines
] = out
+ temp
;
816 #if defined (DISPLAY_TABS)
822 newout
= (out
| (int)7) + 1;
824 newout
= out
+ 8 - lpos
% 8;
827 if (lpos
+ temp
>= _rl_screenwidth
)
830 temp2
= _rl_screenwidth
- lpos
;
831 CHECK_INV_LBREAKS ();
832 inv_lbreaks
[++newlines
] = out
+ temp2
;
845 else if (c
== '\n' && _rl_horizontal_scroll_mode
== 0 && _rl_term_up
&& *_rl_term_up
)
847 line
[out
++] = '\0'; /* XXX - sentinel */
848 CHECK_INV_LBREAKS ();
849 inv_lbreaks
[++newlines
] = out
;
852 else if (CTRL_CHAR (c
) || c
== RUBOUT
)
856 line
[out
++] = CTRL_CHAR (c
) ? UNCTRL (c
) : '?';
861 #if defined (HANDLE_MULTIBYTE)
862 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
866 _rl_wrapped_multicolumn
= 0;
868 if (_rl_screenwidth
< lpos
+ wc_width
)
869 for (i
= lpos
; i
< _rl_screenwidth
; i
++)
871 /* The space will be removed in update_line() */
873 _rl_wrapped_multicolumn
++;
878 cpos_buffer_position
= out
;
879 lb_linenum
= newlines
;
881 for (i
= in
; i
< in
+wc_bytes
; i
++)
882 line
[out
++] = rl_line_buffer
[i
];
883 for (i
= 0; i
< wc_width
; i
++)
897 #if defined (HANDLE_MULTIBYTE)
898 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
901 /* XXX - what if wc_bytes ends up <= 0? check for MB_INVALIDCH */
902 wc_bytes
= mbrtowc (&wc
, rl_line_buffer
+ in
, rl_end
- in
, &ps
);
910 if (cpos_buffer_position
< 0)
912 cpos_buffer_position
= out
;
913 lb_linenum
= newlines
;
916 inv_botlin
= lb_botlin
= newlines
;
917 CHECK_INV_LBREAKS ();
918 inv_lbreaks
[newlines
+1] = out
;
919 cursor_linenum
= lb_linenum
;
921 /* CPOS_BUFFER_POSITION == position in buffer where cursor should be placed.
922 CURSOR_LINENUM == line number where the cursor should be placed. */
924 /* PWP: now is when things get a bit hairy. The visible and invisible
925 line buffers are really multiple lines, which would wrap every
926 (screenwidth - 1) characters. Go through each in turn, finding
927 the changed region and updating it. The line order is top to bottom. */
929 /* If we can move the cursor up and down, then use multiple lines,
930 otherwise, let long lines display in a single terminal line, and
931 horizontally scroll it. */
933 if (_rl_horizontal_scroll_mode
== 0 && _rl_term_up
&& *_rl_term_up
)
935 int nleft
, pos
, changed_screen_line
, tx
;
937 if (!rl_display_fixed
|| forced_display
)
941 /* If we have more than a screenful of material to display, then
942 only display a screenful. We should display the last screen,
944 if (out
>= _rl_screenchars
)
946 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
947 out
= _rl_find_prev_mbchar (line
, _rl_screenchars
, MB_FIND_ANY
);
949 out
= _rl_screenchars
- 1;
952 /* The first line is at character position 0 in the buffer. The
953 second and subsequent lines start at inv_lbreaks[N], offset by
954 OFFSET (which has already been calculated above). */
956 #define INVIS_FIRST() (prompt_physical_chars > _rl_screenwidth ? prompt_invis_chars_first_line : wrap_offset)
957 #define WRAP_OFFSET(line, offset) ((line == 0) \
958 ? (offset ? INVIS_FIRST() : 0) \
959 : ((line == prompt_last_screen_line) ? wrap_offset-prompt_invis_chars_first_line : 0))
960 #define W_OFFSET(line, offset) ((line) == 0 ? offset : 0)
961 #define VIS_LLEN(l) ((l) > _rl_vis_botlin ? 0 : (vis_lbreaks[l+1] - vis_lbreaks[l]))
962 #define INV_LLEN(l) (inv_lbreaks[l+1] - inv_lbreaks[l])
963 #define VIS_CHARS(line) (visible_line + vis_lbreaks[line])
964 #define VIS_LINE(line) ((line) > _rl_vis_botlin) ? "" : VIS_CHARS(line)
965 #define INV_LINE(line) (invisible_line + inv_lbreaks[line])
967 #define OLD_CPOS_IN_PROMPT() (cpos_adjusted == 0 && \
968 _rl_last_c_pos != o_cpos && \
969 _rl_last_c_pos > wrap_offset && \
970 o_cpos < prompt_last_invisible)
972 /* For each line in the buffer, do the updating display. */
973 for (linenum
= 0; linenum
<= inv_botlin
; linenum
++)
975 /* This can lead us astray if we execute a program that changes
976 the locale from a non-multibyte to a multibyte one. */
977 o_cpos
= _rl_last_c_pos
;
979 update_line (VIS_LINE(linenum
), INV_LINE(linenum
), linenum
,
980 VIS_LLEN(linenum
), INV_LLEN(linenum
), inv_botlin
);
982 /* update_line potentially changes _rl_last_c_pos, but doesn't
983 take invisible characters into account, since _rl_last_c_pos
984 is an absolute cursor position in a multibyte locale. See
985 if compensating here is the right thing, or if we have to
986 change update_line itself. There are several cases in which
987 update_line adjusts _rl_last_c_pos itself (so it can pass
988 _rl_move_cursor_relative accurate values); it communicates
989 this back by setting cpos_adjusted. If we assume that
990 _rl_last_c_pos is correct (an absolute cursor position) each
991 time update_line is called, then we can assume in our
992 calculations that o_cpos does not need to be adjusted by
994 if (linenum
== 0 && (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) && OLD_CPOS_IN_PROMPT())
995 _rl_last_c_pos
-= prompt_invis_chars_first_line
; /* XXX - was wrap_offset */
996 else if (linenum
== prompt_last_screen_line
&& prompt_physical_chars
> _rl_screenwidth
&&
997 (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) &&
998 cpos_adjusted
== 0 &&
999 _rl_last_c_pos
!= o_cpos
&&
1000 _rl_last_c_pos
> (prompt_last_invisible
- _rl_screenwidth
- prompt_invis_chars_first_line
))
1001 _rl_last_c_pos
-= (wrap_offset
-prompt_invis_chars_first_line
);
1003 /* If this is the line with the prompt, we might need to
1004 compensate for invisible characters in the new line. Do
1005 this only if there is not more than one new line (which
1006 implies that we completely overwrite the old visible line)
1007 and the new line is shorter than the old. Make sure we are
1008 at the end of the new line before clearing. */
1010 inv_botlin
== 0 && _rl_last_c_pos
== out
&&
1011 (wrap_offset
> visible_wrap_offset
) &&
1012 (_rl_last_c_pos
< visible_first_line_len
))
1014 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1015 nleft
= _rl_screenwidth
- _rl_last_c_pos
;
1017 nleft
= _rl_screenwidth
+ wrap_offset
- _rl_last_c_pos
;
1019 _rl_clear_to_eol (nleft
);
1022 /* This segment is intended to handle the case where the prompt
1023 has invisible characters on the second line and the new line
1024 to be displayed needs to clear the rest of the old characters
1025 out (e.g., when printing the i-search prompt). In general,
1026 the case of the new line being shorter than the old.
1028 else if (linenum
== prompt_last_screen_line
&&
1029 prompt_physical_chars
> _rl_screenwidth
&&
1030 wrap_offset
!= prompt_invis_chars_first_line
&&
1031 _rl_last_c_pos
== out
&&
1035 /* Since the new first line is now visible, save its length. */
1037 visible_first_line_len
= (inv_botlin
> 0) ? inv_lbreaks
[1] : out
- wrap_offset
;
1040 /* We may have deleted some lines. If so, clear the left over
1041 blank ones at the bottom out. */
1042 if (_rl_vis_botlin
> inv_botlin
)
1045 for (; linenum
<= _rl_vis_botlin
; linenum
++)
1047 tt
= VIS_CHARS (linenum
);
1048 _rl_move_vert (linenum
);
1049 _rl_move_cursor_relative (0, tt
);
1051 ((linenum
== _rl_vis_botlin
) ? strlen (tt
) : _rl_screenwidth
);
1054 _rl_vis_botlin
= inv_botlin
;
1056 /* CHANGED_SCREEN_LINE is set to 1 if we have moved to a
1057 different screen line during this redisplay. */
1058 changed_screen_line
= _rl_last_v_pos
!= cursor_linenum
;
1059 if (changed_screen_line
)
1061 _rl_move_vert (cursor_linenum
);
1062 /* If we moved up to the line with the prompt using _rl_term_up,
1063 the physical cursor position on the screen stays the same,
1064 but the buffer position needs to be adjusted to account
1065 for invisible characters. */
1066 if ((MB_CUR_MAX
== 1 || rl_byte_oriented
) && cursor_linenum
== 0 && wrap_offset
)
1067 _rl_last_c_pos
+= wrap_offset
;
1070 /* We have to reprint the prompt if it contains invisible
1071 characters, since it's not generally OK to just reprint
1072 the characters from the current cursor position. But we
1073 only need to reprint it if the cursor is before the last
1074 invisible character in the prompt string. */
1075 nleft
= prompt_visible_length
+ wrap_offset
;
1076 if (cursor_linenum
== 0 && wrap_offset
> 0 && _rl_last_c_pos
> 0 &&
1078 _rl_last_c_pos
<= PROMPT_ENDING_INDEX
&& local_prompt
)
1080 _rl_last_c_pos
< PROMPT_ENDING_INDEX
&& local_prompt
)
1083 #if defined (__MSDOS__)
1084 putc ('\r', rl_outstream
);
1087 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
1090 _rl_output_some_chars ("*", 1);
1092 _rl_output_some_chars (local_prompt
, nleft
);
1093 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1094 _rl_last_c_pos
= _rl_col_width (local_prompt
, 0, nleft
, 1) - wrap_offset
+ modmark
;
1096 _rl_last_c_pos
= nleft
+ modmark
;
1099 /* Where on that line? And where does that line start
1101 pos
= inv_lbreaks
[cursor_linenum
];
1102 /* nleft == number of characters in the line buffer between the
1103 start of the line and the desired cursor position. */
1104 nleft
= cpos_buffer_position
- pos
;
1106 /* NLEFT is now a number of characters in a buffer. When in a
1107 multibyte locale, however, _rl_last_c_pos is an absolute cursor
1108 position that doesn't take invisible characters in the prompt
1109 into account. We use a fudge factor to compensate. */
1111 /* Since _rl_backspace() doesn't know about invisible characters in the
1112 prompt, and there's no good way to tell it, we compensate for
1113 those characters here and call _rl_backspace() directly. */
1114 if (wrap_offset
&& cursor_linenum
== 0 && nleft
< _rl_last_c_pos
)
1116 /* TX == new physical cursor position in multibyte locale. */
1117 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1118 tx
= _rl_col_width (&visible_line
[pos
], 0, nleft
, 1) - visible_wrap_offset
;
1121 if (tx
>= 0 && _rl_last_c_pos
> tx
)
1123 _rl_backspace (_rl_last_c_pos
- tx
); /* XXX */
1124 _rl_last_c_pos
= tx
;
1128 /* We need to note that in a multibyte locale we are dealing with
1129 _rl_last_c_pos as an absolute cursor position, but moving to a
1130 point specified by a buffer position (NLEFT) that doesn't take
1131 invisible characters into account. */
1132 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1133 _rl_move_cursor_relative (nleft
, &invisible_line
[pos
]);
1134 else if (nleft
!= _rl_last_c_pos
)
1135 _rl_move_cursor_relative (nleft
, &invisible_line
[pos
]);
1138 else /* Do horizontal scrolling. */
1140 #define M_OFFSET(margin, offset) ((margin) == 0 ? offset : 0)
1141 int lmargin
, ndisp
, nleft
, phys_c_pos
, t
;
1143 /* Always at top line. */
1146 /* Compute where in the buffer the displayed line should start. This
1149 /* The number of characters that will be displayed before the cursor. */
1150 ndisp
= cpos_buffer_position
- wrap_offset
;
1151 nleft
= prompt_visible_length
+ wrap_offset
;
1152 /* Where the new cursor position will be on the screen. This can be
1153 longer than SCREENWIDTH; if it is, lmargin will be adjusted. */
1154 phys_c_pos
= cpos_buffer_position
- (last_lmargin
? last_lmargin
: wrap_offset
);
1155 t
= _rl_screenwidth
/ 3;
1157 /* If the number of characters had already exceeded the screenwidth,
1158 last_lmargin will be > 0. */
1160 /* If the number of characters to be displayed is more than the screen
1161 width, compute the starting offset so that the cursor is about
1162 two-thirds of the way across the screen. */
1163 if (phys_c_pos
> _rl_screenwidth
- 2)
1165 lmargin
= cpos_buffer_position
- (2 * t
);
1168 /* If the left margin would be in the middle of a prompt with
1169 invisible characters, don't display the prompt at all. */
1170 if (wrap_offset
&& lmargin
> 0 && lmargin
< nleft
)
1173 else if (ndisp
< _rl_screenwidth
- 2) /* XXX - was -1 */
1175 else if (phys_c_pos
< 1)
1177 /* If we are moving back towards the beginning of the line and
1178 the last margin is no longer correct, compute a new one. */
1179 lmargin
= ((cpos_buffer_position
- 1) / t
) * t
; /* XXX */
1180 if (wrap_offset
&& lmargin
> 0 && lmargin
< nleft
)
1184 lmargin
= last_lmargin
;
1186 /* If the first character on the screen isn't the first character
1187 in the display line, indicate this with a special character. */
1189 line
[lmargin
] = '<';
1191 /* If SCREENWIDTH characters starting at LMARGIN do not encompass
1192 the whole line, indicate that with a special character at the
1193 right edge of the screen. If LMARGIN is 0, we need to take the
1194 wrap offset into account. */
1195 t
= lmargin
+ M_OFFSET (lmargin
, wrap_offset
) + _rl_screenwidth
;
1199 if (rl_display_fixed
== 0 || forced_display
|| lmargin
!= last_lmargin
)
1202 o_cpos
= _rl_last_c_pos
;
1204 update_line (&visible_line
[last_lmargin
],
1205 &invisible_line
[lmargin
],
1207 _rl_screenwidth
+ visible_wrap_offset
,
1208 _rl_screenwidth
+ (lmargin
? 0 : wrap_offset
),
1211 if ((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) && OLD_CPOS_IN_PROMPT())
1212 _rl_last_c_pos
-= prompt_invis_chars_first_line
; /* XXX - was wrap_offset */
1214 /* If the visible new line is shorter than the old, but the number
1215 of invisible characters is greater, and we are at the end of
1216 the new line, we need to clear to eol. */
1217 t
= _rl_last_c_pos
- M_OFFSET (lmargin
, wrap_offset
);
1218 if ((M_OFFSET (lmargin
, wrap_offset
) > visible_wrap_offset
) &&
1219 (_rl_last_c_pos
== out
) &&
1220 t
< visible_first_line_len
)
1222 nleft
= _rl_screenwidth
- t
;
1223 _rl_clear_to_eol (nleft
);
1225 visible_first_line_len
= out
- lmargin
- M_OFFSET (lmargin
, wrap_offset
);
1226 if (visible_first_line_len
> _rl_screenwidth
)
1227 visible_first_line_len
= _rl_screenwidth
;
1229 _rl_move_cursor_relative (cpos_buffer_position
- lmargin
, &invisible_line
[lmargin
]);
1230 last_lmargin
= lmargin
;
1233 fflush (rl_outstream
);
1235 /* Swap visible and non-visible lines. */
1237 struct line_state
*vtemp
= line_state_visible
;
1239 line_state_visible
= line_state_invisible
;
1240 line_state_invisible
= vtemp
;
1242 rl_display_fixed
= 0;
1243 /* If we are displaying on a single line, and last_lmargin is > 0, we
1244 are not displaying any invisible characters, so set visible_wrap_offset
1246 if (_rl_horizontal_scroll_mode
&& last_lmargin
)
1247 visible_wrap_offset
= 0;
1249 visible_wrap_offset
= wrap_offset
;
1252 RL_UNSETSTATE (RL_STATE_REDISPLAYING
);
1253 _rl_release_sigint ();
1256 /* PWP: update_line() is based on finding the middle difference of each
1257 line on the screen; vis:
1259 /old first difference
1260 /beginning of line | /old last same /old EOL
1262 old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as
1263 new: eddie> Oh, my little buggy says to me, as lurgid as
1265 \beginning of line | \new last same \new end of line
1266 \new first difference
1268 All are character pointers for the sake of speed. Special cases for
1269 no differences, as well as for end of line additions must be handled.
1271 Could be made even smarter, but this works well enough */
1273 update_line (old
, new, current_line
, omax
, nmax
, inv_botlin
)
1274 register char *old
, *new;
1275 int current_line
, omax
, nmax
, inv_botlin
;
1277 register char *ofd
, *ols
, *oe
, *nfd
, *nls
, *ne
;
1278 int temp
, lendiff
, wsatend
, od
, nd
, twidth
, o_cpos
;
1279 int current_invis_chars
;
1280 int col_lendiff
, col_temp
;
1281 #if defined (HANDLE_MULTIBYTE)
1282 mbstate_t ps_new
, ps_old
;
1283 int new_offset
, old_offset
;
1286 /* If we're at the right edge of a terminal that supports xn, we're
1287 ready to wrap around, so do so. This fixes problems with knowing
1288 the exact cursor position and cut-and-paste with certain terminal
1289 emulators. In this calculation, TEMP is the physical screen
1290 position of the cursor. */
1291 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1292 temp
= _rl_last_c_pos
;
1294 temp
= _rl_last_c_pos
- WRAP_OFFSET (_rl_last_v_pos
, visible_wrap_offset
);
1295 if (temp
== _rl_screenwidth
&& _rl_term_autowrap
&& !_rl_horizontal_scroll_mode
1296 && _rl_last_v_pos
== current_line
- 1)
1298 #if defined (HANDLE_MULTIBYTE)
1299 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1303 int tempwidth
, bytes
;
1306 /* This fixes only double-column characters, but if the wrapped
1307 character comsumes more than three columns, spaces will be
1308 inserted in the string buffer. */
1309 if (current_line
< line_state_visible
->wbsize
&& line_state_visible
->wrapped_line
[current_line
] > 0)
1310 _rl_clear_to_eol (line_state_visible
->wrapped_line
[current_line
]);
1312 memset (&ps
, 0, sizeof (mbstate_t));
1313 ret
= mbrtowc (&wc
, new, MB_CUR_MAX
, &ps
);
1314 if (MB_INVALIDCH (ret
))
1319 else if (MB_NULLWCH (ret
))
1322 tempwidth
= wcwidth (wc
);
1328 for (count
= 0; count
< bytes
; count
++)
1329 putc (new[count
], rl_outstream
);
1330 _rl_last_c_pos
= tempwidth
;
1332 memset (&ps
, 0, sizeof (mbstate_t));
1333 ret
= mbrtowc (&wc
, old
, MB_CUR_MAX
, &ps
);
1334 if (ret
!= 0 && bytes
!= 0)
1336 if (MB_INVALIDCH (ret
))
1338 memmove (old
+bytes
, old
+ret
, strlen (old
+ret
));
1339 memcpy (old
, new, bytes
);
1340 /* Fix up indices if we copy data from one line to another */
1341 omax
+= bytes
- ret
;
1342 for (i
= current_line
+1; i
< inv_botlin
+1; i
++)
1343 vis_lbreaks
[i
] += bytes
- ret
;
1348 putc (' ', rl_outstream
);
1351 if (old
[0] && new[0])
1359 putc (new[0], rl_outstream
);
1361 putc (' ', rl_outstream
);
1364 if (old
[0] && new[0])
1370 /* Find first difference. */
1371 #if defined (HANDLE_MULTIBYTE)
1372 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1374 /* See if the old line is a subset of the new line, so that the
1375 only change is adding characters. */
1376 temp
= (omax
< nmax
) ? omax
: nmax
;
1377 if (memcmp (old
, new, temp
) == 0) /* adding at the end */
1384 memset (&ps_new
, 0, sizeof(mbstate_t));
1385 memset (&ps_old
, 0, sizeof(mbstate_t));
1387 if (omax
== nmax
&& STREQN (new, old
, omax
))
1394 new_offset
= old_offset
= 0;
1395 for (ofd
= old
, nfd
= new;
1396 (ofd
- old
< omax
) && *ofd
&&
1397 _rl_compare_chars(old
, old_offset
, &ps_old
, new, new_offset
, &ps_new
); )
1399 old_offset
= _rl_find_next_mbchar (old
, old_offset
, 1, MB_FIND_ANY
);
1400 new_offset
= _rl_find_next_mbchar (new, new_offset
, 1, MB_FIND_ANY
);
1401 ofd
= old
+ old_offset
;
1402 nfd
= new + new_offset
;
1409 for (ofd
= old
, nfd
= new;
1410 (ofd
- old
< omax
) && *ofd
&& (*ofd
== *nfd
);
1414 /* Move to the end of the screen line. ND and OD are used to keep track
1415 of the distance between ne and new and oe and old, respectively, to
1416 move a subtraction out of each loop. */
1417 for (od
= ofd
- old
, oe
= ofd
; od
< omax
&& *oe
; oe
++, od
++);
1418 for (nd
= nfd
- new, ne
= nfd
; nd
< nmax
&& *ne
; ne
++, nd
++);
1420 /* If no difference, continue to next line. */
1421 if (ofd
== oe
&& nfd
== ne
)
1424 wsatend
= 1; /* flag for trailing whitespace */
1426 #if defined (HANDLE_MULTIBYTE)
1427 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1429 ols
= old
+ _rl_find_prev_mbchar (old
, oe
- old
, MB_FIND_ANY
);
1430 nls
= new + _rl_find_prev_mbchar (new, ne
- new, MB_FIND_ANY
);
1431 while ((ols
> ofd
) && (nls
> nfd
))
1433 memset (&ps_old
, 0, sizeof (mbstate_t));
1434 memset (&ps_new
, 0, sizeof (mbstate_t));
1437 /* On advice from jir@yamato.ibm.com */
1438 _rl_adjust_point (old
, ols
- old
, &ps_old
);
1439 _rl_adjust_point (new, nls
- new, &ps_new
);
1442 if (_rl_compare_chars (old
, ols
- old
, &ps_old
, new, nls
- new, &ps_new
) == 0)
1448 ols
= old
+ _rl_find_prev_mbchar (old
, ols
- old
, MB_FIND_ANY
);
1449 nls
= new + _rl_find_prev_mbchar (new, nls
- new, MB_FIND_ANY
);
1454 #endif /* HANDLE_MULTIBYTE */
1455 ols
= oe
- 1; /* find last same */
1457 while ((ols
> ofd
) && (nls
> nfd
) && (*ols
== *nls
))
1464 #if defined (HANDLE_MULTIBYTE)
1473 #if defined (HANDLE_MULTIBYTE)
1474 /* This may not work for stateful encoding, but who cares? To handle
1475 stateful encoding properly, we have to scan each string from the
1476 beginning and compare. */
1477 else if (_rl_compare_chars (ols
, 0, NULL
, nls
, 0, NULL
) == 0)
1479 else if (*ols
!= *nls
)
1482 if (*ols
) /* don't step past the NUL */
1484 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1485 ols
= old
+ _rl_find_next_mbchar (old
, ols
- old
, 1, MB_FIND_ANY
);
1491 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1492 nls
= new + _rl_find_next_mbchar (new, nls
- new, 1, MB_FIND_ANY
);
1498 /* count of invisible characters in the current invisible line. */
1499 current_invis_chars
= W_OFFSET (current_line
, wrap_offset
);
1500 if (_rl_last_v_pos
!= current_line
)
1502 _rl_move_vert (current_line
);
1503 if ((MB_CUR_MAX
== 1 || rl_byte_oriented
) && current_line
== 0 && visible_wrap_offset
)
1504 _rl_last_c_pos
+= visible_wrap_offset
;
1507 /* If this is the first line and there are invisible characters in the
1508 prompt string, and the prompt string has not changed, and the current
1509 cursor position is before the last invisible character in the prompt,
1510 and the index of the character to move to is past the end of the prompt
1511 string, then redraw the entire prompt string. We can only do this
1512 reliably if the terminal supports a `cr' capability.
1514 This is not an efficiency hack -- there is a problem with redrawing
1515 portions of the prompt string if they contain terminal escape
1516 sequences (like drawing the `unbold' sequence without a corresponding
1517 `bold') that manifests itself on certain terminals. */
1519 lendiff
= local_prompt_len
;
1520 od
= ofd
- old
; /* index of first difference in visible line */
1521 if (current_line
== 0 && !_rl_horizontal_scroll_mode
&&
1522 _rl_term_cr
&& lendiff
> prompt_visible_length
&& _rl_last_c_pos
> 0 &&
1523 od
>= lendiff
&& _rl_last_c_pos
< PROMPT_ENDING_INDEX
)
1525 #if defined (__MSDOS__)
1526 putc ('\r', rl_outstream
);
1528 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
1531 _rl_output_some_chars ("*", 1);
1532 _rl_output_some_chars (local_prompt
, lendiff
);
1533 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1535 /* We take wrap_offset into account here so we can pass correct
1536 information to _rl_move_cursor_relative. */
1537 _rl_last_c_pos
= _rl_col_width (local_prompt
, 0, lendiff
, 1) - wrap_offset
+ modmark
;
1541 _rl_last_c_pos
= lendiff
+ modmark
;
1544 o_cpos
= _rl_last_c_pos
;
1546 /* When this function returns, _rl_last_c_pos is correct, and an absolute
1547 cursor postion in multibyte mode, but a buffer index when not in a
1548 multibyte locale. */
1549 _rl_move_cursor_relative (od
, old
);
1551 #if defined (HANDLE_MULTIBYTE)
1552 /* We need to indicate that the cursor position is correct in the presence of
1553 invisible characters in the prompt string. Let's see if setting this when
1554 we make sure we're at the end of the drawn prompt string works. */
1555 if (current_line
== 0 && MB_CUR_MAX
> 1 && rl_byte_oriented
== 0 &&
1556 (_rl_last_c_pos
> 0 || o_cpos
> 0) &&
1557 _rl_last_c_pos
== prompt_physical_chars
)
1562 /* if (len (new) > len (old))
1563 lendiff == difference in buffer
1564 col_lendiff == difference on screen
1565 When not using multibyte characters, these are equal */
1566 lendiff
= (nls
- nfd
) - (ols
- ofd
);
1567 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1568 col_lendiff
= _rl_col_width (new, nfd
- new, nls
- new, 1) - _rl_col_width (old
, ofd
- old
, ols
- old
, 1);
1570 col_lendiff
= lendiff
;
1572 /* If we are changing the number of invisible characters in a line, and
1573 the spot of first difference is before the end of the invisible chars,
1574 lendiff needs to be adjusted. */
1575 if (current_line
== 0 && !_rl_horizontal_scroll_mode
&&
1576 current_invis_chars
!= visible_wrap_offset
)
1578 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1580 lendiff
+= visible_wrap_offset
- current_invis_chars
;
1581 col_lendiff
+= visible_wrap_offset
- current_invis_chars
;
1585 lendiff
+= visible_wrap_offset
- current_invis_chars
;
1586 col_lendiff
= lendiff
;
1590 /* Insert (diff (len (old), len (new)) ch. */
1592 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1593 col_temp
= _rl_col_width (new, nfd
- new, ne
- new, 1);
1597 if (col_lendiff
> 0) /* XXX - was lendiff */
1599 /* Non-zero if we're increasing the number of lines. */
1600 int gl
= current_line
>= _rl_vis_botlin
&& inv_botlin
> _rl_vis_botlin
;
1601 /* If col_lendiff is > 0, implying that the new string takes up more
1602 screen real estate than the old, but lendiff is < 0, meaning that it
1603 takes fewer bytes, we need to just output the characters starting
1604 from the first difference. These will overwrite what is on the
1605 display, so there's no reason to do a smart update. This can really
1606 only happen in a multibyte environment. */
1609 _rl_output_some_chars (nfd
, temp
);
1610 _rl_last_c_pos
+= _rl_col_width (nfd
, 0, temp
, 1);
1611 /* If nfd begins before any invisible characters in the prompt,
1612 adjust _rl_last_c_pos to account for wrap_offset and set
1613 cpos_adjusted to let the caller know. */
1614 if (current_line
== 0 && wrap_offset
&& ((nfd
- new) <= prompt_last_invisible
))
1616 _rl_last_c_pos
-= wrap_offset
;
1621 /* Sometimes it is cheaper to print the characters rather than
1622 use the terminal's capabilities. If we're growing the number
1623 of lines, make sure we actually cause the new line to wrap
1624 around on auto-wrapping terminals. */
1625 else if (_rl_terminal_can_insert
&& ((2 * col_temp
) >= col_lendiff
|| _rl_term_IC
) && (!_rl_term_autowrap
|| !gl
))
1627 /* If lendiff > prompt_visible_length and _rl_last_c_pos == 0 and
1628 _rl_horizontal_scroll_mode == 1, inserting the characters with
1629 _rl_term_IC or _rl_term_ic will screw up the screen because of the
1630 invisible characters. We need to just draw them. */
1631 /* The same thing happens if we're trying to draw before the last
1632 invisible character in the prompt string or we're increasing the
1633 number of invisible characters in the line and we're not drawing
1634 the entire prompt string. */
1635 if (*ols
&& ((_rl_horizontal_scroll_mode
&&
1636 _rl_last_c_pos
== 0 &&
1637 lendiff
> prompt_visible_length
&&
1638 current_invis_chars
> 0) == 0) &&
1639 (((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) &&
1640 current_line
== 0 && wrap_offset
&&
1641 ((nfd
- new) <= prompt_last_invisible
) &&
1642 (col_lendiff
< prompt_visible_length
)) == 0) &&
1643 (visible_wrap_offset
>= current_invis_chars
))
1645 insert_some_chars (nfd
, lendiff
, col_lendiff
);
1646 _rl_last_c_pos
+= col_lendiff
;
1648 #if 0 /* XXX - for now */
1649 else if ((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) && _rl_last_c_pos
== 0 && wrap_offset
&& (nfd
-new) <= prompt_last_invisible
&& col_lendiff
< prompt_visible_length
&& visible_wrap_offset
>= current_invis_chars
)
1651 _rl_output_some_chars (nfd
, lendiff
);
1652 _rl_last_c_pos
+= col_lendiff
;
1655 else if ((MB_CUR_MAX
== 1 || rl_byte_oriented
!= 0) && *ols
== 0 && lendiff
> 0)
1657 /* At the end of a line the characters do not have to
1658 be "inserted". They can just be placed on the screen. */
1659 /* However, this screws up the rest of this block, which
1660 assumes you've done the insert because you can. */
1661 _rl_output_some_chars (nfd
, lendiff
);
1662 _rl_last_c_pos
+= col_lendiff
;
1666 _rl_output_some_chars (nfd
, temp
);
1667 _rl_last_c_pos
+= col_temp
;
1668 /* If nfd begins before the last invisible character in the
1669 prompt, adjust _rl_last_c_pos to account for wrap_offset
1670 and set cpos_adjusted to let the caller know. */
1671 if ((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) && current_line
== 0 && wrap_offset
&& ((nfd
- new) <= prompt_last_invisible
))
1673 _rl_last_c_pos
-= wrap_offset
;
1678 /* Copy (new) chars to screen from first diff to last match. */
1680 if ((temp
- lendiff
) > 0)
1682 _rl_output_some_chars (nfd
+ lendiff
, temp
- lendiff
);
1683 /* XXX -- this bears closer inspection. Fixes a redisplay bug
1684 reported against bash-3.0-alpha by Andreas Schwab involving
1685 multibyte characters and prompt strings with invisible
1686 characters, but was previously disabled. */
1687 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1688 twidth
= _rl_col_width (nfd
+lendiff
, 0, temp
-col_lendiff
, 1);
1690 twidth
= temp
- lendiff
;
1691 _rl_last_c_pos
+= twidth
;
1692 /* If nfd begins before the last invisible character in the
1693 prompt, adjust _rl_last_c_pos to account for wrap_offset
1694 and set cpos_adjusted to let the caller know. */
1695 if ((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) && current_line
== 0 && wrap_offset
&& ((nfd
- new) <= prompt_last_invisible
))
1697 _rl_last_c_pos
-= wrap_offset
;
1704 /* cannot insert chars, write to EOL */
1705 _rl_output_some_chars (nfd
, temp
);
1706 _rl_last_c_pos
+= col_temp
;
1707 /* If we're in a multibyte locale and were before the last invisible
1708 char in the current line (which implies we just output some invisible
1709 characters) we need to adjust _rl_last_c_pos, since it represents
1710 a physical character position. */
1711 if ((MB_CUR_MAX
> 1 && rl_byte_oriented
== 0) &&
1712 current_line
== prompt_last_screen_line
&& wrap_offset
&&
1713 wrap_offset
!= prompt_invis_chars_first_line
&&
1714 ((nfd
-new) < (prompt_last_invisible
-(current_line
*_rl_screenwidth
))))
1716 _rl_last_c_pos
-= wrap_offset
- prompt_invis_chars_first_line
;
1721 else /* Delete characters from line. */
1723 /* If possible and inexpensive to use terminal deletion, then do so. */
1724 if (_rl_term_dc
&& (2 * col_temp
) >= -col_lendiff
)
1726 /* If all we're doing is erasing the invisible characters in the
1727 prompt string, don't bother. It screws up the assumptions
1728 about what's on the screen. */
1729 if (_rl_horizontal_scroll_mode
&& _rl_last_c_pos
== 0 &&
1730 -lendiff
== visible_wrap_offset
)
1734 delete_chars (-col_lendiff
); /* delete (diff) characters */
1736 /* Copy (new) chars to screen from first diff to last match */
1740 /* If nfd begins at the prompt, or before the invisible
1741 characters in the prompt, we need to adjust _rl_last_c_pos
1742 in a multibyte locale to account for the wrap offset and
1743 set cpos_adjusted accordingly. */
1744 _rl_output_some_chars (nfd
, temp
);
1745 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1747 _rl_last_c_pos
+= _rl_col_width (nfd
, 0, temp
, 1);
1748 if (current_line
== 0 && wrap_offset
&& ((nfd
- new) <= prompt_last_invisible
))
1750 _rl_last_c_pos
-= wrap_offset
;
1755 _rl_last_c_pos
+= temp
;
1758 /* Otherwise, print over the existing material. */
1763 /* If nfd begins at the prompt, or before the invisible
1764 characters in the prompt, we need to adjust _rl_last_c_pos
1765 in a multibyte locale to account for the wrap offset and
1766 set cpos_adjusted accordingly. */
1767 _rl_output_some_chars (nfd
, temp
);
1768 _rl_last_c_pos
+= col_temp
; /* XXX */
1769 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1771 if (current_line
== 0 && wrap_offset
&& ((nfd
- new) <= prompt_last_invisible
))
1773 _rl_last_c_pos
-= wrap_offset
;
1778 lendiff
= (oe
- old
) - (ne
- new);
1779 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1780 col_lendiff
= _rl_col_width (old
, 0, oe
- old
, 1) - _rl_col_width (new, 0, ne
- new, 1);
1782 col_lendiff
= lendiff
;
1787 /* If we've already printed over the entire width of the screen,
1788 including the old material, then col_lendiff doesn't matter and
1789 space_to_eol will insert too many spaces. XXX - maybe we should
1790 adjust col_lendiff based on the difference between _rl_last_c_pos
1791 and _rl_screenwidth */
1792 if (col_lendiff
&& ((MB_CUR_MAX
== 1 || rl_byte_oriented
) || (_rl_last_c_pos
< _rl_screenwidth
)))
1795 if (_rl_term_autowrap
&& current_line
< inv_botlin
)
1796 space_to_eol (col_lendiff
);
1798 _rl_clear_to_eol (col_lendiff
);
1804 /* Tell the update routines that we have moved onto a new (empty) line. */
1809 visible_line
[0] = '\0';
1811 _rl_last_c_pos
= _rl_last_v_pos
= 0;
1812 _rl_vis_botlin
= last_lmargin
= 0;
1814 vis_lbreaks
[0] = vis_lbreaks
[1] = 0;
1815 visible_wrap_offset
= 0;
1819 /* Tell the update routines that we have moved onto a new line with the
1820 prompt already displayed. Code originally from the version of readline
1821 distributed with CLISP. rl_expand_prompt must have already been called
1822 (explicitly or implicitly). This still doesn't work exactly right. */
1824 rl_on_new_line_with_prompt ()
1826 int prompt_size
, i
, l
, real_screenwidth
, newlines
;
1827 char *prompt_last_line
, *lprompt
;
1829 /* Initialize visible_line and invisible_line to ensure that they can hold
1830 the already-displayed prompt. */
1831 prompt_size
= strlen (rl_prompt
) + 1;
1832 init_line_structures (prompt_size
);
1834 /* Make sure the line structures hold the already-displayed prompt for
1836 lprompt
= local_prompt
? local_prompt
: rl_prompt
;
1837 strcpy (visible_line
, lprompt
);
1838 strcpy (invisible_line
, lprompt
);
1840 /* If the prompt contains newlines, take the last tail. */
1841 prompt_last_line
= strrchr (rl_prompt
, '\n');
1842 if (!prompt_last_line
)
1843 prompt_last_line
= rl_prompt
;
1845 l
= strlen (prompt_last_line
);
1846 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1847 _rl_last_c_pos
= _rl_col_width (prompt_last_line
, 0, l
, 1); /* XXX */
1851 /* Dissect prompt_last_line into screen lines. Note that here we have
1852 to use the real screenwidth. Readline's notion of screenwidth might be
1853 one less, see terminal.c. */
1854 real_screenwidth
= _rl_screenwidth
+ (_rl_term_autowrap
? 0 : 1);
1855 _rl_last_v_pos
= l
/ real_screenwidth
;
1856 /* If the prompt length is a multiple of real_screenwidth, we don't know
1857 whether the cursor is at the end of the last line, or already at the
1858 beginning of the next line. Output a newline just to be safe. */
1859 if (l
> 0 && (l
% real_screenwidth
) == 0)
1860 _rl_output_some_chars ("\n", 1);
1863 newlines
= 0; i
= 0;
1866 _rl_vis_botlin
= newlines
;
1867 vis_lbreaks
[newlines
++] = i
;
1868 i
+= real_screenwidth
;
1870 vis_lbreaks
[newlines
] = l
;
1871 visible_wrap_offset
= 0;
1873 rl_display_prompt
= rl_prompt
; /* XXX - make sure it's set */
1878 /* Actually update the display, period. */
1880 rl_forced_update_display ()
1882 register char *temp
;
1886 temp
= visible_line
;
1892 (*rl_redisplay_function
) ();
1896 /* Move the cursor from _rl_last_c_pos to NEW, which are buffer indices.
1897 (Well, when we don't have multibyte characters, _rl_last_c_pos is a
1899 DATA is the contents of the screen line of interest; i.e., where
1900 the movement is being done. */
1902 _rl_move_cursor_relative (new, data
)
1907 int woff
; /* number of invisible chars on current line */
1908 int cpos
, dpos
; /* current and desired cursor positions */
1911 woff
= WRAP_OFFSET (_rl_last_v_pos
, wrap_offset
);
1912 cpos
= _rl_last_c_pos
;
1914 if (cpos
== 0 && cpos
== new)
1917 #if defined (HANDLE_MULTIBYTE)
1918 /* If we have multibyte characters, NEW is indexed by the buffer point in
1919 a multibyte string, but _rl_last_c_pos is the display position. In
1920 this case, NEW's display position is not obvious and must be
1921 calculated. We need to account for invisible characters in this line,
1922 as long as we are past them and they are counted by _rl_col_width. */
1923 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1926 /* Try to short-circuit common cases and eliminate a bunch of multibyte
1927 character function calls. */
1928 /* 1. prompt string */
1929 if (new == local_prompt_len
&& memcmp (data
, local_prompt
, new) == 0)
1931 dpos
= prompt_physical_chars
;
1935 /* 2. prompt_string + line contents */
1936 else if (new > local_prompt_len
&& local_prompt
&& memcmp (data
, local_prompt
, local_prompt_len
) == 0)
1938 dpos
= prompt_physical_chars
+ _rl_col_width (data
, local_prompt_len
, new, 1);
1943 dpos
= _rl_col_width (data
, 0, new, 1);
1945 /* Use NEW when comparing against the last invisible character in the
1946 prompt string, since they're both buffer indices and DPOS is a
1947 desired display position. */
1948 if (adjust
&& ((new > prompt_last_invisible
) || /* XXX - don't use woff here */
1949 (prompt_physical_chars
>= _rl_screenwidth
&&
1950 _rl_last_v_pos
== prompt_last_screen_line
&&
1951 wrap_offset
>= woff
&& dpos
>= woff
&&
1952 new > (prompt_last_invisible
-(_rl_screenwidth
*_rl_last_v_pos
)-wrap_offset
))))
1953 /* XXX last comparison might need to be >= */
1956 /* Since this will be assigned to _rl_last_c_pos at the end (more
1957 precisely, _rl_last_c_pos == dpos when this function returns),
1958 let the caller know. */
1966 /* If we don't have to do anything, then return. */
1970 /* It may be faster to output a CR, and then move forwards instead
1971 of moving backwards. */
1972 /* i == current physical cursor position. */
1973 #if defined (HANDLE_MULTIBYTE)
1974 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
1978 i
= _rl_last_c_pos
- woff
;
1979 if (dpos
== 0 || CR_FASTER (dpos
, _rl_last_c_pos
) ||
1980 (_rl_term_autowrap
&& i
== _rl_screenwidth
))
1982 #if defined (__MSDOS__)
1983 putc ('\r', rl_outstream
);
1985 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
1986 #endif /* !__MSDOS__ */
1987 cpos
= _rl_last_c_pos
= 0;
1992 /* Move the cursor forward. We do it by printing the command
1993 to move the cursor forward if there is one, else print that
1994 portion of the output buffer again. Which is cheaper? */
1996 /* The above comment is left here for posterity. It is faster
1997 to print one character (non-control) than to print a control
1998 sequence telling the terminal to move forward one character.
1999 That kind of control is for people who don't know what the
2000 data is underneath the cursor. */
2002 /* However, we need a handle on where the current display position is
2003 in the buffer for the immediately preceding comment to be true.
2004 In multibyte locales, we don't currently have that info available.
2005 Without it, we don't know where the data we have to display begins
2006 in the buffer and we have to go back to the beginning of the screen
2007 line. In this case, we can use the terminal sequence to move forward
2008 if it's available. */
2009 if (MB_CUR_MAX
> 1 && rl_byte_oriented
== 0)
2011 if (_rl_term_forward_char
)
2013 for (i
= cpos
; i
< dpos
; i
++)
2014 tputs (_rl_term_forward_char
, 1, _rl_output_character_function
);
2018 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
2019 for (i
= 0; i
< new; i
++)
2020 putc (data
[i
], rl_outstream
);
2024 for (i
= cpos
; i
< new; i
++)
2025 putc (data
[i
], rl_outstream
);
2028 #if defined (HANDLE_MULTIBYTE)
2029 /* NEW points to the buffer point, but _rl_last_c_pos is the display point.
2030 The byte length of the string is probably bigger than the column width
2031 of the string, which means that if NEW == _rl_last_c_pos, then NEW's
2032 display point is less than _rl_last_c_pos. */
2034 else if (cpos
> dpos
)
2035 _rl_backspace (cpos
- dpos
);
2037 _rl_last_c_pos
= dpos
;
2040 /* PWP: move the cursor up or down. */
2045 register int delta
, i
;
2047 if (_rl_last_v_pos
== to
|| to
> _rl_screenheight
)
2050 if ((delta
= to
- _rl_last_v_pos
) > 0)
2052 for (i
= 0; i
< delta
; i
++)
2053 putc ('\n', rl_outstream
);
2054 #if defined (__MSDOS__)
2055 putc ('\r', rl_outstream
);
2057 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
2066 fflush (rl_outstream
); /* make sure the cursor pos is current! */
2067 ScreenGetCursor (&row
, &col
);
2068 ScreenSetCursor (row
+ delta
, col
);
2069 i
= -delta
; /* in case someone wants to use it after the loop */
2070 #else /* !__MSDOS__ */
2071 if (_rl_term_up
&& *_rl_term_up
)
2072 for (i
= 0; i
< -delta
; i
++)
2073 tputs (_rl_term_up
, 1, _rl_output_character_function
);
2074 #endif /* !__MSDOS__ */
2077 _rl_last_v_pos
= to
; /* Now TO is here */
2080 /* Physically print C on rl_outstream. This is for functions which know
2081 how to optimize the display. Return the number of characters output. */
2087 if (META_CHAR (c
) && (_rl_output_meta_chars
== 0))
2089 fprintf (rl_outstream
, "M-");
2094 #if defined (DISPLAY_TABS)
2095 if ((CTRL_CHAR (c
) && c
!= '\t') || c
== RUBOUT
)
2097 if (CTRL_CHAR (c
) || c
== RUBOUT
)
2098 #endif /* !DISPLAY_TABS */
2100 fprintf (rl_outstream
, "C-");
2102 c
= CTRL_CHAR (c
) ? UNCTRL (c
) : '?';
2105 putc (c
, rl_outstream
);
2106 fflush (rl_outstream
);
2111 rl_character_len (c
, pos
)
2112 register int c
, pos
;
2116 uc
= (unsigned char)c
;
2119 return ((_rl_output_meta_chars
== 0) ? 4 : 1);
2123 #if defined (DISPLAY_TABS)
2124 return (((pos
| 7) + 1) - pos
);
2127 #endif /* !DISPLAY_TABS */
2130 if (CTRL_CHAR (c
) || c
== RUBOUT
)
2133 return ((ISPRINT (uc
)) ? 1 : 2);
2135 /* How to print things in the "echo-area". The prompt is treated as a
2137 static int msg_saved_prompt
= 0;
2139 #if defined (USE_VARARGS)
2141 #if defined (PREFER_STDARG)
2142 rl_message (const char *format
, ...)
2144 rl_message (va_alist
)
2149 #if defined (PREFER_VARARGS)
2153 #if defined (PREFER_STDARG)
2154 va_start (args
, format
);
2157 format
= va_arg (args
, char *);
2160 #if defined (HAVE_VSNPRINTF)
2161 vsnprintf (msg_buf
, sizeof (msg_buf
) - 1, format
, args
);
2163 vsprintf (msg_buf
, format
, args
);
2164 msg_buf
[sizeof(msg_buf
) - 1] = '\0'; /* overflow? */
2168 if (saved_local_prompt
== 0)
2171 msg_saved_prompt
= 1;
2173 rl_display_prompt
= msg_buf
;
2174 local_prompt
= expand_prompt (msg_buf
, &prompt_visible_length
,
2175 &prompt_last_invisible
,
2176 &prompt_invis_chars_first_line
,
2177 &prompt_physical_chars
);
2178 local_prompt_prefix
= (char *)NULL
;
2179 local_prompt_len
= local_prompt
? strlen (local_prompt
) : 0;
2180 (*rl_redisplay_function
) ();
2184 #else /* !USE_VARARGS */
2186 rl_message (format
, arg1
, arg2
)
2189 sprintf (msg_buf
, format
, arg1
, arg2
);
2190 msg_buf
[sizeof(msg_buf
) - 1] = '\0'; /* overflow? */
2192 rl_display_prompt
= msg_buf
;
2193 if (saved_local_prompt
== 0)
2196 msg_saved_prompt
= 1;
2198 local_prompt
= expand_prompt (msg_buf
, &prompt_visible_length
,
2199 &prompt_last_invisible
,
2200 &prompt_invis_chars_first_line
,
2201 &prompt_physical_chars
);
2202 local_prompt_prefix
= (char *)NULL
;
2203 local_prompt_len
= local_prompt
? strlen (local_prompt
) : 0;
2204 (*rl_redisplay_function
) ();
2208 #endif /* !USE_VARARGS */
2210 /* How to clear things from the "echo-area". */
2214 rl_display_prompt
= rl_prompt
;
2215 if (msg_saved_prompt
)
2217 rl_restore_prompt ();
2218 msg_saved_prompt
= 0;
2220 (*rl_redisplay_function
) ();
2225 rl_reset_line_state ()
2229 rl_display_prompt
= rl_prompt
? rl_prompt
: "";
2237 saved_local_prompt
= local_prompt
;
2238 saved_local_prefix
= local_prompt_prefix
;
2239 saved_prefix_length
= prompt_prefix_length
;
2240 saved_local_length
= local_prompt_len
;
2241 saved_last_invisible
= prompt_last_invisible
;
2242 saved_visible_length
= prompt_visible_length
;
2243 saved_invis_chars_first_line
= prompt_invis_chars_first_line
;
2244 saved_physical_chars
= prompt_physical_chars
;
2246 local_prompt
= local_prompt_prefix
= (char *)0;
2247 local_prompt_len
= 0;
2248 prompt_last_invisible
= prompt_visible_length
= prompt_prefix_length
= 0;
2249 prompt_invis_chars_first_line
= prompt_physical_chars
= 0;
2253 rl_restore_prompt ()
2255 FREE (local_prompt
);
2256 FREE (local_prompt_prefix
);
2258 local_prompt
= saved_local_prompt
;
2259 local_prompt_prefix
= saved_local_prefix
;
2260 local_prompt_len
= saved_local_length
;
2261 prompt_prefix_length
= saved_prefix_length
;
2262 prompt_last_invisible
= saved_last_invisible
;
2263 prompt_visible_length
= saved_visible_length
;
2264 prompt_invis_chars_first_line
= saved_invis_chars_first_line
;
2265 prompt_physical_chars
= saved_physical_chars
;
2267 /* can test saved_local_prompt to see if prompt info has been saved. */
2268 saved_local_prompt
= saved_local_prefix
= (char *)0;
2269 saved_local_length
= 0;
2270 saved_last_invisible
= saved_visible_length
= saved_prefix_length
= 0;
2271 saved_invis_chars_first_line
= saved_physical_chars
= 0;
2275 _rl_make_prompt_for_search (pchar
)
2283 /* We've saved the prompt, and can do anything with the various prompt
2284 strings we need before they're restored. We want the unexpanded
2285 portion of the prompt string after any final newline. */
2286 p
= rl_prompt
? strrchr (rl_prompt
, '\n') : 0;
2289 len
= (rl_prompt
&& *rl_prompt
) ? strlen (rl_prompt
) : 0;
2290 pmt
= (char *)xmalloc (len
+ 2);
2292 strcpy (pmt
, rl_prompt
);
2300 pmt
= (char *)xmalloc (len
+ 2);
2307 /* will be overwritten by expand_prompt, called from rl_message */
2308 prompt_physical_chars
= saved_physical_chars
+ 1;
2312 /* Quick redisplay hack when erasing characters at the end of the line. */
2314 _rl_erase_at_end_of_line (l
)
2320 for (i
= 0; i
< l
; i
++)
2321 putc (' ', rl_outstream
);
2323 for (i
= 0; i
< l
; i
++)
2324 visible_line
[--_rl_last_c_pos
] = '\0';
2328 /* Clear to the end of the line. COUNT is the minimum
2329 number of character spaces to clear, */
2331 _rl_clear_to_eol (count
)
2335 if (_rl_term_clreol
)
2336 tputs (_rl_term_clreol
, 1, _rl_output_character_function
);
2340 space_to_eol (count
);
2343 /* Clear to the end of the line using spaces. COUNT is the minimum
2344 number of character spaces to clear, */
2346 space_to_eol (count
)
2351 for (i
= 0; i
< count
; i
++)
2352 putc (' ', rl_outstream
);
2354 _rl_last_c_pos
+= count
;
2360 #if defined (__GO32__)
2361 ScreenClear (); /* FIXME: only works in text modes */
2362 ScreenSetCursor (0, 0); /* term_clrpag is "cl" which homes the cursor */
2364 if (_rl_term_clrpag
)
2365 tputs (_rl_term_clrpag
, 1, _rl_output_character_function
);
2371 /* Insert COUNT characters from STRING to the output stream at column COL. */
2373 insert_some_chars (string
, count
, col
)
2377 #if defined (__MSDOS__) || defined (__MINGW32__)
2378 _rl_output_some_chars (string
, count
);
2381 if (MB_CUR_MAX
== 1 || rl_byte_oriented
)
2383 _rl_ttymsg ("debug: insert_some_chars: count (%d) != col (%d)", count
, col
);
2385 /* If IC is defined, then we do not have to "enter" insert mode. */
2390 buffer
= tgoto (_rl_term_IC
, 0, col
);
2391 tputs (buffer
, 1, _rl_output_character_function
);
2392 _rl_output_some_chars (string
, count
);
2398 /* If we have to turn on insert-mode, then do so. */
2399 if (_rl_term_im
&& *_rl_term_im
)
2400 tputs (_rl_term_im
, 1, _rl_output_character_function
);
2402 /* If there is a special command for inserting characters, then
2403 use that first to open up the space. */
2404 if (_rl_term_ic
&& *_rl_term_ic
)
2406 for (i
= col
; i
--; )
2407 tputs (_rl_term_ic
, 1, _rl_output_character_function
);
2410 /* Print the text. */
2411 _rl_output_some_chars (string
, count
);
2413 /* If there is a string to turn off insert mode, we had best use
2415 if (_rl_term_ei
&& *_rl_term_ei
)
2416 tputs (_rl_term_ei
, 1, _rl_output_character_function
);
2418 #endif /* __MSDOS__ || __MINGW32__ */
2421 /* Delete COUNT characters from the display line. */
2423 delete_chars (count
)
2426 if (count
> _rl_screenwidth
) /* XXX */
2429 #if !defined (__MSDOS__) && !defined (__MINGW32__)
2430 if (_rl_term_DC
&& *_rl_term_DC
)
2433 buffer
= tgoto (_rl_term_DC
, count
, count
);
2434 tputs (buffer
, count
, _rl_output_character_function
);
2438 if (_rl_term_dc
&& *_rl_term_dc
)
2440 tputs (_rl_term_dc
, 1, _rl_output_character_function
);
2442 #endif /* !__MSDOS__ && !__MINGW32__ */
2451 /* If the cursor is the only thing on an otherwise-blank last line,
2452 compensate so we don't print an extra CRLF. */
2453 if (_rl_vis_botlin
&& _rl_last_c_pos
== 0 &&
2454 visible_line
[vis_lbreaks
[_rl_vis_botlin
]] == 0)
2459 _rl_move_vert (_rl_vis_botlin
);
2460 /* If we've wrapped lines, remove the final xterm line-wrap flag. */
2461 if (full_lines
&& _rl_term_autowrap
&& (VIS_LLEN(_rl_vis_botlin
) == _rl_screenwidth
))
2465 last_line
= &visible_line
[vis_lbreaks
[_rl_vis_botlin
]];
2466 cpos_buffer_position
= -1; /* don't know where we are in buffer */
2467 _rl_move_cursor_relative (_rl_screenwidth
- 1, last_line
); /* XXX */
2468 _rl_clear_to_eol (0);
2469 putc (last_line
[_rl_screenwidth
- 1], rl_outstream
);
2473 fflush (rl_outstream
);
2477 /* Move to the start of the current line. */
2483 #if defined (__MSDOS__)
2484 putc ('\r', rl_outstream
);
2486 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
2492 /* Redraw the last line of a multi-line prompt that may possibly contain
2493 terminal escape sequences. Called with the cursor at column 0 of the
2494 line to draw the prompt on. */
2501 oldp
= rl_display_prompt
;
2504 rl_display_prompt
= t
;
2505 local_prompt
= expand_prompt (t
, &prompt_visible_length
,
2506 &prompt_last_invisible
,
2507 &prompt_invis_chars_first_line
,
2508 &prompt_physical_chars
);
2509 local_prompt_prefix
= (char *)NULL
;
2510 local_prompt_len
= local_prompt
? strlen (local_prompt
) : 0;
2512 rl_forced_update_display ();
2514 rl_display_prompt
= oldp
;
2515 rl_restore_prompt();
2518 /* Redisplay the current line after a SIGWINCH is received. */
2520 _rl_redisplay_after_sigwinch ()
2524 /* Clear the last line (assuming that the screen size change will result in
2525 either more or fewer characters on that line only) and put the cursor at
2526 column 0. Make sure the right thing happens if we have wrapped to a new
2530 _rl_move_vert (_rl_vis_botlin
);
2532 #if defined (__MSDOS__)
2533 putc ('\r', rl_outstream
);
2535 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
2538 #if defined (__MSDOS__)
2539 space_to_eol (_rl_screenwidth
);
2540 putc ('\r', rl_outstream
);
2542 if (_rl_term_clreol
)
2543 tputs (_rl_term_clreol
, 1, _rl_output_character_function
);
2546 space_to_eol (_rl_screenwidth
);
2547 tputs (_rl_term_cr
, 1, _rl_output_character_function
);
2550 if (_rl_last_v_pos
> 0)
2556 /* Redraw only the last line of a multi-line prompt. */
2557 t
= strrchr (rl_display_prompt
, '\n');
2559 redraw_prompt (++t
);
2561 rl_forced_update_display ();
2565 _rl_clean_up_for_exit ()
2569 _rl_move_vert (_rl_vis_botlin
);
2571 fflush (rl_outstream
);
2572 rl_restart_output (1, 0);
2577 _rl_erase_entire_line ()
2580 _rl_clear_to_eol (0);
2582 fflush (rl_outstream
);
2585 /* return the `current display line' of the cursor -- the number of lines to
2586 move up to get to the first screen line of the current readline line. */
2588 _rl_current_display_line ()
2592 /* Find out whether or not there might be invisible characters in the
2594 if (rl_display_prompt
== rl_prompt
)
2595 nleft
= _rl_last_c_pos
- _rl_screenwidth
- rl_visible_prompt_length
;
2597 nleft
= _rl_last_c_pos
- _rl_screenwidth
;
2600 ret
= 1 + nleft
/ _rl_screenwidth
;
2607 #if defined (HANDLE_MULTIBYTE)
2608 /* Calculate the number of screen columns occupied by STR from START to END.
2609 In the case of multibyte characters with stateful encoding, we have to
2610 scan from the beginning of the string to take the state into account. */
2612 _rl_col_width (str
, start
, end
, flags
)
2614 int start
, end
, flags
;
2618 int tmp
, point
, width
, max
;
2622 if (MB_CUR_MAX
== 1 || rl_byte_oriented
)
2624 _rl_ttymsg ("_rl_col_width: called with MB_CUR_MAX == 1");
2625 return (end
- start
);
2628 memset (&ps
, 0, sizeof (mbstate_t));
2633 /* Try to short-circuit common cases. The adjustment to remove wrap_offset
2634 is done by the caller. */
2635 /* 1. prompt string */
2636 if (flags
&& start
== 0 && end
== local_prompt_len
&& memcmp (str
, local_prompt
, local_prompt_len
) == 0)
2637 return (prompt_physical_chars
+ wrap_offset
);
2638 /* 2. prompt string + line contents */
2639 else if (flags
&& start
== 0 && local_prompt_len
> 0 && end
> local_prompt_len
&& local_prompt
&& memcmp (str
, local_prompt
, local_prompt_len
) == 0)
2641 tmp
= prompt_physical_chars
+ wrap_offset
;
2642 /* XXX - try to call ourselves recursively with non-prompt portion */
2643 tmp
+= _rl_col_width (str
, local_prompt_len
, end
, flags
);
2647 while (point
< start
)
2649 tmp
= mbrlen (str
+ point
, max
, &ps
);
2650 if (MB_INVALIDCH ((size_t)tmp
))
2652 /* In this case, the bytes are invalid or too short to compose a
2653 multibyte character, so we assume that the first byte represents
2654 a single character. */
2658 /* Clear the state of the byte sequence, because in this case the
2659 effect of mbstate is undefined. */
2660 memset (&ps
, 0, sizeof (mbstate_t));
2662 else if (MB_NULLWCH (tmp
))
2663 break; /* Found '\0' */
2671 /* If START is not a byte that starts a character, then POINT will be
2672 greater than START. In this case, assume that (POINT - START) gives
2673 a byte count that is the number of columns of difference. */
2674 width
= point
- start
;
2678 tmp
= mbrtowc (&wc
, str
+ point
, max
, &ps
);
2679 if (MB_INVALIDCH ((size_t)tmp
))
2681 /* In this case, the bytes are invalid or too short to compose a
2682 multibyte character, so we assume that the first byte represents
2683 a single character. */
2687 /* and assume that the byte occupies a single column. */
2690 /* Clear the state of the byte sequence, because in this case the
2691 effect of mbstate is undefined. */
2692 memset (&ps
, 0, sizeof (mbstate_t));
2694 else if (MB_NULLWCH (tmp
))
2695 break; /* Found '\0' */
2701 width
+= (tmp
>= 0) ? tmp
: 1;
2705 width
+= point
- end
;
2709 #endif /* HANDLE_MULTIBYTE */