]>
Commit | Line | Data |
---|---|---|
d60d9f65 SS |
1 | /* display.c -- readline redisplay facility. */ |
2 | ||
5bdf8622 | 3 | /* Copyright (C) 1987-2005 Free Software Foundation, Inc. |
d60d9f65 SS |
4 | |
5 | This file is part of the GNU Readline Library, a library for | |
6 | reading lines of text with interactive input and history editing. | |
7 | ||
8 | The GNU Readline Library is free software; you can redistribute it | |
9 | and/or modify it under the terms of the GNU General Public License | |
1b17e766 | 10 | as published by the Free Software Foundation; either version 2, or |
d60d9f65 SS |
11 | (at your option) any later version. |
12 | ||
13 | The GNU Readline Library is distributed in the hope that it will be | |
14 | useful, but WITHOUT ANY WARRANTY; without even the implied warranty | |
15 | of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | The GNU General Public License is often shipped with GNU software, and | |
19 | is generally kept in a file called COPYING or LICENSE. If you do not | |
20 | have a copy of the license, write to the Free Software Foundation, | |
1b17e766 | 21 | 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ |
d60d9f65 SS |
22 | #define READLINE_LIBRARY |
23 | ||
24 | #if defined (HAVE_CONFIG_H) | |
25 | # include <config.h> | |
26 | #endif | |
27 | ||
28 | #include <sys/types.h> | |
29 | ||
30 | #if defined (HAVE_UNISTD_H) | |
31 | # include <unistd.h> | |
32 | #endif /* HAVE_UNISTD_H */ | |
33 | ||
34 | #include "posixstat.h" | |
35 | ||
36 | #if defined (HAVE_STDLIB_H) | |
37 | # include <stdlib.h> | |
38 | #else | |
39 | # include "ansi_stdlib.h" | |
40 | #endif /* HAVE_STDLIB_H */ | |
41 | ||
42 | #include <stdio.h> | |
43 | ||
30083a32 EZ |
44 | #ifdef __MSDOS__ |
45 | # include <pc.h> | |
46 | #endif | |
47 | ||
d60d9f65 SS |
48 | /* System-specific feature definitions and include files. */ |
49 | #include "rldefs.h" | |
9255ee31 | 50 | #include "rlmbutil.h" |
d60d9f65 SS |
51 | |
52 | /* Termcap library stuff. */ | |
53 | #include "tcap.h" | |
54 | ||
55 | /* Some standard library routines. */ | |
56 | #include "readline.h" | |
57 | #include "history.h" | |
58 | ||
1b17e766 EZ |
59 | #include "rlprivate.h" |
60 | #include "xmalloc.h" | |
61 | ||
d60d9f65 SS |
62 | #if !defined (strchr) && !defined (__STDC__) |
63 | extern char *strchr (), *strrchr (); | |
64 | #endif /* !strchr && !__STDC__ */ | |
65 | ||
1b17e766 | 66 | #if defined (HACK_TERMCAP_MOTION) |
9255ee31 | 67 | extern char *_rl_term_forward_char; |
d60d9f65 | 68 | #endif |
d60d9f65 | 69 | |
9255ee31 EZ |
70 | static void update_line PARAMS((char *, char *, int, int, int, int)); |
71 | static void space_to_eol PARAMS((int)); | |
72 | static void delete_chars PARAMS((int)); | |
73 | static void insert_some_chars PARAMS((char *, int, int)); | |
74 | static void cr PARAMS((void)); | |
75 | ||
76 | #if defined (HANDLE_MULTIBYTE) | |
288381c0 | 77 | static int _rl_col_width PARAMS((const char *, int, int)); |
9255ee31 EZ |
78 | static int *_rl_wrapped_line; |
79 | #else | |
80 | # define _rl_col_width(l, s, e) (((e) <= (s)) ? 0 : (e) - (s)) | |
81 | #endif | |
d60d9f65 SS |
82 | |
83 | static int *inv_lbreaks, *vis_lbreaks; | |
1b17e766 | 84 | static int inv_lbsize, vis_lbsize; |
d60d9f65 SS |
85 | |
86 | /* Heuristic used to decide whether it is faster to move from CUR to NEW | |
87 | by backing up or outputting a carriage return and moving forward. */ | |
88 | #define CR_FASTER(new, cur) (((new) + 1) < ((cur) - (new))) | |
89 | ||
90 | /* **************************************************************** */ | |
91 | /* */ | |
92 | /* Display stuff */ | |
93 | /* */ | |
94 | /* **************************************************************** */ | |
95 | ||
96 | /* This is the stuff that is hard for me. I never seem to write good | |
97 | display routines in C. Let's see how I do this time. */ | |
98 | ||
99 | /* (PWP) Well... Good for a simple line updater, but totally ignores | |
100 | the problems of input lines longer than the screen width. | |
101 | ||
102 | update_line and the code that calls it makes a multiple line, | |
103 | automatically wrapping line update. Careful attention needs | |
104 | to be paid to the vertical position variables. */ | |
105 | ||
106 | /* Keep two buffers; one which reflects the current contents of the | |
107 | screen, and the other to draw what we think the new contents should | |
108 | be. Then compare the buffers, and make whatever changes to the | |
109 | screen itself that we should. Finally, make the buffer that we | |
110 | just drew into be the one which reflects the current contents of the | |
111 | screen, and place the cursor where it belongs. | |
112 | ||
113 | Commands that want to can fix the display themselves, and then let | |
114 | this function know that the display has been fixed by setting the | |
115 | RL_DISPLAY_FIXED variable. This is good for efficiency. */ | |
116 | ||
117 | /* Application-specific redisplay function. */ | |
9255ee31 | 118 | rl_voidfunc_t *rl_redisplay_function = rl_redisplay; |
d60d9f65 SS |
119 | |
120 | /* Global variables declared here. */ | |
121 | /* What YOU turn on when you have handled all redisplay yourself. */ | |
122 | int rl_display_fixed = 0; | |
123 | ||
124 | int _rl_suppress_redisplay = 0; | |
5bdf8622 | 125 | int _rl_want_redisplay = 0; |
d60d9f65 SS |
126 | |
127 | /* The stuff that gets printed out before the actual text of the line. | |
128 | This is usually pointing to rl_prompt. */ | |
129 | char *rl_display_prompt = (char *)NULL; | |
130 | ||
131 | /* Pseudo-global variables declared here. */ | |
5bdf8622 | 132 | |
d60d9f65 | 133 | /* The visible cursor position. If you print some text, adjust this. */ |
5bdf8622 DJ |
134 | /* NOTE: _rl_last_c_pos is used as a buffer index when not in a locale |
135 | supporting multibyte characters, and an absolute cursor position when | |
136 | in such a locale. This is an artifact of the donated multibyte support. | |
137 | Care must be taken when modifying its value. */ | |
d60d9f65 SS |
138 | int _rl_last_c_pos = 0; |
139 | int _rl_last_v_pos = 0; | |
140 | ||
5bdf8622 DJ |
141 | static int cpos_adjusted; |
142 | ||
d60d9f65 SS |
143 | /* Number of lines currently on screen minus 1. */ |
144 | int _rl_vis_botlin = 0; | |
145 | ||
146 | /* Variables used only in this file. */ | |
147 | /* The last left edge of text that was displayed. This is used when | |
148 | doing horizontal scrolling. It shifts in thirds of a screenwidth. */ | |
149 | static int last_lmargin; | |
150 | ||
151 | /* The line display buffers. One is the line currently displayed on | |
152 | the screen. The other is the line about to be displayed. */ | |
153 | static char *visible_line = (char *)NULL; | |
154 | static char *invisible_line = (char *)NULL; | |
155 | ||
156 | /* A buffer for `modeline' messages. */ | |
157 | static char msg_buf[128]; | |
158 | ||
159 | /* Non-zero forces the redisplay even if we thought it was unnecessary. */ | |
160 | static int forced_display; | |
161 | ||
162 | /* Default and initial buffer size. Can grow. */ | |
163 | static int line_size = 1024; | |
164 | ||
9255ee31 EZ |
165 | /* Variables to keep track of the expanded prompt string, which may |
166 | include invisible characters. */ | |
167 | ||
d60d9f65 | 168 | static char *local_prompt, *local_prompt_prefix; |
9255ee31 | 169 | static int prompt_visible_length, prompt_prefix_length; |
d60d9f65 SS |
170 | |
171 | /* The number of invisible characters in the line currently being | |
172 | displayed on the screen. */ | |
173 | static int visible_wrap_offset; | |
174 | ||
9255ee31 EZ |
175 | /* The number of invisible characters in the prompt string. Static so it |
176 | can be shared between rl_redisplay and update_line */ | |
d60d9f65 SS |
177 | static int wrap_offset; |
178 | ||
9255ee31 EZ |
179 | /* The index of the last invisible character in the prompt string. */ |
180 | static int prompt_last_invisible; | |
d60d9f65 SS |
181 | |
182 | /* The length (buffer offset) of the first line of the last (possibly | |
183 | multi-line) buffer displayed on the screen. */ | |
184 | static int visible_first_line_len; | |
185 | ||
9255ee31 EZ |
186 | /* Number of invisible characters on the first physical line of the prompt. |
187 | Only valid when the number of physical characters in the prompt exceeds | |
188 | (or is equal to) _rl_screenwidth. */ | |
189 | static int prompt_invis_chars_first_line; | |
190 | ||
191 | static int prompt_last_screen_line; | |
192 | ||
5bdf8622 DJ |
193 | static int prompt_physical_chars; |
194 | ||
195 | /* Variables to save and restore prompt and display information. */ | |
196 | ||
197 | /* These are getting numerous enough that it's time to create a struct. */ | |
198 | ||
199 | static char *saved_local_prompt; | |
200 | static char *saved_local_prefix; | |
201 | static int saved_last_invisible; | |
202 | static int saved_visible_length; | |
203 | static int saved_prefix_length; | |
204 | static int saved_invis_chars_first_line; | |
205 | static int saved_physical_chars; | |
206 | ||
d60d9f65 SS |
207 | /* Expand the prompt string S and return the number of visible |
208 | characters in *LP, if LP is not null. This is currently more-or-less | |
209 | a placeholder for expansion. LIP, if non-null is a place to store the | |
9255ee31 EZ |
210 | index of the last invisible character in the returned string. NIFLP, |
211 | if non-zero, is a place to store the number of invisible characters in | |
5bdf8622 DJ |
212 | the first prompt line. The previous are used as byte counts -- indexes |
213 | into a character buffer. */ | |
d60d9f65 SS |
214 | |
215 | /* Current implementation: | |
216 | \001 (^A) start non-visible characters | |
217 | \002 (^B) end non-visible characters | |
218 | all characters except \001 and \002 (following a \001) are copied to | |
219 | the returned string; all characters except those between \001 and | |
220 | \002 are assumed to be `visible'. */ | |
221 | ||
222 | static char * | |
5bdf8622 | 223 | expand_prompt (pmt, lp, lip, niflp, vlp) |
d60d9f65 | 224 | char *pmt; |
5bdf8622 | 225 | int *lp, *lip, *niflp, *vlp; |
d60d9f65 SS |
226 | { |
227 | char *r, *ret, *p; | |
5bdf8622 | 228 | int l, rl, last, ignoring, ninvis, invfl, invflset, ind, pind, physchars; |
d60d9f65 SS |
229 | |
230 | /* Short-circuit if we can. */ | |
5bdf8622 | 231 | if ((MB_CUR_MAX <= 1 || rl_byte_oriented) && strchr (pmt, RL_PROMPT_START_IGNORE) == 0) |
d60d9f65 SS |
232 | { |
233 | r = savestring (pmt); | |
234 | if (lp) | |
235 | *lp = strlen (r); | |
5bdf8622 DJ |
236 | if (lip) |
237 | *lip = 0; | |
238 | if (niflp) | |
239 | *niflp = 0; | |
240 | if (vlp) | |
241 | *vlp = lp ? *lp : strlen (r); | |
d60d9f65 SS |
242 | return r; |
243 | } | |
244 | ||
245 | l = strlen (pmt); | |
9255ee31 EZ |
246 | r = ret = (char *)xmalloc (l + 1); |
247 | ||
248 | invfl = 0; /* invisible chars in first line of prompt */ | |
5bdf8622 | 249 | invflset = 0; /* we only want to set invfl once */ |
9255ee31 | 250 | |
5bdf8622 | 251 | for (rl = ignoring = last = ninvis = physchars = 0, p = pmt; p && *p; p++) |
d60d9f65 SS |
252 | { |
253 | /* This code strips the invisible character string markers | |
254 | RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE */ | |
255 | if (*p == RL_PROMPT_START_IGNORE) | |
256 | { | |
257 | ignoring++; | |
258 | continue; | |
259 | } | |
260 | else if (ignoring && *p == RL_PROMPT_END_IGNORE) | |
261 | { | |
262 | ignoring = 0; | |
5bdf8622 DJ |
263 | if (p[-1] != RL_PROMPT_START_IGNORE) |
264 | last = r - ret - 1; | |
d60d9f65 SS |
265 | continue; |
266 | } | |
267 | else | |
268 | { | |
5bdf8622 DJ |
269 | #if defined (HANDLE_MULTIBYTE) |
270 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
271 | { | |
272 | pind = p - pmt; | |
273 | ind = _rl_find_next_mbchar (pmt, pind, 1, MB_FIND_NONZERO); | |
274 | l = ind - pind; | |
275 | while (l--) | |
276 | *r++ = *p++; | |
277 | if (!ignoring) | |
278 | { | |
279 | rl += ind - pind; | |
280 | physchars += _rl_col_width (pmt, pind, ind); | |
281 | } | |
282 | else | |
283 | ninvis += ind - pind; | |
284 | p--; /* compensate for later increment */ | |
285 | } | |
9255ee31 | 286 | else |
5bdf8622 DJ |
287 | #endif |
288 | { | |
289 | *r++ = *p; | |
290 | if (!ignoring) | |
291 | { | |
292 | rl++; /* visible length byte counter */ | |
293 | physchars++; | |
294 | } | |
295 | else | |
296 | ninvis++; /* invisible chars byte counter */ | |
297 | } | |
298 | ||
299 | if (invflset == 0 && rl >= _rl_screenwidth) | |
300 | { | |
301 | invfl = ninvis; | |
302 | invflset = 1; | |
303 | } | |
d60d9f65 SS |
304 | } |
305 | } | |
306 | ||
9255ee31 EZ |
307 | if (rl < _rl_screenwidth) |
308 | invfl = ninvis; | |
309 | ||
d60d9f65 SS |
310 | *r = '\0'; |
311 | if (lp) | |
312 | *lp = rl; | |
313 | if (lip) | |
314 | *lip = last; | |
9255ee31 EZ |
315 | if (niflp) |
316 | *niflp = invfl; | |
5bdf8622 DJ |
317 | if (vlp) |
318 | *vlp = physchars; | |
d60d9f65 SS |
319 | return ret; |
320 | } | |
321 | ||
1b17e766 EZ |
322 | /* Just strip out RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE from |
323 | PMT and return the rest of PMT. */ | |
324 | char * | |
325 | _rl_strip_prompt (pmt) | |
326 | char *pmt; | |
327 | { | |
328 | char *ret; | |
329 | ||
5bdf8622 | 330 | ret = expand_prompt (pmt, (int *)NULL, (int *)NULL, (int *)NULL, (int *)NULL); |
1b17e766 EZ |
331 | return ret; |
332 | } | |
333 | ||
d60d9f65 SS |
334 | /* |
335 | * Expand the prompt string into the various display components, if | |
336 | * necessary. | |
337 | * | |
338 | * local_prompt = expanded last line of string in rl_display_prompt | |
339 | * (portion after the final newline) | |
340 | * local_prompt_prefix = portion before last newline of rl_display_prompt, | |
341 | * expanded via expand_prompt | |
9255ee31 EZ |
342 | * prompt_visible_length = number of visible characters in local_prompt |
343 | * prompt_prefix_length = number of visible characters in local_prompt_prefix | |
d60d9f65 SS |
344 | * |
345 | * This function is called once per call to readline(). It may also be | |
346 | * called arbitrarily to expand the primary prompt. | |
347 | * | |
348 | * The return value is the number of visible characters on the last line | |
349 | * of the (possibly multi-line) prompt. | |
350 | */ | |
351 | int | |
352 | rl_expand_prompt (prompt) | |
353 | char *prompt; | |
354 | { | |
355 | char *p, *t; | |
356 | int c; | |
357 | ||
358 | /* Clear out any saved values. */ | |
9255ee31 EZ |
359 | FREE (local_prompt); |
360 | FREE (local_prompt_prefix); | |
361 | ||
d60d9f65 | 362 | local_prompt = local_prompt_prefix = (char *)0; |
5bdf8622 DJ |
363 | prompt_last_invisible = prompt_invis_chars_first_line = 0; |
364 | prompt_visible_length = prompt_physical_chars = 0; | |
d60d9f65 SS |
365 | |
366 | if (prompt == 0 || *prompt == 0) | |
367 | return (0); | |
368 | ||
369 | p = strrchr (prompt, '\n'); | |
370 | if (!p) | |
371 | { | |
9255ee31 EZ |
372 | /* The prompt is only one logical line, though it might wrap. */ |
373 | local_prompt = expand_prompt (prompt, &prompt_visible_length, | |
374 | &prompt_last_invisible, | |
5bdf8622 DJ |
375 | &prompt_invis_chars_first_line, |
376 | &prompt_physical_chars); | |
d60d9f65 | 377 | local_prompt_prefix = (char *)0; |
9255ee31 | 378 | return (prompt_visible_length); |
d60d9f65 SS |
379 | } |
380 | else | |
381 | { | |
382 | /* The prompt spans multiple lines. */ | |
383 | t = ++p; | |
9255ee31 EZ |
384 | local_prompt = expand_prompt (p, &prompt_visible_length, |
385 | &prompt_last_invisible, | |
5bdf8622 DJ |
386 | (int *)NULL, |
387 | &prompt_physical_chars); | |
d60d9f65 SS |
388 | c = *t; *t = '\0'; |
389 | /* The portion of the prompt string up to and including the | |
390 | final newline is now null-terminated. */ | |
9255ee31 EZ |
391 | local_prompt_prefix = expand_prompt (prompt, &prompt_prefix_length, |
392 | (int *)NULL, | |
5bdf8622 DJ |
393 | &prompt_invis_chars_first_line, |
394 | (int *)NULL); | |
d60d9f65 | 395 | *t = c; |
9255ee31 | 396 | return (prompt_prefix_length); |
d60d9f65 SS |
397 | } |
398 | } | |
399 | ||
1b17e766 EZ |
400 | /* Initialize the VISIBLE_LINE and INVISIBLE_LINE arrays, and their associated |
401 | arrays of line break markers. MINSIZE is the minimum size of VISIBLE_LINE | |
402 | and INVISIBLE_LINE; if it is greater than LINE_SIZE, LINE_SIZE is | |
403 | increased. If the lines have already been allocated, this ensures that | |
404 | they can hold at least MINSIZE characters. */ | |
405 | static void | |
406 | init_line_structures (minsize) | |
407 | int minsize; | |
408 | { | |
409 | register int n; | |
410 | ||
411 | if (invisible_line == 0) /* initialize it */ | |
412 | { | |
413 | if (line_size < minsize) | |
414 | line_size = minsize; | |
9255ee31 EZ |
415 | visible_line = (char *)xmalloc (line_size); |
416 | invisible_line = (char *)xmalloc (line_size); | |
1b17e766 EZ |
417 | } |
418 | else if (line_size < minsize) /* ensure it can hold MINSIZE chars */ | |
419 | { | |
420 | line_size *= 2; | |
421 | if (line_size < minsize) | |
422 | line_size = minsize; | |
9255ee31 EZ |
423 | visible_line = (char *)xrealloc (visible_line, line_size); |
424 | invisible_line = (char *)xrealloc (invisible_line, line_size); | |
1b17e766 EZ |
425 | } |
426 | ||
427 | for (n = minsize; n < line_size; n++) | |
428 | { | |
429 | visible_line[n] = 0; | |
430 | invisible_line[n] = 1; | |
431 | } | |
432 | ||
433 | if (vis_lbreaks == 0) | |
434 | { | |
435 | /* should be enough. */ | |
436 | inv_lbsize = vis_lbsize = 256; | |
437 | inv_lbreaks = (int *)xmalloc (inv_lbsize * sizeof (int)); | |
438 | vis_lbreaks = (int *)xmalloc (vis_lbsize * sizeof (int)); | |
9255ee31 EZ |
439 | #if defined (HANDLE_MULTIBYTE) |
440 | _rl_wrapped_line = (int *)xmalloc (vis_lbsize * sizeof (int)); | |
441 | #endif | |
1b17e766 EZ |
442 | inv_lbreaks[0] = vis_lbreaks[0] = 0; |
443 | } | |
444 | } | |
445 | ||
d60d9f65 SS |
446 | /* Basic redisplay algorithm. */ |
447 | void | |
448 | rl_redisplay () | |
449 | { | |
450 | register int in, out, c, linenum, cursor_linenum; | |
451 | register char *line; | |
5bdf8622 DJ |
452 | int c_pos, inv_botlin, lb_botlin, lb_linenum, o_cpos; |
453 | int newlines, lpos, temp, modmark, n0, num; | |
d60d9f65 | 454 | char *prompt_this_line; |
9255ee31 EZ |
455 | #if defined (HANDLE_MULTIBYTE) |
456 | wchar_t wc; | |
457 | size_t wc_bytes; | |
458 | int wc_width; | |
459 | mbstate_t ps; | |
460 | int _rl_wrapped_multicolumn = 0; | |
461 | #endif | |
d60d9f65 SS |
462 | |
463 | if (!readline_echoing_p) | |
464 | return; | |
465 | ||
87adec2e JK |
466 | /* Signals are blocked through this function as the global data structures |
467 | could get corrupted upon modifications from an invoked signal handler. */ | |
468 | _rl_block_sigint (); | |
469 | ||
d60d9f65 SS |
470 | if (!rl_display_prompt) |
471 | rl_display_prompt = ""; | |
472 | ||
5bdf8622 | 473 | if (invisible_line == 0 || vis_lbreaks == 0) |
d60d9f65 | 474 | { |
1b17e766 | 475 | init_line_structures (0); |
d60d9f65 SS |
476 | rl_on_new_line (); |
477 | } | |
478 | ||
479 | /* Draw the line into the buffer. */ | |
480 | c_pos = -1; | |
481 | ||
482 | line = invisible_line; | |
483 | out = inv_botlin = 0; | |
484 | ||
485 | /* Mark the line as modified or not. We only do this for history | |
486 | lines. */ | |
5bdf8622 | 487 | modmark = 0; |
d60d9f65 SS |
488 | if (_rl_mark_modified_lines && current_history () && rl_undo_list) |
489 | { | |
490 | line[out++] = '*'; | |
491 | line[out] = '\0'; | |
5bdf8622 | 492 | modmark = 1; |
d60d9f65 SS |
493 | } |
494 | ||
495 | /* If someone thought that the redisplay was handled, but the currently | |
496 | visible line has a different modification state than the one about | |
497 | to become visible, then correct the caller's misconception. */ | |
498 | if (visible_line[0] != invisible_line[0]) | |
499 | rl_display_fixed = 0; | |
500 | ||
501 | /* If the prompt to be displayed is the `primary' readline prompt (the | |
502 | one passed to readline()), use the values we have already expanded. | |
503 | If not, use what's already in rl_display_prompt. WRAP_OFFSET is the | |
504 | number of non-visible characters in the prompt string. */ | |
505 | if (rl_display_prompt == rl_prompt || local_prompt) | |
506 | { | |
507 | int local_len = local_prompt ? strlen (local_prompt) : 0; | |
508 | if (local_prompt_prefix && forced_display) | |
509 | _rl_output_some_chars (local_prompt_prefix, strlen (local_prompt_prefix)); | |
510 | ||
511 | if (local_len > 0) | |
512 | { | |
c862e87b JM |
513 | temp = local_len + out + 2; |
514 | if (temp >= line_size) | |
515 | { | |
516 | line_size = (temp + 1024) - (temp % 1024); | |
9255ee31 EZ |
517 | visible_line = (char *)xrealloc (visible_line, line_size); |
518 | line = invisible_line = (char *)xrealloc (invisible_line, line_size); | |
c862e87b | 519 | } |
d60d9f65 SS |
520 | strncpy (line + out, local_prompt, local_len); |
521 | out += local_len; | |
522 | } | |
523 | line[out] = '\0'; | |
9255ee31 | 524 | wrap_offset = local_len - prompt_visible_length; |
d60d9f65 SS |
525 | } |
526 | else | |
527 | { | |
528 | int pmtlen; | |
529 | prompt_this_line = strrchr (rl_display_prompt, '\n'); | |
530 | if (!prompt_this_line) | |
531 | prompt_this_line = rl_display_prompt; | |
532 | else | |
533 | { | |
534 | prompt_this_line++; | |
1b17e766 | 535 | pmtlen = prompt_this_line - rl_display_prompt; /* temp var */ |
d60d9f65 SS |
536 | if (forced_display) |
537 | { | |
1b17e766 | 538 | _rl_output_some_chars (rl_display_prompt, pmtlen); |
d60d9f65 SS |
539 | /* Make sure we are at column zero even after a newline, |
540 | regardless of the state of terminal output processing. */ | |
1b17e766 | 541 | if (pmtlen < 2 || prompt_this_line[-2] != '\r') |
d60d9f65 SS |
542 | cr (); |
543 | } | |
544 | } | |
545 | ||
5bdf8622 | 546 | prompt_physical_chars = pmtlen = strlen (prompt_this_line); |
c862e87b JM |
547 | temp = pmtlen + out + 2; |
548 | if (temp >= line_size) | |
549 | { | |
550 | line_size = (temp + 1024) - (temp % 1024); | |
9255ee31 EZ |
551 | visible_line = (char *)xrealloc (visible_line, line_size); |
552 | line = invisible_line = (char *)xrealloc (invisible_line, line_size); | |
c862e87b | 553 | } |
d60d9f65 SS |
554 | strncpy (line + out, prompt_this_line, pmtlen); |
555 | out += pmtlen; | |
556 | line[out] = '\0'; | |
9255ee31 | 557 | wrap_offset = prompt_invis_chars_first_line = 0; |
d60d9f65 SS |
558 | } |
559 | ||
1b17e766 EZ |
560 | #define CHECK_INV_LBREAKS() \ |
561 | do { \ | |
562 | if (newlines >= (inv_lbsize - 2)) \ | |
563 | { \ | |
564 | inv_lbsize *= 2; \ | |
565 | inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \ | |
566 | } \ | |
567 | } while (0) | |
9255ee31 EZ |
568 | |
569 | #if defined (HANDLE_MULTIBYTE) | |
d60d9f65 SS |
570 | #define CHECK_LPOS() \ |
571 | do { \ | |
c862e87b | 572 | lpos++; \ |
9255ee31 | 573 | if (lpos >= _rl_screenwidth) \ |
c862e87b | 574 | { \ |
1b17e766 EZ |
575 | if (newlines >= (inv_lbsize - 2)) \ |
576 | { \ | |
577 | inv_lbsize *= 2; \ | |
578 | inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \ | |
9255ee31 | 579 | _rl_wrapped_line = (int *)xrealloc (_rl_wrapped_line, inv_lbsize * sizeof (int)); \ |
1b17e766 | 580 | } \ |
c862e87b | 581 | inv_lbreaks[++newlines] = out; \ |
9255ee31 | 582 | _rl_wrapped_line[newlines] = _rl_wrapped_multicolumn; \ |
c862e87b JM |
583 | lpos = 0; \ |
584 | } \ | |
d60d9f65 | 585 | } while (0) |
9255ee31 EZ |
586 | #else |
587 | #define CHECK_LPOS() \ | |
588 | do { \ | |
589 | lpos++; \ | |
590 | if (lpos >= _rl_screenwidth) \ | |
591 | { \ | |
592 | if (newlines >= (inv_lbsize - 2)) \ | |
593 | { \ | |
594 | inv_lbsize *= 2; \ | |
595 | inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \ | |
596 | } \ | |
597 | inv_lbreaks[++newlines] = out; \ | |
598 | lpos = 0; \ | |
599 | } \ | |
600 | } while (0) | |
601 | #endif | |
d60d9f65 SS |
602 | |
603 | /* inv_lbreaks[i] is where line i starts in the buffer. */ | |
604 | inv_lbreaks[newlines = 0] = 0; | |
5bdf8622 | 605 | #if 0 |
d60d9f65 | 606 | lpos = out - wrap_offset; |
5bdf8622 DJ |
607 | #else |
608 | lpos = prompt_physical_chars + modmark; | |
609 | #endif | |
610 | ||
9255ee31 EZ |
611 | #if defined (HANDLE_MULTIBYTE) |
612 | memset (_rl_wrapped_line, 0, vis_lbsize); | |
5bdf8622 | 613 | num = 0; |
9255ee31 EZ |
614 | #endif |
615 | ||
616 | /* prompt_invis_chars_first_line is the number of invisible characters in | |
617 | the first physical line of the prompt. | |
618 | wrap_offset - prompt_invis_chars_first_line is the number of invis | |
619 | chars on the second line. */ | |
d60d9f65 | 620 | |
9255ee31 | 621 | /* what if lpos is already >= _rl_screenwidth before we start drawing the |
d60d9f65 | 622 | contents of the command line? */ |
9255ee31 | 623 | while (lpos >= _rl_screenwidth) |
d60d9f65 | 624 | { |
9255ee31 EZ |
625 | /* fix from Darin Johnson <[email protected]> for prompt string with |
626 | invisible characters that is longer than the screen width. The | |
627 | prompt_invis_chars_first_line variable could be made into an array | |
628 | saying how many invisible characters there are per line, but that's | |
629 | probably too much work for the benefit gained. How many people have | |
5bdf8622 DJ |
630 | prompts that exceed two physical lines? |
631 | Additional logic fix from Edward Catmur <[email protected]> */ | |
632 | #if defined (HANDLE_MULTIBYTE) | |
633 | n0 = num; | |
634 | temp = local_prompt ? strlen (local_prompt) : 0; | |
635 | while (num < temp) | |
636 | { | |
637 | if (_rl_col_width (local_prompt, n0, num) > _rl_screenwidth) | |
638 | { | |
639 | num = _rl_find_prev_mbchar (local_prompt, num, MB_FIND_ANY); | |
640 | break; | |
641 | } | |
642 | num++; | |
643 | } | |
644 | temp = num + | |
9255ee31 | 645 | #else |
5bdf8622 DJ |
646 | temp = ((newlines + 1) * _rl_screenwidth) + |
647 | #endif /* !HANDLE_MULTIBYTE */ | |
648 | ((local_prompt_prefix == 0) ? ((newlines == 0) ? prompt_invis_chars_first_line | |
649 | : ((newlines == 1) ? wrap_offset : 0)) | |
650 | : ((newlines == 0) ? wrap_offset :0)); | |
651 | ||
d60d9f65 | 652 | inv_lbreaks[++newlines] = temp; |
5bdf8622 DJ |
653 | #if defined (HANDLE_MULTIBYTE) |
654 | lpos -= _rl_col_width (local_prompt, n0, num); | |
655 | #else | |
9255ee31 | 656 | lpos -= _rl_screenwidth; |
5bdf8622 | 657 | #endif |
d60d9f65 SS |
658 | } |
659 | ||
9255ee31 EZ |
660 | prompt_last_screen_line = newlines; |
661 | ||
662 | /* Draw the rest of the line (after the prompt) into invisible_line, keeping | |
663 | track of where the cursor is (c_pos), the number of the line containing | |
664 | the cursor (lb_linenum), the last line number (lb_botlin and inv_botlin). | |
665 | It maintains an array of line breaks for display (inv_lbreaks). | |
666 | This handles expanding tabs for display and displaying meta characters. */ | |
d60d9f65 | 667 | lb_linenum = 0; |
9255ee31 EZ |
668 | #if defined (HANDLE_MULTIBYTE) |
669 | in = 0; | |
670 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
671 | { | |
672 | memset (&ps, 0, sizeof (mbstate_t)); | |
673 | wc_bytes = mbrtowc (&wc, rl_line_buffer, rl_end, &ps); | |
674 | } | |
675 | else | |
676 | wc_bytes = 1; | |
677 | while (in < rl_end) | |
678 | #else | |
d60d9f65 | 679 | for (in = 0; in < rl_end; in++) |
9255ee31 | 680 | #endif |
d60d9f65 SS |
681 | { |
682 | c = (unsigned char)rl_line_buffer[in]; | |
683 | ||
9255ee31 EZ |
684 | #if defined (HANDLE_MULTIBYTE) |
685 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
686 | { | |
5bdf8622 | 687 | if (MB_INVALIDCH (wc_bytes)) |
9255ee31 EZ |
688 | { |
689 | /* Byte sequence is invalid or shortened. Assume that the | |
690 | first byte represents a character. */ | |
691 | wc_bytes = 1; | |
692 | /* Assume that a character occupies a single column. */ | |
693 | wc_width = 1; | |
694 | memset (&ps, 0, sizeof (mbstate_t)); | |
695 | } | |
5bdf8622 | 696 | else if (MB_NULLWCH (wc_bytes)) |
9255ee31 EZ |
697 | break; /* Found '\0' */ |
698 | else | |
699 | { | |
700 | temp = wcwidth (wc); | |
5bdf8622 | 701 | wc_width = (temp >= 0) ? temp : 1; |
9255ee31 EZ |
702 | } |
703 | } | |
704 | #endif | |
705 | ||
d60d9f65 SS |
706 | if (out + 8 >= line_size) /* XXX - 8 for \t */ |
707 | { | |
708 | line_size *= 2; | |
9255ee31 EZ |
709 | visible_line = (char *)xrealloc (visible_line, line_size); |
710 | invisible_line = (char *)xrealloc (invisible_line, line_size); | |
d60d9f65 SS |
711 | line = invisible_line; |
712 | } | |
713 | ||
714 | if (in == rl_point) | |
715 | { | |
716 | c_pos = out; | |
717 | lb_linenum = newlines; | |
718 | } | |
719 | ||
9255ee31 EZ |
720 | #if defined (HANDLE_MULTIBYTE) |
721 | if (META_CHAR (c) && _rl_output_meta_chars == 0) /* XXX - clean up */ | |
722 | #else | |
d60d9f65 | 723 | if (META_CHAR (c)) |
9255ee31 | 724 | #endif |
d60d9f65 SS |
725 | { |
726 | if (_rl_output_meta_chars == 0) | |
727 | { | |
728 | sprintf (line + out, "\\%o", c); | |
729 | ||
9255ee31 | 730 | if (lpos + 4 >= _rl_screenwidth) |
d60d9f65 | 731 | { |
9255ee31 | 732 | temp = _rl_screenwidth - lpos; |
1b17e766 | 733 | CHECK_INV_LBREAKS (); |
d60d9f65 SS |
734 | inv_lbreaks[++newlines] = out + temp; |
735 | lpos = 4 - temp; | |
736 | } | |
737 | else | |
738 | lpos += 4; | |
739 | ||
740 | out += 4; | |
741 | } | |
742 | else | |
743 | { | |
744 | line[out++] = c; | |
745 | CHECK_LPOS(); | |
746 | } | |
747 | } | |
748 | #if defined (DISPLAY_TABS) | |
749 | else if (c == '\t') | |
750 | { | |
9255ee31 | 751 | register int newout; |
c862e87b JM |
752 | |
753 | #if 0 | |
d60d9f65 | 754 | newout = (out | (int)7) + 1; |
c862e87b JM |
755 | #else |
756 | newout = out + 8 - lpos % 8; | |
757 | #endif | |
d60d9f65 | 758 | temp = newout - out; |
9255ee31 | 759 | if (lpos + temp >= _rl_screenwidth) |
d60d9f65 SS |
760 | { |
761 | register int temp2; | |
9255ee31 | 762 | temp2 = _rl_screenwidth - lpos; |
1b17e766 | 763 | CHECK_INV_LBREAKS (); |
d60d9f65 SS |
764 | inv_lbreaks[++newlines] = out + temp2; |
765 | lpos = temp - temp2; | |
766 | while (out < newout) | |
767 | line[out++] = ' '; | |
768 | } | |
769 | else | |
770 | { | |
771 | while (out < newout) | |
772 | line[out++] = ' '; | |
773 | lpos += temp; | |
774 | } | |
775 | } | |
776 | #endif | |
9255ee31 | 777 | else if (c == '\n' && _rl_horizontal_scroll_mode == 0 && _rl_term_up && *_rl_term_up) |
c862e87b JM |
778 | { |
779 | line[out++] = '\0'; /* XXX - sentinel */ | |
1b17e766 | 780 | CHECK_INV_LBREAKS (); |
c862e87b JM |
781 | inv_lbreaks[++newlines] = out; |
782 | lpos = 0; | |
783 | } | |
d60d9f65 SS |
784 | else if (CTRL_CHAR (c) || c == RUBOUT) |
785 | { | |
786 | line[out++] = '^'; | |
787 | CHECK_LPOS(); | |
788 | line[out++] = CTRL_CHAR (c) ? UNCTRL (c) : '?'; | |
789 | CHECK_LPOS(); | |
790 | } | |
791 | else | |
792 | { | |
9255ee31 EZ |
793 | #if defined (HANDLE_MULTIBYTE) |
794 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
795 | { | |
796 | register int i; | |
797 | ||
798 | _rl_wrapped_multicolumn = 0; | |
799 | ||
800 | if (_rl_screenwidth < lpos + wc_width) | |
801 | for (i = lpos; i < _rl_screenwidth; i++) | |
802 | { | |
803 | /* The space will be removed in update_line() */ | |
804 | line[out++] = ' '; | |
805 | _rl_wrapped_multicolumn++; | |
806 | CHECK_LPOS(); | |
807 | } | |
808 | if (in == rl_point) | |
809 | { | |
810 | c_pos = out; | |
811 | lb_linenum = newlines; | |
812 | } | |
813 | for (i = in; i < in+wc_bytes; i++) | |
814 | line[out++] = rl_line_buffer[i]; | |
815 | for (i = 0; i < wc_width; i++) | |
816 | CHECK_LPOS(); | |
817 | } | |
818 | else | |
819 | { | |
820 | line[out++] = c; | |
821 | CHECK_LPOS(); | |
822 | } | |
823 | #else | |
d60d9f65 SS |
824 | line[out++] = c; |
825 | CHECK_LPOS(); | |
9255ee31 | 826 | #endif |
d60d9f65 | 827 | } |
9255ee31 EZ |
828 | |
829 | #if defined (HANDLE_MULTIBYTE) | |
830 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
831 | { | |
832 | in += wc_bytes; | |
833 | wc_bytes = mbrtowc (&wc, rl_line_buffer + in, rl_end - in, &ps); | |
834 | } | |
835 | else | |
836 | in++; | |
837 | #endif | |
838 | ||
d60d9f65 SS |
839 | } |
840 | line[out] = '\0'; | |
841 | if (c_pos < 0) | |
842 | { | |
843 | c_pos = out; | |
844 | lb_linenum = newlines; | |
845 | } | |
846 | ||
847 | inv_botlin = lb_botlin = newlines; | |
1b17e766 | 848 | CHECK_INV_LBREAKS (); |
d60d9f65 SS |
849 | inv_lbreaks[newlines+1] = out; |
850 | cursor_linenum = lb_linenum; | |
851 | ||
9255ee31 EZ |
852 | /* C_POS == position in buffer where cursor should be placed. |
853 | CURSOR_LINENUM == line number where the cursor should be placed. */ | |
d60d9f65 SS |
854 | |
855 | /* PWP: now is when things get a bit hairy. The visible and invisible | |
856 | line buffers are really multiple lines, which would wrap every | |
857 | (screenwidth - 1) characters. Go through each in turn, finding | |
858 | the changed region and updating it. The line order is top to bottom. */ | |
859 | ||
860 | /* If we can move the cursor up and down, then use multiple lines, | |
861 | otherwise, let long lines display in a single terminal line, and | |
862 | horizontally scroll it. */ | |
863 | ||
9255ee31 | 864 | if (_rl_horizontal_scroll_mode == 0 && _rl_term_up && *_rl_term_up) |
d60d9f65 | 865 | { |
5bdf8622 | 866 | int nleft, pos, changed_screen_line, tx; |
d60d9f65 SS |
867 | |
868 | if (!rl_display_fixed || forced_display) | |
869 | { | |
870 | forced_display = 0; | |
871 | ||
872 | /* If we have more than a screenful of material to display, then | |
873 | only display a screenful. We should display the last screen, | |
874 | not the first. */ | |
9255ee31 EZ |
875 | if (out >= _rl_screenchars) |
876 | { | |
877 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
878 | out = _rl_find_prev_mbchar (line, _rl_screenchars, MB_FIND_ANY); | |
879 | else | |
880 | out = _rl_screenchars - 1; | |
881 | } | |
d60d9f65 SS |
882 | |
883 | /* The first line is at character position 0 in the buffer. The | |
884 | second and subsequent lines start at inv_lbreaks[N], offset by | |
885 | OFFSET (which has already been calculated above). */ | |
886 | ||
887 | #define W_OFFSET(line, offset) ((line) == 0 ? offset : 0) | |
888 | #define VIS_LLEN(l) ((l) > _rl_vis_botlin ? 0 : (vis_lbreaks[l+1] - vis_lbreaks[l])) | |
889 | #define INV_LLEN(l) (inv_lbreaks[l+1] - inv_lbreaks[l]) | |
890 | #define VIS_CHARS(line) (visible_line + vis_lbreaks[line]) | |
891 | #define VIS_LINE(line) ((line) > _rl_vis_botlin) ? "" : VIS_CHARS(line) | |
892 | #define INV_LINE(line) (invisible_line + inv_lbreaks[line]) | |
893 | ||
894 | /* For each line in the buffer, do the updating display. */ | |
895 | for (linenum = 0; linenum <= inv_botlin; linenum++) | |
896 | { | |
5bdf8622 DJ |
897 | o_cpos = _rl_last_c_pos; |
898 | cpos_adjusted = 0; | |
d60d9f65 SS |
899 | update_line (VIS_LINE(linenum), INV_LINE(linenum), linenum, |
900 | VIS_LLEN(linenum), INV_LLEN(linenum), inv_botlin); | |
901 | ||
5bdf8622 DJ |
902 | /* update_line potentially changes _rl_last_c_pos, but doesn't |
903 | take invisible characters into account, since _rl_last_c_pos | |
904 | is an absolute cursor position in a multibyte locale. See | |
905 | if compensating here is the right thing, or if we have to | |
906 | change update_line itself. There is one case in which | |
907 | update_line adjusts _rl_last_c_pos itself (so it can pass | |
908 | _rl_move_cursor_relative accurate values); it communicates | |
909 | this back by setting cpos_adjusted */ | |
910 | if (linenum == 0 && (MB_CUR_MAX > 1 && rl_byte_oriented == 0) && | |
911 | cpos_adjusted == 0 && | |
912 | _rl_last_c_pos != o_cpos && | |
913 | _rl_last_c_pos > wrap_offset && | |
914 | o_cpos < prompt_last_invisible) | |
915 | _rl_last_c_pos -= wrap_offset; | |
916 | ||
d60d9f65 SS |
917 | /* If this is the line with the prompt, we might need to |
918 | compensate for invisible characters in the new line. Do | |
919 | this only if there is not more than one new line (which | |
920 | implies that we completely overwrite the old visible line) | |
921 | and the new line is shorter than the old. Make sure we are | |
922 | at the end of the new line before clearing. */ | |
923 | if (linenum == 0 && | |
924 | inv_botlin == 0 && _rl_last_c_pos == out && | |
925 | (wrap_offset > visible_wrap_offset) && | |
926 | (_rl_last_c_pos < visible_first_line_len)) | |
927 | { | |
5bdf8622 DJ |
928 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
929 | nleft = _rl_screenwidth - _rl_last_c_pos; | |
930 | else | |
931 | nleft = _rl_screenwidth + wrap_offset - _rl_last_c_pos; | |
d60d9f65 SS |
932 | if (nleft) |
933 | _rl_clear_to_eol (nleft); | |
934 | } | |
935 | ||
936 | /* Since the new first line is now visible, save its length. */ | |
937 | if (linenum == 0) | |
938 | visible_first_line_len = (inv_botlin > 0) ? inv_lbreaks[1] : out - wrap_offset; | |
939 | } | |
940 | ||
941 | /* We may have deleted some lines. If so, clear the left over | |
942 | blank ones at the bottom out. */ | |
943 | if (_rl_vis_botlin > inv_botlin) | |
944 | { | |
945 | char *tt; | |
946 | for (; linenum <= _rl_vis_botlin; linenum++) | |
947 | { | |
948 | tt = VIS_CHARS (linenum); | |
949 | _rl_move_vert (linenum); | |
950 | _rl_move_cursor_relative (0, tt); | |
951 | _rl_clear_to_eol | |
9255ee31 | 952 | ((linenum == _rl_vis_botlin) ? strlen (tt) : _rl_screenwidth); |
d60d9f65 SS |
953 | } |
954 | } | |
955 | _rl_vis_botlin = inv_botlin; | |
956 | ||
957 | /* CHANGED_SCREEN_LINE is set to 1 if we have moved to a | |
958 | different screen line during this redisplay. */ | |
959 | changed_screen_line = _rl_last_v_pos != cursor_linenum; | |
960 | if (changed_screen_line) | |
961 | { | |
962 | _rl_move_vert (cursor_linenum); | |
9255ee31 | 963 | /* If we moved up to the line with the prompt using _rl_term_up, |
c862e87b JM |
964 | the physical cursor position on the screen stays the same, |
965 | but the buffer position needs to be adjusted to account | |
966 | for invisible characters. */ | |
5bdf8622 | 967 | if ((MB_CUR_MAX == 1 || rl_byte_oriented) && cursor_linenum == 0 && wrap_offset) |
c862e87b | 968 | _rl_last_c_pos += wrap_offset; |
d60d9f65 SS |
969 | } |
970 | ||
971 | /* We have to reprint the prompt if it contains invisible | |
972 | characters, since it's not generally OK to just reprint | |
973 | the characters from the current cursor position. But we | |
974 | only need to reprint it if the cursor is before the last | |
975 | invisible character in the prompt string. */ | |
9255ee31 | 976 | nleft = prompt_visible_length + wrap_offset; |
d60d9f65 | 977 | if (cursor_linenum == 0 && wrap_offset > 0 && _rl_last_c_pos > 0 && |
9255ee31 | 978 | _rl_last_c_pos <= prompt_last_invisible && local_prompt) |
d60d9f65 | 979 | { |
771578d1 SS |
980 | #if defined (__MSDOS__) |
981 | putc ('\r', rl_outstream); | |
982 | #else | |
9255ee31 EZ |
983 | if (_rl_term_cr) |
984 | tputs (_rl_term_cr, 1, _rl_output_character_function); | |
771578d1 | 985 | #endif |
d60d9f65 | 986 | _rl_output_some_chars (local_prompt, nleft); |
9255ee31 | 987 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
5bdf8622 | 988 | _rl_last_c_pos = _rl_col_width (local_prompt, 0, nleft) - wrap_offset; |
9255ee31 EZ |
989 | else |
990 | _rl_last_c_pos = nleft; | |
d60d9f65 SS |
991 | } |
992 | ||
993 | /* Where on that line? And where does that line start | |
994 | in the buffer? */ | |
995 | pos = inv_lbreaks[cursor_linenum]; | |
996 | /* nleft == number of characters in the line buffer between the | |
997 | start of the line and the cursor position. */ | |
998 | nleft = c_pos - pos; | |
999 | ||
5bdf8622 DJ |
1000 | /* NLEFT is now a number of characters in a buffer. When in a |
1001 | multibyte locale, however, _rl_last_c_pos is an absolute cursor | |
1002 | position that doesn't take invisible characters in the prompt | |
1003 | into account. We use a fudge factor to compensate. */ | |
1004 | ||
d60d9f65 SS |
1005 | /* Since _rl_backspace() doesn't know about invisible characters in the |
1006 | prompt, and there's no good way to tell it, we compensate for | |
1007 | those characters here and call _rl_backspace() directly. */ | |
1008 | if (wrap_offset && cursor_linenum == 0 && nleft < _rl_last_c_pos) | |
1009 | { | |
9255ee31 | 1010 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
5bdf8622 | 1011 | tx = _rl_col_width (&visible_line[pos], 0, nleft) - visible_wrap_offset; |
9255ee31 | 1012 | else |
5bdf8622 DJ |
1013 | tx = nleft; |
1014 | if (_rl_last_c_pos > tx) | |
1015 | { | |
1016 | _rl_backspace (_rl_last_c_pos - tx); /* XXX */ | |
1017 | _rl_last_c_pos = tx; | |
1018 | } | |
d60d9f65 SS |
1019 | } |
1020 | ||
5bdf8622 DJ |
1021 | /* We need to note that in a multibyte locale we are dealing with |
1022 | _rl_last_c_pos as an absolute cursor position, but moving to a | |
1023 | point specified by a buffer position (NLEFT) that doesn't take | |
1024 | invisible characters into account. */ | |
9255ee31 EZ |
1025 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1026 | _rl_move_cursor_relative (nleft, &invisible_line[pos]); | |
1027 | else if (nleft != _rl_last_c_pos) | |
d60d9f65 SS |
1028 | _rl_move_cursor_relative (nleft, &invisible_line[pos]); |
1029 | } | |
1030 | } | |
1031 | else /* Do horizontal scrolling. */ | |
1032 | { | |
1033 | #define M_OFFSET(margin, offset) ((margin) == 0 ? offset : 0) | |
1034 | int lmargin, ndisp, nleft, phys_c_pos, t; | |
1035 | ||
1036 | /* Always at top line. */ | |
1037 | _rl_last_v_pos = 0; | |
1038 | ||
1039 | /* Compute where in the buffer the displayed line should start. This | |
1040 | will be LMARGIN. */ | |
1041 | ||
1042 | /* The number of characters that will be displayed before the cursor. */ | |
1043 | ndisp = c_pos - wrap_offset; | |
9255ee31 | 1044 | nleft = prompt_visible_length + wrap_offset; |
d60d9f65 | 1045 | /* Where the new cursor position will be on the screen. This can be |
c862e87b | 1046 | longer than SCREENWIDTH; if it is, lmargin will be adjusted. */ |
d60d9f65 | 1047 | phys_c_pos = c_pos - (last_lmargin ? last_lmargin : wrap_offset); |
9255ee31 | 1048 | t = _rl_screenwidth / 3; |
d60d9f65 SS |
1049 | |
1050 | /* If the number of characters had already exceeded the screenwidth, | |
c862e87b | 1051 | last_lmargin will be > 0. */ |
d60d9f65 SS |
1052 | |
1053 | /* If the number of characters to be displayed is more than the screen | |
c862e87b JM |
1054 | width, compute the starting offset so that the cursor is about |
1055 | two-thirds of the way across the screen. */ | |
9255ee31 | 1056 | if (phys_c_pos > _rl_screenwidth - 2) |
d60d9f65 SS |
1057 | { |
1058 | lmargin = c_pos - (2 * t); | |
1059 | if (lmargin < 0) | |
1060 | lmargin = 0; | |
1061 | /* If the left margin would be in the middle of a prompt with | |
1062 | invisible characters, don't display the prompt at all. */ | |
1063 | if (wrap_offset && lmargin > 0 && lmargin < nleft) | |
1064 | lmargin = nleft; | |
1065 | } | |
9255ee31 | 1066 | else if (ndisp < _rl_screenwidth - 2) /* XXX - was -1 */ |
c862e87b | 1067 | lmargin = 0; |
d60d9f65 SS |
1068 | else if (phys_c_pos < 1) |
1069 | { | |
1070 | /* If we are moving back towards the beginning of the line and | |
1071 | the last margin is no longer correct, compute a new one. */ | |
1072 | lmargin = ((c_pos - 1) / t) * t; /* XXX */ | |
1073 | if (wrap_offset && lmargin > 0 && lmargin < nleft) | |
1074 | lmargin = nleft; | |
1075 | } | |
1076 | else | |
c862e87b | 1077 | lmargin = last_lmargin; |
d60d9f65 SS |
1078 | |
1079 | /* If the first character on the screen isn't the first character | |
1080 | in the display line, indicate this with a special character. */ | |
1081 | if (lmargin > 0) | |
1082 | line[lmargin] = '<'; | |
1083 | ||
1084 | /* If SCREENWIDTH characters starting at LMARGIN do not encompass | |
c862e87b JM |
1085 | the whole line, indicate that with a special character at the |
1086 | right edge of the screen. If LMARGIN is 0, we need to take the | |
1087 | wrap offset into account. */ | |
9255ee31 | 1088 | t = lmargin + M_OFFSET (lmargin, wrap_offset) + _rl_screenwidth; |
d60d9f65 | 1089 | if (t < out) |
c862e87b | 1090 | line[t - 1] = '>'; |
d60d9f65 SS |
1091 | |
1092 | if (!rl_display_fixed || forced_display || lmargin != last_lmargin) | |
1093 | { | |
1094 | forced_display = 0; | |
1095 | update_line (&visible_line[last_lmargin], | |
1096 | &invisible_line[lmargin], | |
1097 | 0, | |
9255ee31 EZ |
1098 | _rl_screenwidth + visible_wrap_offset, |
1099 | _rl_screenwidth + (lmargin ? 0 : wrap_offset), | |
d60d9f65 SS |
1100 | 0); |
1101 | ||
1102 | /* If the visible new line is shorter than the old, but the number | |
1103 | of invisible characters is greater, and we are at the end of | |
1104 | the new line, we need to clear to eol. */ | |
1105 | t = _rl_last_c_pos - M_OFFSET (lmargin, wrap_offset); | |
1106 | if ((M_OFFSET (lmargin, wrap_offset) > visible_wrap_offset) && | |
1107 | (_rl_last_c_pos == out) && | |
1108 | t < visible_first_line_len) | |
1109 | { | |
9255ee31 | 1110 | nleft = _rl_screenwidth - t; |
d60d9f65 SS |
1111 | _rl_clear_to_eol (nleft); |
1112 | } | |
1113 | visible_first_line_len = out - lmargin - M_OFFSET (lmargin, wrap_offset); | |
9255ee31 EZ |
1114 | if (visible_first_line_len > _rl_screenwidth) |
1115 | visible_first_line_len = _rl_screenwidth; | |
d60d9f65 SS |
1116 | |
1117 | _rl_move_cursor_relative (c_pos - lmargin, &invisible_line[lmargin]); | |
1118 | last_lmargin = lmargin; | |
1119 | } | |
1120 | } | |
1121 | fflush (rl_outstream); | |
1122 | ||
1123 | /* Swap visible and non-visible lines. */ | |
1124 | { | |
9255ee31 | 1125 | char *vtemp = visible_line; |
1b17e766 EZ |
1126 | int *itemp = vis_lbreaks, ntemp = vis_lbsize; |
1127 | ||
d60d9f65 | 1128 | visible_line = invisible_line; |
9255ee31 | 1129 | invisible_line = vtemp; |
1b17e766 | 1130 | |
d60d9f65 SS |
1131 | vis_lbreaks = inv_lbreaks; |
1132 | inv_lbreaks = itemp; | |
1b17e766 EZ |
1133 | |
1134 | vis_lbsize = inv_lbsize; | |
1135 | inv_lbsize = ntemp; | |
1136 | ||
d60d9f65 SS |
1137 | rl_display_fixed = 0; |
1138 | /* If we are displaying on a single line, and last_lmargin is > 0, we | |
1139 | are not displaying any invisible characters, so set visible_wrap_offset | |
1140 | to 0. */ | |
1141 | if (_rl_horizontal_scroll_mode && last_lmargin) | |
1142 | visible_wrap_offset = 0; | |
1143 | else | |
1144 | visible_wrap_offset = wrap_offset; | |
1145 | } | |
87adec2e JK |
1146 | |
1147 | _rl_release_sigint (); | |
d60d9f65 SS |
1148 | } |
1149 | ||
1150 | /* PWP: update_line() is based on finding the middle difference of each | |
1151 | line on the screen; vis: | |
1152 | ||
1153 | /old first difference | |
1154 | /beginning of line | /old last same /old EOL | |
1155 | v v v v | |
1156 | old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as | |
1157 | new: eddie> Oh, my little buggy says to me, as lurgid as | |
1158 | ^ ^ ^ ^ | |
1159 | \beginning of line | \new last same \new end of line | |
1160 | \new first difference | |
1161 | ||
1162 | All are character pointers for the sake of speed. Special cases for | |
c862e87b | 1163 | no differences, as well as for end of line additions must be handled. |
d60d9f65 SS |
1164 | |
1165 | Could be made even smarter, but this works well enough */ | |
1166 | static void | |
1167 | update_line (old, new, current_line, omax, nmax, inv_botlin) | |
1168 | register char *old, *new; | |
1169 | int current_line, omax, nmax, inv_botlin; | |
1170 | { | |
1171 | register char *ofd, *ols, *oe, *nfd, *nls, *ne; | |
1172 | int temp, lendiff, wsatend, od, nd; | |
1173 | int current_invis_chars; | |
9255ee31 EZ |
1174 | int col_lendiff, col_temp; |
1175 | #if defined (HANDLE_MULTIBYTE) | |
1176 | mbstate_t ps_new, ps_old; | |
1177 | int new_offset, old_offset, tmp; | |
1178 | #endif | |
d60d9f65 SS |
1179 | |
1180 | /* If we're at the right edge of a terminal that supports xn, we're | |
1181 | ready to wrap around, so do so. This fixes problems with knowing | |
1182 | the exact cursor position and cut-and-paste with certain terminal | |
1183 | emulators. In this calculation, TEMP is the physical screen | |
1184 | position of the cursor. */ | |
5bdf8622 DJ |
1185 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1186 | temp = _rl_last_c_pos; | |
1187 | else | |
1188 | temp = _rl_last_c_pos - W_OFFSET(_rl_last_v_pos, visible_wrap_offset); | |
9255ee31 EZ |
1189 | if (temp == _rl_screenwidth && _rl_term_autowrap && !_rl_horizontal_scroll_mode |
1190 | && _rl_last_v_pos == current_line - 1) | |
d60d9f65 | 1191 | { |
9255ee31 EZ |
1192 | #if defined (HANDLE_MULTIBYTE) |
1193 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1194 | { | |
1195 | wchar_t wc; | |
1196 | mbstate_t ps; | |
1197 | int tempwidth, bytes; | |
1198 | size_t ret; | |
1199 | ||
1200 | /* This fixes only double-column characters, but if the wrapped | |
1201 | character comsumes more than three columns, spaces will be | |
1202 | inserted in the string buffer. */ | |
1203 | if (_rl_wrapped_line[current_line] > 0) | |
1204 | _rl_clear_to_eol (_rl_wrapped_line[current_line]); | |
1205 | ||
1206 | memset (&ps, 0, sizeof (mbstate_t)); | |
1207 | ret = mbrtowc (&wc, new, MB_CUR_MAX, &ps); | |
5bdf8622 | 1208 | if (MB_INVALIDCH (ret)) |
9255ee31 EZ |
1209 | { |
1210 | tempwidth = 1; | |
1211 | ret = 1; | |
1212 | } | |
5bdf8622 | 1213 | else if (MB_NULLWCH (ret)) |
9255ee31 EZ |
1214 | tempwidth = 0; |
1215 | else | |
1216 | tempwidth = wcwidth (wc); | |
1217 | ||
1218 | if (tempwidth > 0) | |
1219 | { | |
1220 | int count; | |
1221 | bytes = ret; | |
1222 | for (count = 0; count < bytes; count++) | |
1223 | putc (new[count], rl_outstream); | |
1224 | _rl_last_c_pos = tempwidth; | |
1225 | _rl_last_v_pos++; | |
1226 | memset (&ps, 0, sizeof (mbstate_t)); | |
1227 | ret = mbrtowc (&wc, old, MB_CUR_MAX, &ps); | |
1228 | if (ret != 0 && bytes != 0) | |
1229 | { | |
5bdf8622 | 1230 | if (MB_INVALIDCH (ret)) |
9255ee31 EZ |
1231 | memmove (old+bytes, old+1, strlen (old+1)); |
1232 | else | |
1233 | memmove (old+bytes, old+ret, strlen (old+ret)); | |
1234 | memcpy (old, new, bytes); | |
1235 | } | |
1236 | } | |
1237 | else | |
1238 | { | |
1239 | putc (' ', rl_outstream); | |
1240 | _rl_last_c_pos = 1; | |
1241 | _rl_last_v_pos++; | |
1242 | if (old[0] && new[0]) | |
1243 | old[0] = new[0]; | |
1244 | } | |
1245 | } | |
d60d9f65 | 1246 | else |
9255ee31 EZ |
1247 | #endif |
1248 | { | |
1249 | if (new[0]) | |
1250 | putc (new[0], rl_outstream); | |
1251 | else | |
1252 | putc (' ', rl_outstream); | |
5bdf8622 | 1253 | _rl_last_c_pos = 1; |
9255ee31 EZ |
1254 | _rl_last_v_pos++; |
1255 | if (old[0] && new[0]) | |
1256 | old[0] = new[0]; | |
1257 | } | |
d60d9f65 | 1258 | } |
9255ee31 | 1259 | |
d60d9f65 SS |
1260 | |
1261 | /* Find first difference. */ | |
9255ee31 EZ |
1262 | #if defined (HANDLE_MULTIBYTE) |
1263 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1264 | { | |
5bdf8622 DJ |
1265 | /* See if the old line is a subset of the new line, so that the |
1266 | only change is adding characters. */ | |
1267 | temp = (omax < nmax) ? omax : nmax; | |
1268 | if (memcmp (old, new, temp) == 0) | |
9255ee31 | 1269 | { |
5bdf8622 DJ |
1270 | ofd = old + temp; |
1271 | nfd = new + temp; | |
1272 | } | |
1273 | else | |
1274 | { | |
1275 | memset (&ps_new, 0, sizeof(mbstate_t)); | |
1276 | memset (&ps_old, 0, sizeof(mbstate_t)); | |
1277 | ||
1278 | if (omax == nmax && STREQN (new, old, omax)) | |
1279 | { | |
1280 | ofd = old + omax; | |
1281 | nfd = new + nmax; | |
1282 | } | |
1283 | else | |
1284 | { | |
1285 | new_offset = old_offset = 0; | |
1286 | for (ofd = old, nfd = new; | |
1287 | (ofd - old < omax) && *ofd && | |
1288 | _rl_compare_chars(old, old_offset, &ps_old, new, new_offset, &ps_new); ) | |
1289 | { | |
1290 | old_offset = _rl_find_next_mbchar (old, old_offset, 1, MB_FIND_ANY); | |
1291 | new_offset = _rl_find_next_mbchar (new, new_offset, 1, MB_FIND_ANY); | |
1292 | ofd = old + old_offset; | |
1293 | nfd = new + new_offset; | |
1294 | } | |
1295 | } | |
9255ee31 EZ |
1296 | } |
1297 | } | |
1298 | else | |
1299 | #endif | |
d60d9f65 SS |
1300 | for (ofd = old, nfd = new; |
1301 | (ofd - old < omax) && *ofd && (*ofd == *nfd); | |
1302 | ofd++, nfd++) | |
1303 | ; | |
1304 | ||
1305 | /* Move to the end of the screen line. ND and OD are used to keep track | |
1306 | of the distance between ne and new and oe and old, respectively, to | |
1307 | move a subtraction out of each loop. */ | |
1308 | for (od = ofd - old, oe = ofd; od < omax && *oe; oe++, od++); | |
1309 | for (nd = nfd - new, ne = nfd; nd < nmax && *ne; ne++, nd++); | |
1310 | ||
1311 | /* If no difference, continue to next line. */ | |
1312 | if (ofd == oe && nfd == ne) | |
1313 | return; | |
1314 | ||
1315 | wsatend = 1; /* flag for trailing whitespace */ | |
9255ee31 EZ |
1316 | |
1317 | #if defined (HANDLE_MULTIBYTE) | |
1318 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1319 | { | |
1320 | ols = old + _rl_find_prev_mbchar (old, oe - old, MB_FIND_ANY); | |
1321 | nls = new + _rl_find_prev_mbchar (new, ne - new, MB_FIND_ANY); | |
1322 | while ((ols > ofd) && (nls > nfd)) | |
1323 | { | |
1324 | memset (&ps_old, 0, sizeof (mbstate_t)); | |
1325 | memset (&ps_new, 0, sizeof (mbstate_t)); | |
1326 | ||
5bdf8622 DJ |
1327 | #if 0 |
1328 | /* On advice from [email protected] */ | |
9255ee31 EZ |
1329 | _rl_adjust_point (old, ols - old, &ps_old); |
1330 | _rl_adjust_point (new, nls - new, &ps_new); | |
5bdf8622 | 1331 | #endif |
9255ee31 EZ |
1332 | |
1333 | if (_rl_compare_chars (old, ols - old, &ps_old, new, nls - new, &ps_new) == 0) | |
1334 | break; | |
1335 | ||
1336 | if (*ols == ' ') | |
1337 | wsatend = 0; | |
1338 | ||
1339 | ols = old + _rl_find_prev_mbchar (old, ols - old, MB_FIND_ANY); | |
1340 | nls = new + _rl_find_prev_mbchar (new, nls - new, MB_FIND_ANY); | |
1341 | } | |
1342 | } | |
1343 | else | |
1344 | { | |
1345 | #endif /* HANDLE_MULTIBYTE */ | |
d60d9f65 SS |
1346 | ols = oe - 1; /* find last same */ |
1347 | nls = ne - 1; | |
1348 | while ((ols > ofd) && (nls > nfd) && (*ols == *nls)) | |
1349 | { | |
1350 | if (*ols != ' ') | |
1351 | wsatend = 0; | |
1352 | ols--; | |
1353 | nls--; | |
1354 | } | |
9255ee31 EZ |
1355 | #if defined (HANDLE_MULTIBYTE) |
1356 | } | |
1357 | #endif | |
d60d9f65 SS |
1358 | |
1359 | if (wsatend) | |
1360 | { | |
1361 | ols = oe; | |
1362 | nls = ne; | |
1363 | } | |
9255ee31 EZ |
1364 | #if defined (HANDLE_MULTIBYTE) |
1365 | /* This may not work for stateful encoding, but who cares? To handle | |
1366 | stateful encoding properly, we have to scan each string from the | |
1367 | beginning and compare. */ | |
1368 | else if (_rl_compare_chars (ols, 0, NULL, nls, 0, NULL) == 0) | |
1369 | #else | |
d60d9f65 | 1370 | else if (*ols != *nls) |
9255ee31 | 1371 | #endif |
d60d9f65 SS |
1372 | { |
1373 | if (*ols) /* don't step past the NUL */ | |
9255ee31 EZ |
1374 | { |
1375 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1376 | ols = old + _rl_find_next_mbchar (old, ols - old, 1, MB_FIND_ANY); | |
1377 | else | |
1378 | ols++; | |
1379 | } | |
d60d9f65 | 1380 | if (*nls) |
9255ee31 EZ |
1381 | { |
1382 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1383 | nls = new + _rl_find_next_mbchar (new, nls - new, 1, MB_FIND_ANY); | |
1384 | else | |
1385 | nls++; | |
1386 | } | |
d60d9f65 SS |
1387 | } |
1388 | ||
1389 | /* count of invisible characters in the current invisible line. */ | |
1390 | current_invis_chars = W_OFFSET (current_line, wrap_offset); | |
1391 | if (_rl_last_v_pos != current_line) | |
1392 | { | |
1393 | _rl_move_vert (current_line); | |
5bdf8622 | 1394 | if ((MB_CUR_MAX == 1 || rl_byte_oriented) && current_line == 0 && visible_wrap_offset) |
d60d9f65 SS |
1395 | _rl_last_c_pos += visible_wrap_offset; |
1396 | } | |
1397 | ||
1398 | /* If this is the first line and there are invisible characters in the | |
1399 | prompt string, and the prompt string has not changed, and the current | |
1400 | cursor position is before the last invisible character in the prompt, | |
1401 | and the index of the character to move to is past the end of the prompt | |
1402 | string, then redraw the entire prompt string. We can only do this | |
1403 | reliably if the terminal supports a `cr' capability. | |
1404 | ||
1405 | This is not an efficiency hack -- there is a problem with redrawing | |
1406 | portions of the prompt string if they contain terminal escape | |
1407 | sequences (like drawing the `unbold' sequence without a corresponding | |
1408 | `bold') that manifests itself on certain terminals. */ | |
1409 | ||
1410 | lendiff = local_prompt ? strlen (local_prompt) : 0; | |
1411 | od = ofd - old; /* index of first difference in visible line */ | |
1412 | if (current_line == 0 && !_rl_horizontal_scroll_mode && | |
9255ee31 EZ |
1413 | _rl_term_cr && lendiff > prompt_visible_length && _rl_last_c_pos > 0 && |
1414 | od >= lendiff && _rl_last_c_pos <= prompt_last_invisible) | |
d60d9f65 | 1415 | { |
771578d1 SS |
1416 | #if defined (__MSDOS__) |
1417 | putc ('\r', rl_outstream); | |
1418 | #else | |
9255ee31 | 1419 | tputs (_rl_term_cr, 1, _rl_output_character_function); |
1b17e766 | 1420 | #endif |
d60d9f65 | 1421 | _rl_output_some_chars (local_prompt, lendiff); |
9255ee31 | 1422 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
5bdf8622 DJ |
1423 | { |
1424 | /* We take wrap_offset into account here so we can pass correct | |
1425 | information to _rl_move_cursor_relative. */ | |
1426 | _rl_last_c_pos = _rl_col_width (local_prompt, 0, lendiff) - wrap_offset; | |
1427 | cpos_adjusted = 1; | |
1428 | } | |
9255ee31 EZ |
1429 | else |
1430 | _rl_last_c_pos = lendiff; | |
d60d9f65 SS |
1431 | } |
1432 | ||
1433 | _rl_move_cursor_relative (od, old); | |
1434 | ||
9255ee31 EZ |
1435 | /* if (len (new) > len (old)) |
1436 | lendiff == difference in buffer | |
1437 | col_lendiff == difference on screen | |
1438 | When not using multibyte characters, these are equal */ | |
d60d9f65 | 1439 | lendiff = (nls - nfd) - (ols - ofd); |
9255ee31 EZ |
1440 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1441 | col_lendiff = _rl_col_width (new, nfd - new, nls - new) - _rl_col_width (old, ofd - old, ols - old); | |
1442 | else | |
1443 | col_lendiff = lendiff; | |
d60d9f65 SS |
1444 | |
1445 | /* If we are changing the number of invisible characters in a line, and | |
1446 | the spot of first difference is before the end of the invisible chars, | |
1447 | lendiff needs to be adjusted. */ | |
1448 | if (current_line == 0 && !_rl_horizontal_scroll_mode && | |
1449 | current_invis_chars != visible_wrap_offset) | |
9255ee31 EZ |
1450 | { |
1451 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1452 | { | |
1453 | lendiff += visible_wrap_offset - current_invis_chars; | |
1454 | col_lendiff += visible_wrap_offset - current_invis_chars; | |
1455 | } | |
1456 | else | |
1457 | { | |
1458 | lendiff += visible_wrap_offset - current_invis_chars; | |
1459 | col_lendiff = lendiff; | |
1460 | } | |
1461 | } | |
d60d9f65 SS |
1462 | |
1463 | /* Insert (diff (len (old), len (new)) ch. */ | |
1464 | temp = ne - nfd; | |
9255ee31 EZ |
1465 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1466 | col_temp = _rl_col_width (new, nfd - new, ne - new); | |
1467 | else | |
1468 | col_temp = temp; | |
1469 | ||
1470 | if (col_lendiff > 0) /* XXX - was lendiff */ | |
d60d9f65 SS |
1471 | { |
1472 | /* Non-zero if we're increasing the number of lines. */ | |
1473 | int gl = current_line >= _rl_vis_botlin && inv_botlin > _rl_vis_botlin; | |
1474 | /* Sometimes it is cheaper to print the characters rather than | |
1475 | use the terminal's capabilities. If we're growing the number | |
1476 | of lines, make sure we actually cause the new line to wrap | |
1477 | around on auto-wrapping terminals. */ | |
9255ee31 | 1478 | if (_rl_terminal_can_insert && ((2 * col_temp) >= col_lendiff || _rl_term_IC) && (!_rl_term_autowrap || !gl)) |
d60d9f65 | 1479 | { |
9255ee31 | 1480 | /* If lendiff > prompt_visible_length and _rl_last_c_pos == 0 and |
d60d9f65 | 1481 | _rl_horizontal_scroll_mode == 1, inserting the characters with |
9255ee31 | 1482 | _rl_term_IC or _rl_term_ic will screw up the screen because of the |
d60d9f65 SS |
1483 | invisible characters. We need to just draw them. */ |
1484 | if (*ols && (!_rl_horizontal_scroll_mode || _rl_last_c_pos > 0 || | |
9255ee31 | 1485 | lendiff <= prompt_visible_length || !current_invis_chars)) |
d60d9f65 | 1486 | { |
9255ee31 EZ |
1487 | insert_some_chars (nfd, lendiff, col_lendiff); |
1488 | _rl_last_c_pos += col_lendiff; | |
d60d9f65 | 1489 | } |
5bdf8622 | 1490 | else if ((MB_CUR_MAX == 1 || rl_byte_oriented != 0) && *ols == 0 && lendiff > 0) |
d60d9f65 SS |
1491 | { |
1492 | /* At the end of a line the characters do not have to | |
1493 | be "inserted". They can just be placed on the screen. */ | |
1494 | /* However, this screws up the rest of this block, which | |
c862e87b | 1495 | assumes you've done the insert because you can. */ |
d60d9f65 | 1496 | _rl_output_some_chars (nfd, lendiff); |
9255ee31 | 1497 | _rl_last_c_pos += col_lendiff; |
d60d9f65 SS |
1498 | } |
1499 | else | |
1500 | { | |
1501 | /* We have horizontal scrolling and we are not inserting at | |
1502 | the end. We have invisible characters in this line. This | |
1503 | is a dumb update. */ | |
1504 | _rl_output_some_chars (nfd, temp); | |
9255ee31 | 1505 | _rl_last_c_pos += col_temp; |
d60d9f65 SS |
1506 | return; |
1507 | } | |
1508 | /* Copy (new) chars to screen from first diff to last match. */ | |
1509 | temp = nls - nfd; | |
1510 | if ((temp - lendiff) > 0) | |
1511 | { | |
1512 | _rl_output_some_chars (nfd + lendiff, temp - lendiff); | |
5bdf8622 DJ |
1513 | #if 1 |
1514 | /* XXX -- this bears closer inspection. Fixes a redisplay bug | |
1515 | reported against bash-3.0-alpha by Andreas Schwab involving | |
1516 | multibyte characters and prompt strings with invisible | |
1517 | characters, but was previously disabled. */ | |
9255ee31 | 1518 | _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-col_lendiff); |
288381c0 MC |
1519 | #else |
1520 | _rl_last_c_pos += _rl_col_width (nfd+lendiff, 0, temp-lendiff); | |
9255ee31 | 1521 | #endif |
d60d9f65 SS |
1522 | } |
1523 | } | |
1524 | else | |
1525 | { | |
1526 | /* cannot insert chars, write to EOL */ | |
1527 | _rl_output_some_chars (nfd, temp); | |
9255ee31 | 1528 | _rl_last_c_pos += col_temp; |
5bdf8622 DJ |
1529 | /* If we're in a multibyte locale and were before the last invisible |
1530 | char in the current line (which implies we just output some invisible | |
1531 | characters) we need to adjust _rl_last_c_pos, since it represents | |
1532 | a physical character position. */ | |
d60d9f65 SS |
1533 | } |
1534 | } | |
1535 | else /* Delete characters from line. */ | |
1536 | { | |
1537 | /* If possible and inexpensive to use terminal deletion, then do so. */ | |
9255ee31 | 1538 | if (_rl_term_dc && (2 * col_temp) >= -col_lendiff) |
d60d9f65 SS |
1539 | { |
1540 | /* If all we're doing is erasing the invisible characters in the | |
1541 | prompt string, don't bother. It screws up the assumptions | |
1542 | about what's on the screen. */ | |
1543 | if (_rl_horizontal_scroll_mode && _rl_last_c_pos == 0 && | |
1544 | -lendiff == visible_wrap_offset) | |
9255ee31 | 1545 | col_lendiff = 0; |
d60d9f65 | 1546 | |
9255ee31 EZ |
1547 | if (col_lendiff) |
1548 | delete_chars (-col_lendiff); /* delete (diff) characters */ | |
d60d9f65 SS |
1549 | |
1550 | /* Copy (new) chars to screen from first diff to last match */ | |
1551 | temp = nls - nfd; | |
1552 | if (temp > 0) | |
1553 | { | |
1554 | _rl_output_some_chars (nfd, temp); | |
9255ee31 | 1555 | _rl_last_c_pos += _rl_col_width (nfd, 0, temp);; |
d60d9f65 SS |
1556 | } |
1557 | } | |
1558 | /* Otherwise, print over the existing material. */ | |
1559 | else | |
1560 | { | |
1561 | if (temp > 0) | |
1562 | { | |
1563 | _rl_output_some_chars (nfd, temp); | |
5bdf8622 | 1564 | _rl_last_c_pos += col_temp; /* XXX */ |
d60d9f65 SS |
1565 | } |
1566 | lendiff = (oe - old) - (ne - new); | |
9255ee31 EZ |
1567 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1568 | col_lendiff = _rl_col_width (old, 0, oe - old) - _rl_col_width (new, 0, ne - new); | |
1569 | else | |
1570 | col_lendiff = lendiff; | |
1571 | ||
1572 | if (col_lendiff) | |
c862e87b JM |
1573 | { |
1574 | if (_rl_term_autowrap && current_line < inv_botlin) | |
9255ee31 | 1575 | space_to_eol (col_lendiff); |
c862e87b | 1576 | else |
9255ee31 | 1577 | _rl_clear_to_eol (col_lendiff); |
c862e87b | 1578 | } |
d60d9f65 SS |
1579 | } |
1580 | } | |
1581 | } | |
1582 | ||
1583 | /* Tell the update routines that we have moved onto a new (empty) line. */ | |
1584 | int | |
1585 | rl_on_new_line () | |
1586 | { | |
1587 | if (visible_line) | |
1588 | visible_line[0] = '\0'; | |
1589 | ||
1590 | _rl_last_c_pos = _rl_last_v_pos = 0; | |
1591 | _rl_vis_botlin = last_lmargin = 0; | |
1592 | if (vis_lbreaks) | |
1593 | vis_lbreaks[0] = vis_lbreaks[1] = 0; | |
1594 | visible_wrap_offset = 0; | |
1595 | return 0; | |
1596 | } | |
1597 | ||
1b17e766 EZ |
1598 | /* Tell the update routines that we have moved onto a new line with the |
1599 | prompt already displayed. Code originally from the version of readline | |
5bdf8622 DJ |
1600 | distributed with CLISP. rl_expand_prompt must have already been called |
1601 | (explicitly or implicitly). This still doesn't work exactly right. */ | |
1b17e766 EZ |
1602 | int |
1603 | rl_on_new_line_with_prompt () | |
1604 | { | |
1605 | int prompt_size, i, l, real_screenwidth, newlines; | |
5bdf8622 | 1606 | char *prompt_last_line, *lprompt; |
1b17e766 EZ |
1607 | |
1608 | /* Initialize visible_line and invisible_line to ensure that they can hold | |
1609 | the already-displayed prompt. */ | |
1610 | prompt_size = strlen (rl_prompt) + 1; | |
1611 | init_line_structures (prompt_size); | |
1612 | ||
1613 | /* Make sure the line structures hold the already-displayed prompt for | |
1614 | redisplay. */ | |
5bdf8622 DJ |
1615 | lprompt = local_prompt ? local_prompt : rl_prompt; |
1616 | strcpy (visible_line, lprompt); | |
1617 | strcpy (invisible_line, lprompt); | |
1b17e766 EZ |
1618 | |
1619 | /* If the prompt contains newlines, take the last tail. */ | |
1620 | prompt_last_line = strrchr (rl_prompt, '\n'); | |
1621 | if (!prompt_last_line) | |
1622 | prompt_last_line = rl_prompt; | |
1623 | ||
1624 | l = strlen (prompt_last_line); | |
9255ee31 | 1625 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
5bdf8622 | 1626 | _rl_last_c_pos = _rl_col_width (prompt_last_line, 0, l); /* XXX */ |
9255ee31 EZ |
1627 | else |
1628 | _rl_last_c_pos = l; | |
1b17e766 EZ |
1629 | |
1630 | /* Dissect prompt_last_line into screen lines. Note that here we have | |
1631 | to use the real screenwidth. Readline's notion of screenwidth might be | |
1632 | one less, see terminal.c. */ | |
9255ee31 | 1633 | real_screenwidth = _rl_screenwidth + (_rl_term_autowrap ? 0 : 1); |
1b17e766 EZ |
1634 | _rl_last_v_pos = l / real_screenwidth; |
1635 | /* If the prompt length is a multiple of real_screenwidth, we don't know | |
1636 | whether the cursor is at the end of the last line, or already at the | |
1637 | beginning of the next line. Output a newline just to be safe. */ | |
1638 | if (l > 0 && (l % real_screenwidth) == 0) | |
1639 | _rl_output_some_chars ("\n", 1); | |
1640 | last_lmargin = 0; | |
1641 | ||
1642 | newlines = 0; i = 0; | |
1643 | while (i <= l) | |
1644 | { | |
1645 | _rl_vis_botlin = newlines; | |
1646 | vis_lbreaks[newlines++] = i; | |
1647 | i += real_screenwidth; | |
1648 | } | |
1649 | vis_lbreaks[newlines] = l; | |
1650 | visible_wrap_offset = 0; | |
1651 | ||
5bdf8622 DJ |
1652 | rl_display_prompt = rl_prompt; /* XXX - make sure it's set */ |
1653 | ||
1b17e766 EZ |
1654 | return 0; |
1655 | } | |
1656 | ||
d60d9f65 SS |
1657 | /* Actually update the display, period. */ |
1658 | int | |
1659 | rl_forced_update_display () | |
1660 | { | |
1661 | if (visible_line) | |
1662 | { | |
1663 | register char *temp = visible_line; | |
1664 | ||
1665 | while (*temp) | |
c862e87b | 1666 | *temp++ = '\0'; |
d60d9f65 SS |
1667 | } |
1668 | rl_on_new_line (); | |
1669 | forced_display++; | |
1670 | (*rl_redisplay_function) (); | |
1671 | return 0; | |
1672 | } | |
1673 | ||
1674 | /* Move the cursor from _rl_last_c_pos to NEW, which are buffer indices. | |
5bdf8622 DJ |
1675 | (Well, when we don't have multibyte characters, _rl_last_c_pos is a |
1676 | buffer index.) | |
d60d9f65 SS |
1677 | DATA is the contents of the screen line of interest; i.e., where |
1678 | the movement is being done. */ | |
1679 | void | |
1680 | _rl_move_cursor_relative (new, data) | |
1681 | int new; | |
9255ee31 | 1682 | const char *data; |
d60d9f65 SS |
1683 | { |
1684 | register int i; | |
5bdf8622 DJ |
1685 | int woff; /* number of invisible chars on current line */ |
1686 | int cpos, dpos; /* current and desired cursor positions */ | |
d60d9f65 | 1687 | |
5bdf8622 DJ |
1688 | woff = W_OFFSET (_rl_last_v_pos, wrap_offset); |
1689 | cpos = _rl_last_c_pos; | |
9255ee31 EZ |
1690 | #if defined (HANDLE_MULTIBYTE) |
1691 | /* If we have multibyte characters, NEW is indexed by the buffer point in | |
1692 | a multibyte string, but _rl_last_c_pos is the display position. In | |
288381c0 | 1693 | this case, NEW's display position is not obvious and must be |
5bdf8622 DJ |
1694 | calculated. We need to account for invisible characters in this line, |
1695 | as long as we are past them and they are counted by _rl_col_width. */ | |
1696 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
288381c0 | 1697 | { |
5bdf8622 DJ |
1698 | dpos = _rl_col_width (data, 0, new); |
1699 | if (dpos > woff) | |
1700 | dpos -= woff; | |
288381c0 | 1701 | } |
5bdf8622 | 1702 | else |
9255ee31 | 1703 | #endif |
5bdf8622 DJ |
1704 | dpos = new; |
1705 | ||
1706 | /* If we don't have to do anything, then return. */ | |
1707 | if (cpos == dpos) | |
1708 | return; | |
d60d9f65 SS |
1709 | |
1710 | /* It may be faster to output a CR, and then move forwards instead | |
1711 | of moving backwards. */ | |
1712 | /* i == current physical cursor position. */ | |
5bdf8622 DJ |
1713 | #if defined (HANDLE_MULTIBYTE) |
1714 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) | |
1715 | i = _rl_last_c_pos; | |
1716 | else | |
1717 | #endif | |
1718 | i = _rl_last_c_pos - woff; | |
d60d9f65 | 1719 | if (new == 0 || CR_FASTER (new, _rl_last_c_pos) || |
9255ee31 | 1720 | (_rl_term_autowrap && i == _rl_screenwidth)) |
d60d9f65 SS |
1721 | { |
1722 | #if defined (__MSDOS__) | |
1723 | putc ('\r', rl_outstream); | |
1724 | #else | |
9255ee31 | 1725 | tputs (_rl_term_cr, 1, _rl_output_character_function); |
d60d9f65 | 1726 | #endif /* !__MSDOS__ */ |
5bdf8622 | 1727 | cpos = _rl_last_c_pos = 0; |
d60d9f65 SS |
1728 | } |
1729 | ||
5bdf8622 | 1730 | if (cpos < dpos) |
d60d9f65 SS |
1731 | { |
1732 | /* Move the cursor forward. We do it by printing the command | |
1733 | to move the cursor forward if there is one, else print that | |
1734 | portion of the output buffer again. Which is cheaper? */ | |
1735 | ||
1736 | /* The above comment is left here for posterity. It is faster | |
1737 | to print one character (non-control) than to print a control | |
1738 | sequence telling the terminal to move forward one character. | |
1739 | That kind of control is for people who don't know what the | |
1740 | data is underneath the cursor. */ | |
1741 | #if defined (HACK_TERMCAP_MOTION) | |
9255ee31 EZ |
1742 | if (_rl_term_forward_char) |
1743 | { | |
5bdf8622 DJ |
1744 | for (i = cpos; i < dpos; i++) |
1745 | tputs (_rl_term_forward_char, 1, _rl_output_character_function); | |
9255ee31 EZ |
1746 | } |
1747 | else | |
5bdf8622 | 1748 | #endif /* HACK_TERMCAP_MOTION */ |
9255ee31 EZ |
1749 | if (MB_CUR_MAX > 1 && rl_byte_oriented == 0) |
1750 | { | |
1751 | tputs (_rl_term_cr, 1, _rl_output_character_function); | |
1752 | for (i = 0; i < new; i++) | |
1753 | putc (data[i], rl_outstream); | |
1754 | } | |
d60d9f65 | 1755 | else |
5bdf8622 | 1756 | for (i = cpos; i < new; i++) |
d60d9f65 | 1757 | putc (data[i], rl_outstream); |
d60d9f65 | 1758 | } |
5bdf8622 | 1759 | |
9255ee31 EZ |
1760 | #if defined (HANDLE_MULTIBYTE) |
1761 | /* NEW points to the buffer point, but _rl_last_c_pos is the display point. | |
1762 | The byte length of the string is probably bigger than the column width | |
1763 | of the string, which means that if NEW == _rl_last_c_pos, then NEW's | |
1764 | display point is less than _rl_last_c_pos. */ | |
9255ee31 | 1765 | #endif |
5bdf8622 DJ |
1766 | else if (cpos > dpos) |
1767 | _rl_backspace (cpos - dpos); | |
9255ee31 | 1768 | |
5bdf8622 | 1769 | _rl_last_c_pos = dpos; |
d60d9f65 SS |
1770 | } |
1771 | ||
1772 | /* PWP: move the cursor up or down. */ | |
1773 | void | |
1774 | _rl_move_vert (to) | |
1775 | int to; | |
1776 | { | |
1777 | register int delta, i; | |
1778 | ||
9255ee31 | 1779 | if (_rl_last_v_pos == to || to > _rl_screenheight) |
d60d9f65 SS |
1780 | return; |
1781 | ||
d60d9f65 SS |
1782 | if ((delta = to - _rl_last_v_pos) > 0) |
1783 | { | |
1784 | for (i = 0; i < delta; i++) | |
1785 | putc ('\n', rl_outstream); | |
1b17e766 EZ |
1786 | #if defined (__MSDOS__) |
1787 | putc ('\r', rl_outstream); | |
1788 | #else | |
9255ee31 | 1789 | tputs (_rl_term_cr, 1, _rl_output_character_function); |
1b17e766 | 1790 | #endif |
d60d9f65 SS |
1791 | _rl_last_c_pos = 0; |
1792 | } | |
1793 | else | |
1794 | { /* delta < 0 */ | |
30083a32 EZ |
1795 | #ifdef __MSDOS__ |
1796 | int row, col; | |
1797 | ||
b0f0a30e | 1798 | fflush (rl_outstream); /* make sure the cursor pos is current! */ |
30083a32 | 1799 | ScreenGetCursor (&row, &col); |
b0f0a30e EZ |
1800 | ScreenSetCursor (row + delta, col); |
1801 | i = -delta; /* in case someone wants to use it after the loop */ | |
30083a32 | 1802 | #else /* !__MSDOS__ */ |
9255ee31 | 1803 | if (_rl_term_up && *_rl_term_up) |
d60d9f65 | 1804 | for (i = 0; i < -delta; i++) |
9255ee31 | 1805 | tputs (_rl_term_up, 1, _rl_output_character_function); |
30083a32 | 1806 | #endif /* !__MSDOS__ */ |
d60d9f65 | 1807 | } |
1b17e766 | 1808 | |
d60d9f65 SS |
1809 | _rl_last_v_pos = to; /* Now TO is here */ |
1810 | } | |
1811 | ||
1812 | /* Physically print C on rl_outstream. This is for functions which know | |
1813 | how to optimize the display. Return the number of characters output. */ | |
1814 | int | |
1815 | rl_show_char (c) | |
1816 | int c; | |
1817 | { | |
1818 | int n = 1; | |
1819 | if (META_CHAR (c) && (_rl_output_meta_chars == 0)) | |
1820 | { | |
1821 | fprintf (rl_outstream, "M-"); | |
1822 | n += 2; | |
1823 | c = UNMETA (c); | |
1824 | } | |
1825 | ||
1826 | #if defined (DISPLAY_TABS) | |
1827 | if ((CTRL_CHAR (c) && c != '\t') || c == RUBOUT) | |
1828 | #else | |
1829 | if (CTRL_CHAR (c) || c == RUBOUT) | |
1830 | #endif /* !DISPLAY_TABS */ | |
1831 | { | |
1832 | fprintf (rl_outstream, "C-"); | |
1833 | n += 2; | |
1834 | c = CTRL_CHAR (c) ? UNCTRL (c) : '?'; | |
1835 | } | |
1836 | ||
1837 | putc (c, rl_outstream); | |
1838 | fflush (rl_outstream); | |
1839 | return n; | |
1840 | } | |
1841 | ||
1842 | int | |
1843 | rl_character_len (c, pos) | |
1844 | register int c, pos; | |
1845 | { | |
1846 | unsigned char uc; | |
1847 | ||
1848 | uc = (unsigned char)c; | |
1849 | ||
1850 | if (META_CHAR (uc)) | |
1851 | return ((_rl_output_meta_chars == 0) ? 4 : 1); | |
1852 | ||
1853 | if (uc == '\t') | |
1854 | { | |
1855 | #if defined (DISPLAY_TABS) | |
1856 | return (((pos | 7) + 1) - pos); | |
1857 | #else | |
1858 | return (2); | |
1859 | #endif /* !DISPLAY_TABS */ | |
1860 | } | |
1861 | ||
1862 | if (CTRL_CHAR (c) || c == RUBOUT) | |
1863 | return (2); | |
1864 | ||
9255ee31 | 1865 | return ((ISPRINT (uc)) ? 1 : 2); |
d60d9f65 | 1866 | } |
d60d9f65 SS |
1867 | /* How to print things in the "echo-area". The prompt is treated as a |
1868 | mini-modeline. */ | |
5bdf8622 | 1869 | static int msg_saved_prompt = 0; |
d60d9f65 SS |
1870 | |
1871 | #if defined (USE_VARARGS) | |
1872 | int | |
1873 | #if defined (PREFER_STDARG) | |
1874 | rl_message (const char *format, ...) | |
1875 | #else | |
1876 | rl_message (va_alist) | |
1877 | va_dcl | |
1878 | #endif | |
1879 | { | |
1880 | va_list args; | |
1881 | #if defined (PREFER_VARARGS) | |
1882 | char *format; | |
1883 | #endif | |
1884 | ||
1885 | #if defined (PREFER_STDARG) | |
1886 | va_start (args, format); | |
1887 | #else | |
1888 | va_start (args); | |
1889 | format = va_arg (args, char *); | |
1890 | #endif | |
1891 | ||
9255ee31 EZ |
1892 | #if defined (HAVE_VSNPRINTF) |
1893 | vsnprintf (msg_buf, sizeof (msg_buf) - 1, format, args); | |
1894 | #else | |
d60d9f65 | 1895 | vsprintf (msg_buf, format, args); |
9255ee31 EZ |
1896 | msg_buf[sizeof(msg_buf) - 1] = '\0'; /* overflow? */ |
1897 | #endif | |
d60d9f65 SS |
1898 | va_end (args); |
1899 | ||
5bdf8622 DJ |
1900 | if (saved_local_prompt == 0) |
1901 | { | |
1902 | rl_save_prompt (); | |
1903 | msg_saved_prompt = 1; | |
1904 | } | |
d60d9f65 | 1905 | rl_display_prompt = msg_buf; |
5bdf8622 DJ |
1906 | local_prompt = expand_prompt (msg_buf, &prompt_visible_length, |
1907 | &prompt_last_invisible, | |
1908 | &prompt_invis_chars_first_line, | |
1909 | &prompt_physical_chars); | |
1910 | local_prompt_prefix = (char *)NULL; | |
d60d9f65 | 1911 | (*rl_redisplay_function) (); |
5bdf8622 | 1912 | |
d60d9f65 SS |
1913 | return 0; |
1914 | } | |
1915 | #else /* !USE_VARARGS */ | |
1916 | int | |
1917 | rl_message (format, arg1, arg2) | |
1918 | char *format; | |
1919 | { | |
1920 | sprintf (msg_buf, format, arg1, arg2); | |
9255ee31 | 1921 | msg_buf[sizeof(msg_buf) - 1] = '\0'; /* overflow? */ |
5bdf8622 | 1922 | |
d60d9f65 | 1923 | rl_display_prompt = msg_buf; |
5bdf8622 DJ |
1924 | if (saved_local_prompt == 0) |
1925 | { | |
1926 | rl_save_prompt (); | |
1927 | msg_saved_prompt = 1; | |
1928 | } | |
1929 | local_prompt = expand_prompt (msg_buf, &prompt_visible_length, | |
1930 | &prompt_last_invisible, | |
1931 | &prompt_invis_chars_first_line, | |
1932 | &prompt_physical_chars); | |
1933 | local_prompt_prefix = (char *)NULL; | |
d60d9f65 | 1934 | (*rl_redisplay_function) (); |
5bdf8622 | 1935 | |
d60d9f65 SS |
1936 | return 0; |
1937 | } | |
1938 | #endif /* !USE_VARARGS */ | |
1939 | ||
1940 | /* How to clear things from the "echo-area". */ | |
1941 | int | |
1942 | rl_clear_message () | |
1943 | { | |
1944 | rl_display_prompt = rl_prompt; | |
5bdf8622 DJ |
1945 | if (msg_saved_prompt) |
1946 | { | |
1947 | rl_restore_prompt (); | |
1948 | msg_saved_prompt = 0; | |
1949 | } | |
d60d9f65 SS |
1950 | (*rl_redisplay_function) (); |
1951 | return 0; | |
1952 | } | |
1953 | ||
1954 | int | |
1955 | rl_reset_line_state () | |
1956 | { | |
1957 | rl_on_new_line (); | |
1958 | ||
1959 | rl_display_prompt = rl_prompt ? rl_prompt : ""; | |
1960 | forced_display = 1; | |
1961 | return 0; | |
1962 | } | |
1963 | ||
d60d9f65 | 1964 | void |
c862e87b | 1965 | rl_save_prompt () |
d60d9f65 SS |
1966 | { |
1967 | saved_local_prompt = local_prompt; | |
1968 | saved_local_prefix = local_prompt_prefix; | |
5bdf8622 | 1969 | saved_prefix_length = prompt_prefix_length; |
9255ee31 EZ |
1970 | saved_last_invisible = prompt_last_invisible; |
1971 | saved_visible_length = prompt_visible_length; | |
5bdf8622 DJ |
1972 | saved_invis_chars_first_line = prompt_invis_chars_first_line; |
1973 | saved_physical_chars = prompt_physical_chars; | |
d60d9f65 SS |
1974 | |
1975 | local_prompt = local_prompt_prefix = (char *)0; | |
5bdf8622 DJ |
1976 | prompt_last_invisible = prompt_visible_length = prompt_prefix_length = 0; |
1977 | prompt_invis_chars_first_line = prompt_physical_chars = 0; | |
d60d9f65 SS |
1978 | } |
1979 | ||
1980 | void | |
c862e87b | 1981 | rl_restore_prompt () |
d60d9f65 | 1982 | { |
9255ee31 EZ |
1983 | FREE (local_prompt); |
1984 | FREE (local_prompt_prefix); | |
d60d9f65 SS |
1985 | |
1986 | local_prompt = saved_local_prompt; | |
1987 | local_prompt_prefix = saved_local_prefix; | |
5bdf8622 | 1988 | prompt_prefix_length = saved_prefix_length; |
9255ee31 EZ |
1989 | prompt_last_invisible = saved_last_invisible; |
1990 | prompt_visible_length = saved_visible_length; | |
5bdf8622 DJ |
1991 | prompt_invis_chars_first_line = saved_invis_chars_first_line; |
1992 | prompt_physical_chars = saved_physical_chars; | |
1993 | ||
1994 | /* can test saved_local_prompt to see if prompt info has been saved. */ | |
1995 | saved_local_prompt = saved_local_prefix = (char *)0; | |
1996 | saved_last_invisible = saved_visible_length = saved_prefix_length = 0; | |
1997 | saved_invis_chars_first_line = saved_physical_chars = 0; | |
d60d9f65 SS |
1998 | } |
1999 | ||
2000 | char * | |
2001 | _rl_make_prompt_for_search (pchar) | |
2002 | int pchar; | |
2003 | { | |
2004 | int len; | |
5bdf8622 | 2005 | char *pmt, *p; |
d60d9f65 | 2006 | |
c862e87b | 2007 | rl_save_prompt (); |
d60d9f65 | 2008 | |
5bdf8622 DJ |
2009 | /* We've saved the prompt, and can do anything with the various prompt |
2010 | strings we need before they're restored. We want the unexpanded | |
2011 | portion of the prompt string after any final newline. */ | |
2012 | p = rl_prompt ? strrchr (rl_prompt, '\n') : 0; | |
2013 | if (p == 0) | |
d60d9f65 SS |
2014 | { |
2015 | len = (rl_prompt && *rl_prompt) ? strlen (rl_prompt) : 0; | |
9255ee31 | 2016 | pmt = (char *)xmalloc (len + 2); |
d60d9f65 | 2017 | if (len) |
c862e87b | 2018 | strcpy (pmt, rl_prompt); |
d60d9f65 SS |
2019 | pmt[len] = pchar; |
2020 | pmt[len+1] = '\0'; | |
2021 | } | |
2022 | else | |
2023 | { | |
5bdf8622 DJ |
2024 | p++; |
2025 | len = strlen (p); | |
9255ee31 | 2026 | pmt = (char *)xmalloc (len + 2); |
d60d9f65 | 2027 | if (len) |
5bdf8622 | 2028 | strcpy (pmt, p); |
d60d9f65 SS |
2029 | pmt[len] = pchar; |
2030 | pmt[len+1] = '\0'; | |
5bdf8622 DJ |
2031 | } |
2032 | ||
2033 | /* will be overwritten by expand_prompt, called from rl_message */ | |
2034 | prompt_physical_chars = saved_physical_chars + 1; | |
d60d9f65 SS |
2035 | return pmt; |
2036 | } | |
2037 | ||
2038 | /* Quick redisplay hack when erasing characters at the end of the line. */ | |
2039 | void | |
2040 | _rl_erase_at_end_of_line (l) | |
2041 | int l; | |
2042 | { | |
2043 | register int i; | |
2044 | ||
2045 | _rl_backspace (l); | |
2046 | for (i = 0; i < l; i++) | |
2047 | putc (' ', rl_outstream); | |
2048 | _rl_backspace (l); | |
2049 | for (i = 0; i < l; i++) | |
2050 | visible_line[--_rl_last_c_pos] = '\0'; | |
2051 | rl_display_fixed++; | |
2052 | } | |
2053 | ||
2054 | /* Clear to the end of the line. COUNT is the minimum | |
2055 | number of character spaces to clear, */ | |
2056 | void | |
2057 | _rl_clear_to_eol (count) | |
2058 | int count; | |
2059 | { | |
30083a32 | 2060 | #ifndef __MSDOS__ |
9255ee31 EZ |
2061 | if (_rl_term_clreol) |
2062 | tputs (_rl_term_clreol, 1, _rl_output_character_function); | |
30083a32 EZ |
2063 | else |
2064 | #endif | |
2065 | if (count) | |
d60d9f65 SS |
2066 | space_to_eol (count); |
2067 | } | |
2068 | ||
2069 | /* Clear to the end of the line using spaces. COUNT is the minimum | |
2070 | number of character spaces to clear, */ | |
2071 | static void | |
2072 | space_to_eol (count) | |
2073 | int count; | |
2074 | { | |
2075 | register int i; | |
2076 | ||
2077 | for (i = 0; i < count; i++) | |
2078 | putc (' ', rl_outstream); | |
2079 | ||
2080 | _rl_last_c_pos += count; | |
2081 | } | |
2082 | ||
2083 | void | |
2084 | _rl_clear_screen () | |
2085 | { | |
30083a32 EZ |
2086 | #if defined (__GO32__) |
2087 | ScreenClear (); /* FIXME: only works in text modes */ | |
2088 | ScreenSetCursor (0, 0); /* term_clrpag is "cl" which homes the cursor */ | |
2089 | #else | |
9255ee31 EZ |
2090 | if (_rl_term_clrpag) |
2091 | tputs (_rl_term_clrpag, 1, _rl_output_character_function); | |
d60d9f65 | 2092 | else |
9255ee31 | 2093 | rl_crlf (); |
30083a32 | 2094 | #endif |
d60d9f65 SS |
2095 | } |
2096 | ||
9255ee31 | 2097 | /* Insert COUNT characters from STRING to the output stream at column COL. */ |
d60d9f65 | 2098 | static void |
9255ee31 | 2099 | insert_some_chars (string, count, col) |
d60d9f65 | 2100 | char *string; |
9255ee31 | 2101 | int count, col; |
d60d9f65 | 2102 | { |
5bdf8622 | 2103 | #if defined (__MSDOS__) || defined (__MINGW32__) |
30083a32 | 2104 | _rl_output_some_chars (string, count); |
5bdf8622 | 2105 | #else |
9255ee31 EZ |
2106 | /* DEBUGGING */ |
2107 | if (MB_CUR_MAX == 1 || rl_byte_oriented) | |
2108 | if (count != col) | |
2109 | fprintf(stderr, "readline: debug: insert_some_chars: count (%d) != col (%d)\n", count, col); | |
2110 | ||
d60d9f65 | 2111 | /* If IC is defined, then we do not have to "enter" insert mode. */ |
9255ee31 | 2112 | if (_rl_term_IC) |
d60d9f65 SS |
2113 | { |
2114 | char *buffer; | |
9255ee31 EZ |
2115 | |
2116 | buffer = tgoto (_rl_term_IC, 0, col); | |
d60d9f65 SS |
2117 | tputs (buffer, 1, _rl_output_character_function); |
2118 | _rl_output_some_chars (string, count); | |
2119 | } | |
2120 | else | |
2121 | { | |
2122 | register int i; | |
2123 | ||
2124 | /* If we have to turn on insert-mode, then do so. */ | |
9255ee31 EZ |
2125 | if (_rl_term_im && *_rl_term_im) |
2126 | tputs (_rl_term_im, 1, _rl_output_character_function); | |
d60d9f65 SS |
2127 | |
2128 | /* If there is a special command for inserting characters, then | |
2129 | use that first to open up the space. */ | |
9255ee31 | 2130 | if (_rl_term_ic && *_rl_term_ic) |
d60d9f65 | 2131 | { |
9255ee31 EZ |
2132 | for (i = col; i--; ) |
2133 | tputs (_rl_term_ic, 1, _rl_output_character_function); | |
d60d9f65 SS |
2134 | } |
2135 | ||
2136 | /* Print the text. */ | |
2137 | _rl_output_some_chars (string, count); | |
2138 | ||
2139 | /* If there is a string to turn off insert mode, we had best use | |
2140 | it now. */ | |
9255ee31 EZ |
2141 | if (_rl_term_ei && *_rl_term_ei) |
2142 | tputs (_rl_term_ei, 1, _rl_output_character_function); | |
d60d9f65 | 2143 | } |
5bdf8622 | 2144 | #endif /* __MSDOS__ || __MINGW32__ */ |
d60d9f65 SS |
2145 | } |
2146 | ||
2147 | /* Delete COUNT characters from the display line. */ | |
2148 | static void | |
2149 | delete_chars (count) | |
2150 | int count; | |
2151 | { | |
9255ee31 | 2152 | if (count > _rl_screenwidth) /* XXX */ |
d60d9f65 SS |
2153 | return; |
2154 | ||
5bdf8622 | 2155 | #if !defined (__MSDOS__) && !defined (__MINGW32__) |
9255ee31 | 2156 | if (_rl_term_DC && *_rl_term_DC) |
d60d9f65 SS |
2157 | { |
2158 | char *buffer; | |
9255ee31 | 2159 | buffer = tgoto (_rl_term_DC, count, count); |
d60d9f65 SS |
2160 | tputs (buffer, count, _rl_output_character_function); |
2161 | } | |
2162 | else | |
2163 | { | |
9255ee31 | 2164 | if (_rl_term_dc && *_rl_term_dc) |
d60d9f65 | 2165 | while (count--) |
9255ee31 | 2166 | tputs (_rl_term_dc, 1, _rl_output_character_function); |
d60d9f65 | 2167 | } |
430b7832 | 2168 | #endif /* !__MSDOS__ && !__MINGW32__ */ |
d60d9f65 SS |
2169 | } |
2170 | ||
2171 | void | |
2172 | _rl_update_final () | |
2173 | { | |
2174 | int full_lines; | |
2175 | ||
2176 | full_lines = 0; | |
2177 | /* If the cursor is the only thing on an otherwise-blank last line, | |
2178 | compensate so we don't print an extra CRLF. */ | |
2179 | if (_rl_vis_botlin && _rl_last_c_pos == 0 && | |
2180 | visible_line[vis_lbreaks[_rl_vis_botlin]] == 0) | |
2181 | { | |
2182 | _rl_vis_botlin--; | |
2183 | full_lines = 1; | |
2184 | } | |
2185 | _rl_move_vert (_rl_vis_botlin); | |
2186 | /* If we've wrapped lines, remove the final xterm line-wrap flag. */ | |
9255ee31 | 2187 | if (full_lines && _rl_term_autowrap && (VIS_LLEN(_rl_vis_botlin) == _rl_screenwidth)) |
d60d9f65 SS |
2188 | { |
2189 | char *last_line; | |
9255ee31 | 2190 | |
1b17e766 | 2191 | last_line = &visible_line[vis_lbreaks[_rl_vis_botlin]]; |
9255ee31 | 2192 | _rl_move_cursor_relative (_rl_screenwidth - 1, last_line); |
d60d9f65 | 2193 | _rl_clear_to_eol (0); |
9255ee31 | 2194 | putc (last_line[_rl_screenwidth - 1], rl_outstream); |
d60d9f65 SS |
2195 | } |
2196 | _rl_vis_botlin = 0; | |
9255ee31 | 2197 | rl_crlf (); |
d60d9f65 SS |
2198 | fflush (rl_outstream); |
2199 | rl_display_fixed++; | |
2200 | } | |
2201 | ||
2202 | /* Move to the start of the current line. */ | |
2203 | static void | |
2204 | cr () | |
2205 | { | |
9255ee31 | 2206 | if (_rl_term_cr) |
d60d9f65 | 2207 | { |
771578d1 SS |
2208 | #if defined (__MSDOS__) |
2209 | putc ('\r', rl_outstream); | |
2210 | #else | |
9255ee31 | 2211 | tputs (_rl_term_cr, 1, _rl_output_character_function); |
1b17e766 | 2212 | #endif |
d60d9f65 SS |
2213 | _rl_last_c_pos = 0; |
2214 | } | |
2215 | } | |
2216 | ||
1b17e766 EZ |
2217 | /* Redraw the last line of a multi-line prompt that may possibly contain |
2218 | terminal escape sequences. Called with the cursor at column 0 of the | |
2219 | line to draw the prompt on. */ | |
2220 | static void | |
2221 | redraw_prompt (t) | |
2222 | char *t; | |
2223 | { | |
5bdf8622 | 2224 | char *oldp; |
1b17e766 | 2225 | |
1b17e766 | 2226 | oldp = rl_display_prompt; |
5bdf8622 | 2227 | rl_save_prompt (); |
1b17e766 EZ |
2228 | |
2229 | rl_display_prompt = t; | |
9255ee31 EZ |
2230 | local_prompt = expand_prompt (t, &prompt_visible_length, |
2231 | &prompt_last_invisible, | |
5bdf8622 DJ |
2232 | &prompt_invis_chars_first_line, |
2233 | &prompt_physical_chars); | |
1b17e766 | 2234 | local_prompt_prefix = (char *)NULL; |
5bdf8622 | 2235 | |
1b17e766 EZ |
2236 | rl_forced_update_display (); |
2237 | ||
2238 | rl_display_prompt = oldp; | |
5bdf8622 | 2239 | rl_restore_prompt(); |
1b17e766 EZ |
2240 | } |
2241 | ||
d60d9f65 SS |
2242 | /* Redisplay the current line after a SIGWINCH is received. */ |
2243 | void | |
2244 | _rl_redisplay_after_sigwinch () | |
2245 | { | |
1b17e766 | 2246 | char *t; |
d60d9f65 SS |
2247 | |
2248 | /* Clear the current line and put the cursor at column 0. Make sure | |
2249 | the right thing happens if we have wrapped to a new screen line. */ | |
9255ee31 | 2250 | if (_rl_term_cr) |
d60d9f65 | 2251 | { |
771578d1 SS |
2252 | #if defined (__MSDOS__) |
2253 | putc ('\r', rl_outstream); | |
2254 | #else | |
9255ee31 | 2255 | tputs (_rl_term_cr, 1, _rl_output_character_function); |
1b17e766 | 2256 | #endif |
d60d9f65 | 2257 | _rl_last_c_pos = 0; |
771578d1 | 2258 | #if defined (__MSDOS__) |
9255ee31 | 2259 | space_to_eol (_rl_screenwidth); |
771578d1 SS |
2260 | putc ('\r', rl_outstream); |
2261 | #else | |
9255ee31 EZ |
2262 | if (_rl_term_clreol) |
2263 | tputs (_rl_term_clreol, 1, _rl_output_character_function); | |
d60d9f65 SS |
2264 | else |
2265 | { | |
9255ee31 EZ |
2266 | space_to_eol (_rl_screenwidth); |
2267 | tputs (_rl_term_cr, 1, _rl_output_character_function); | |
d60d9f65 | 2268 | } |
771578d1 | 2269 | #endif |
d60d9f65 SS |
2270 | if (_rl_last_v_pos > 0) |
2271 | _rl_move_vert (0); | |
2272 | } | |
2273 | else | |
9255ee31 | 2274 | rl_crlf (); |
d60d9f65 SS |
2275 | |
2276 | /* Redraw only the last line of a multi-line prompt. */ | |
2277 | t = strrchr (rl_display_prompt, '\n'); | |
2278 | if (t) | |
1b17e766 | 2279 | redraw_prompt (++t); |
d60d9f65 SS |
2280 | else |
2281 | rl_forced_update_display (); | |
2282 | } | |
2283 | ||
2284 | void | |
2285 | _rl_clean_up_for_exit () | |
2286 | { | |
2287 | if (readline_echoing_p) | |
2288 | { | |
2289 | _rl_move_vert (_rl_vis_botlin); | |
2290 | _rl_vis_botlin = 0; | |
2291 | fflush (rl_outstream); | |
c862e87b | 2292 | rl_restart_output (1, 0); |
d60d9f65 SS |
2293 | } |
2294 | } | |
c862e87b JM |
2295 | |
2296 | void | |
2297 | _rl_erase_entire_line () | |
2298 | { | |
2299 | cr (); | |
2300 | _rl_clear_to_eol (0); | |
2301 | cr (); | |
2302 | fflush (rl_outstream); | |
2303 | } | |
1b17e766 EZ |
2304 | |
2305 | /* return the `current display line' of the cursor -- the number of lines to | |
2306 | move up to get to the first screen line of the current readline line. */ | |
2307 | int | |
2308 | _rl_current_display_line () | |
2309 | { | |
2310 | int ret, nleft; | |
2311 | ||
2312 | /* Find out whether or not there might be invisible characters in the | |
2313 | editing buffer. */ | |
2314 | if (rl_display_prompt == rl_prompt) | |
9255ee31 | 2315 | nleft = _rl_last_c_pos - _rl_screenwidth - rl_visible_prompt_length; |
1b17e766 | 2316 | else |
9255ee31 | 2317 | nleft = _rl_last_c_pos - _rl_screenwidth; |
1b17e766 EZ |
2318 | |
2319 | if (nleft > 0) | |
9255ee31 | 2320 | ret = 1 + nleft / _rl_screenwidth; |
1b17e766 EZ |
2321 | else |
2322 | ret = 0; | |
2323 | ||
2324 | return ret; | |
2325 | } | |
9255ee31 EZ |
2326 | |
2327 | #if defined (HANDLE_MULTIBYTE) | |
2328 | /* Calculate the number of screen columns occupied by STR from START to END. | |
2329 | In the case of multibyte characters with stateful encoding, we have to | |
2330 | scan from the beginning of the string to take the state into account. */ | |
2331 | static int | |
2332 | _rl_col_width (str, start, end) | |
288381c0 | 2333 | const char *str; |
9255ee31 EZ |
2334 | int start, end; |
2335 | { | |
2336 | wchar_t wc; | |
2337 | mbstate_t ps = {0}; | |
2338 | int tmp, point, width, max; | |
2339 | ||
2340 | if (end <= start) | |
2341 | return 0; | |
2342 | ||
2343 | point = 0; | |
2344 | max = end; | |
2345 | ||
2346 | while (point < start) | |
2347 | { | |
2348 | tmp = mbrlen (str + point, max, &ps); | |
5bdf8622 | 2349 | if (MB_INVALIDCH ((size_t)tmp)) |
9255ee31 EZ |
2350 | { |
2351 | /* In this case, the bytes are invalid or too short to compose a | |
2352 | multibyte character, so we assume that the first byte represents | |
2353 | a single character. */ | |
2354 | point++; | |
2355 | max--; | |
2356 | ||
2357 | /* Clear the state of the byte sequence, because in this case the | |
2358 | effect of mbstate is undefined. */ | |
2359 | memset (&ps, 0, sizeof (mbstate_t)); | |
2360 | } | |
5bdf8622 DJ |
2361 | else if (MB_NULLWCH (tmp)) |
2362 | break; /* Found '\0' */ | |
9255ee31 EZ |
2363 | else |
2364 | { | |
2365 | point += tmp; | |
2366 | max -= tmp; | |
2367 | } | |
2368 | } | |
2369 | ||
2370 | /* If START is not a byte that starts a character, then POINT will be | |
2371 | greater than START. In this case, assume that (POINT - START) gives | |
2372 | a byte count that is the number of columns of difference. */ | |
2373 | width = point - start; | |
2374 | ||
2375 | while (point < end) | |
2376 | { | |
2377 | tmp = mbrtowc (&wc, str + point, max, &ps); | |
5bdf8622 | 2378 | if (MB_INVALIDCH ((size_t)tmp)) |
9255ee31 EZ |
2379 | { |
2380 | /* In this case, the bytes are invalid or too short to compose a | |
2381 | multibyte character, so we assume that the first byte represents | |
2382 | a single character. */ | |
2383 | point++; | |
2384 | max--; | |
2385 | ||
2386 | /* and assume that the byte occupies a single column. */ | |
2387 | width++; | |
2388 | ||
2389 | /* Clear the state of the byte sequence, because in this case the | |
2390 | effect of mbstate is undefined. */ | |
2391 | memset (&ps, 0, sizeof (mbstate_t)); | |
2392 | } | |
5bdf8622 DJ |
2393 | else if (MB_NULLWCH (tmp)) |
2394 | break; /* Found '\0' */ | |
9255ee31 EZ |
2395 | else |
2396 | { | |
2397 | point += tmp; | |
2398 | max -= tmp; | |
2399 | tmp = wcwidth(wc); | |
2400 | width += (tmp >= 0) ? tmp : 1; | |
2401 | } | |
2402 | } | |
2403 | ||
2404 | width += point - end; | |
2405 | ||
2406 | return width; | |
2407 | } | |
2408 | #endif /* HANDLE_MULTIBYTE */ |