Home | History | Annotate | Line # | Download | only in libedit
refresh.c revision 1.16
      1  1.16  jdolecek /*	$NetBSD: refresh.c,v 1.16 2001/01/10 07:45:42 jdolecek Exp $	*/
      2   1.2     lukem 
      3   1.1       cgd /*-
      4   1.1       cgd  * Copyright (c) 1992, 1993
      5   1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Christos Zoulas of Cornell University.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19   1.1       cgd  *    must display the following acknowledgement:
     20   1.1       cgd  *	This product includes software developed by the University of
     21   1.1       cgd  *	California, Berkeley and its contributors.
     22   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23   1.1       cgd  *    may be used to endorse or promote products derived from this software
     24   1.1       cgd  *    without specific prior written permission.
     25   1.1       cgd  *
     26   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1       cgd  * SUCH DAMAGE.
     37   1.1       cgd  */
     38   1.1       cgd 
     39   1.3  christos #include <sys/cdefs.h>
     40   1.1       cgd #if !defined(lint) && !defined(SCCSID)
     41   1.2     lukem #if 0
     42   1.1       cgd static char sccsid[] = "@(#)refresh.c	8.1 (Berkeley) 6/4/93";
     43   1.2     lukem #else
     44  1.16  jdolecek __RCSID("$NetBSD: refresh.c,v 1.16 2001/01/10 07:45:42 jdolecek Exp $");
     45   1.2     lukem #endif
     46   1.1       cgd #endif /* not lint && not SCCSID */
     47   1.1       cgd 
     48   1.1       cgd /*
     49   1.1       cgd  * refresh.c: Lower level screen refreshing functions
     50   1.1       cgd  */
     51   1.1       cgd #include "sys.h"
     52   1.1       cgd #include <stdio.h>
     53   1.1       cgd #include <ctype.h>
     54   1.1       cgd #include <unistd.h>
     55   1.1       cgd #include <string.h>
     56   1.1       cgd 
     57   1.1       cgd #include "el.h"
     58   1.1       cgd 
     59  1.15     lukem private void	re_addc(EditLine *, int);
     60  1.15     lukem private void	re_update_line(EditLine *, char *, char *, int);
     61  1.15     lukem private void	re_insert (EditLine *, char *, int, int, char *, int);
     62  1.15     lukem private void	re_delete(EditLine *, char *, int, int, int);
     63  1.15     lukem private void	re_fastputc(EditLine *, int);
     64  1.15     lukem private void	re__strncopy(char *, char *, size_t);
     65  1.15     lukem private void	re__copy_and_pad(char *, char *, size_t);
     66   1.1       cgd 
     67   1.1       cgd #ifdef DEBUG_REFRESH
     68  1.15     lukem private void	re_printstr(EditLine *, char *, char *, char *);
     69  1.15     lukem #define	__F el->el_errfile
     70  1.15     lukem #define	ELRE_DEBUG(a, b, c)	do 				\
     71   1.1       cgd 				    if (a) {			\
     72   1.1       cgd 					(void) fprintf b;	\
     73   1.1       cgd 					c;			\
     74   1.1       cgd 				    }				\
     75   1.1       cgd 				while (0)
     76  1.15     lukem 
     77   1.1       cgd /* re_printstr():
     78   1.1       cgd  *	Print a string on the debugging pty
     79   1.1       cgd  */
     80   1.1       cgd private void
     81  1.15     lukem re_printstr(EditLine *el, char *str, char *f, char *t)
     82   1.1       cgd {
     83  1.15     lukem 
     84  1.15     lukem 	ELRE_DEBUG(1, (__F, "%s:\"", str),);
     85  1.15     lukem 	while (f < t)
     86  1.15     lukem 		ELRE_DEBUG(1, (__F, "%c", *f++ & 0177),);
     87  1.15     lukem 	ELRE_DEBUG(1, (__F, "\"\r\n"),);
     88   1.8    simonb }
     89   1.1       cgd #else
     90  1.15     lukem #define	ELRE_DEBUG(a, b, c)
     91   1.1       cgd #endif
     92   1.1       cgd 
     93   1.1       cgd 
     94   1.1       cgd /* re_addc():
     95   1.1       cgd  *	Draw c, expanding tabs, control chars etc.
     96   1.1       cgd  */
     97   1.1       cgd private void
     98  1.15     lukem re_addc(EditLine *el, int c)
     99   1.1       cgd {
    100  1.15     lukem 
    101  1.15     lukem 	if (isprint(c)) {
    102  1.16  jdolecek 		re_putc(el, c, 1);
    103  1.15     lukem 		return;
    104  1.15     lukem 	}
    105  1.15     lukem 	if (c == '\n') {				/* expand the newline */
    106  1.15     lukem 		int oldv = el->el_refresh.r_cursor.v;
    107  1.16  jdolecek 		re_putc(el, '\0', 0);			/* assure end of line */
    108  1.16  jdolecek 		if (oldv == el->el_refresh.r_cursor.v) { /* XXX */
    109  1.15     lukem 			el->el_refresh.r_cursor.h = 0;	/* reset cursor pos */
    110  1.15     lukem 			el->el_refresh.r_cursor.v++;
    111  1.15     lukem 		}
    112  1.15     lukem 		return;
    113  1.15     lukem 	}
    114  1.15     lukem 	if (c == '\t') {				/* expand the tab */
    115  1.15     lukem 		for (;;) {
    116  1.16  jdolecek 			re_putc(el, ' ', 1);
    117  1.15     lukem 			if ((el->el_refresh.r_cursor.h & 07) == 0)
    118  1.15     lukem 				break;			/* go until tab stop */
    119  1.15     lukem 		}
    120  1.15     lukem 	} else if (iscntrl(c)) {
    121  1.16  jdolecek 		re_putc(el, '^', 1);
    122  1.15     lukem 		if (c == '\177')
    123  1.16  jdolecek 			re_putc(el, '?', 1);
    124  1.15     lukem 		else
    125  1.15     lukem 		    /* uncontrolify it; works only for iso8859-1 like sets */
    126  1.16  jdolecek 			re_putc(el, (c | 0100), 1);
    127  1.15     lukem 	} else {
    128  1.16  jdolecek 		re_putc(el, '\\', 1);
    129  1.16  jdolecek 		re_putc(el, (int) ((((unsigned int) c >> 6) & 07) + '0'), 1);
    130  1.16  jdolecek 		re_putc(el, (int) ((((unsigned int) c >> 3) & 07) + '0'), 1);
    131  1.16  jdolecek 		re_putc(el, (c & 07) + '0', 1);
    132  1.15     lukem 	}
    133  1.15     lukem }
    134   1.1       cgd 
    135   1.1       cgd 
    136   1.1       cgd /* re_putc():
    137   1.1       cgd  *	Draw the character given
    138   1.1       cgd  */
    139   1.1       cgd protected void
    140  1.16  jdolecek re_putc(EditLine *el, int c, int shift)
    141   1.1       cgd {
    142   1.1       cgd 
    143  1.15     lukem 	ELRE_DEBUG(1, (__F, "printing %3.3o '%c'\r\n", c, c),);
    144  1.15     lukem 
    145  1.15     lukem 	el->el_vdisplay[el->el_refresh.r_cursor.v][el->el_refresh.r_cursor.h] = c;
    146  1.16  jdolecek 	if (!shift)
    147  1.16  jdolecek 		return;
    148  1.16  jdolecek 
    149  1.15     lukem 	el->el_refresh.r_cursor.h++;	/* advance to next place */
    150  1.15     lukem 	if (el->el_refresh.r_cursor.h >= el->el_term.t_size.h) {
    151  1.15     lukem 		el->el_vdisplay[el->el_refresh.r_cursor.v][el->el_term.t_size.h] = '\0';
    152  1.15     lukem 		/* assure end of line */
    153  1.15     lukem 		el->el_refresh.r_cursor.h = 0;	/* reset it. */
    154  1.16  jdolecek 
    155  1.16  jdolecek 		/*
    156  1.16  jdolecek 		 * If we would overflow (input is longer than terminal size),
    157  1.16  jdolecek 		 * emulate scroll by dropping first line and shuffling the rest.
    158  1.16  jdolecek 		 * We do this via pointer shuffling - it's safe in this case
    159  1.16  jdolecek 		 * and we avoid memcpy().
    160  1.16  jdolecek 		 */
    161  1.16  jdolecek 		if (el->el_refresh.r_cursor.v + 1 >= el->el_term.t_size.v) {
    162  1.16  jdolecek 			int i, lins = el->el_term.t_size.v;
    163  1.16  jdolecek 			char *firstline = el->el_vdisplay[0];
    164  1.16  jdolecek 
    165  1.16  jdolecek 			for(i=1; i < lins; i++)
    166  1.16  jdolecek 				el->el_vdisplay[i-1] = el->el_vdisplay[i];
    167  1.16  jdolecek 
    168  1.16  jdolecek 			firstline[0] = '\0';		/* empty the string */
    169  1.16  jdolecek 			el->el_vdisplay[i-1] = firstline;
    170  1.16  jdolecek 		} else
    171  1.16  jdolecek 			el->el_refresh.r_cursor.v++;
    172  1.16  jdolecek 
    173  1.15     lukem 		ELRE_DEBUG(el->el_refresh.r_cursor.v >= el->el_term.t_size.v,
    174  1.15     lukem 		    (__F, "\r\nre_putc: overflow! r_cursor.v == %d > %d\r\n",
    175  1.15     lukem 		    el->el_refresh.r_cursor.v, el->el_term.t_size.v),
    176  1.15     lukem 		    abort());
    177  1.15     lukem 	}
    178  1.15     lukem }
    179  1.15     lukem 
    180   1.1       cgd 
    181   1.1       cgd /* re_refresh():
    182   1.1       cgd  *	draws the new virtual screen image from the current input
    183   1.1       cgd  *  	line, then goes line-by-line changing the real image to the new
    184   1.1       cgd  *	virtual image. The routine to re-draw a line can be replaced
    185   1.1       cgd  *	easily in hopes of a smarter one being placed there.
    186   1.1       cgd  */
    187   1.1       cgd protected void
    188  1.15     lukem re_refresh(EditLine *el)
    189   1.1       cgd {
    190  1.15     lukem 	int i, rhdiff;
    191  1.16  jdolecek 	char *cp, *st;
    192  1.15     lukem 	coord_t cur;
    193  1.16  jdolecek #ifdef notyet
    194  1.16  jdolecek 	size_t termsz;
    195  1.16  jdolecek #endif
    196  1.15     lukem 
    197  1.15     lukem 	ELRE_DEBUG(1, (__F, "el->el_line.buffer = :%s:\r\n",
    198  1.15     lukem 	    el->el_line.buffer),);
    199  1.15     lukem 
    200  1.15     lukem 	/* reset the Drawing cursor */
    201  1.15     lukem 	el->el_refresh.r_cursor.h = 0;
    202  1.15     lukem 	el->el_refresh.r_cursor.v = 0;
    203  1.15     lukem 
    204  1.15     lukem 	/* temporarily draw rprompt to calculate its size */
    205  1.15     lukem 	prompt_print(el, EL_RPROMPT);
    206  1.15     lukem 
    207  1.15     lukem 	/* reset the Drawing cursor */
    208  1.15     lukem 	el->el_refresh.r_cursor.h = 0;
    209  1.15     lukem 	el->el_refresh.r_cursor.v = 0;
    210  1.15     lukem 
    211  1.15     lukem 	cur.h = -1;		/* set flag in case I'm not set */
    212  1.15     lukem 	cur.v = 0;
    213  1.15     lukem 
    214  1.15     lukem 	prompt_print(el, EL_PROMPT);
    215  1.15     lukem 
    216  1.15     lukem 	/* draw the current input buffer */
    217  1.16  jdolecek #if notyet
    218  1.16  jdolecek 	termsz = el->el_term.t_size.h * el->el_term.t_size.v;
    219  1.16  jdolecek 	if (el->el_line.lastchar - el->el_line.buffer > termsz) {
    220  1.16  jdolecek 		/*
    221  1.16  jdolecek 		 * If line is longer than terminal, process only part
    222  1.16  jdolecek 		 * of line which would influence display.
    223  1.16  jdolecek 		 */
    224  1.16  jdolecek 		size_t rem = (el->el_line.lastchar-el->el_line.buffer)%termsz;
    225  1.16  jdolecek 
    226  1.16  jdolecek 		st = el->el_line.lastchar - rem
    227  1.16  jdolecek 			- (termsz - (((rem / el->el_term.t_size.v) - 1)
    228  1.16  jdolecek 					* el->el_term.t_size.v));
    229  1.16  jdolecek 	} else
    230  1.16  jdolecek #endif
    231  1.16  jdolecek 		st = el->el_line.buffer;
    232  1.16  jdolecek 
    233  1.16  jdolecek 	for (cp = st; cp < el->el_line.lastchar; cp++) {
    234  1.15     lukem 		if (cp == el->el_line.cursor) {
    235  1.16  jdolecek 			/* save for later */
    236  1.15     lukem 			cur.h = el->el_refresh.r_cursor.h;
    237  1.15     lukem 			cur.v = el->el_refresh.r_cursor.v;
    238  1.15     lukem 		}
    239  1.15     lukem 		re_addc(el, (unsigned char) *cp);
    240  1.15     lukem 	}
    241  1.15     lukem 
    242  1.15     lukem 	if (cur.h == -1) {	/* if I haven't been set yet, I'm at the end */
    243  1.15     lukem 		cur.h = el->el_refresh.r_cursor.h;
    244  1.15     lukem 		cur.v = el->el_refresh.r_cursor.v;
    245  1.15     lukem 	}
    246  1.15     lukem 	rhdiff = el->el_term.t_size.h - el->el_refresh.r_cursor.h -
    247  1.15     lukem 	    el->el_rprompt.p_pos.h;
    248  1.15     lukem 	if (el->el_rprompt.p_pos.h && !el->el_rprompt.p_pos.v &&
    249  1.15     lukem 	    !el->el_refresh.r_cursor.v && rhdiff > 1) {
    250  1.15     lukem 		/*
    251  1.15     lukem 		 * have a right-hand side prompt that will fit
    252  1.15     lukem 		 * on the end of the first line with at least
    253  1.15     lukem 		 * one character gap to the input buffer.
    254  1.15     lukem 		 */
    255  1.15     lukem 		while (--rhdiff > 0)	/* pad out with spaces */
    256  1.16  jdolecek 			re_putc(el, ' ', 1);
    257  1.15     lukem 		prompt_print(el, EL_RPROMPT);
    258  1.15     lukem 	} else {
    259  1.15     lukem 		el->el_rprompt.p_pos.h = 0;	/* flag "not using rprompt" */
    260  1.15     lukem 		el->el_rprompt.p_pos.v = 0;
    261  1.15     lukem 	}
    262  1.15     lukem 
    263  1.16  jdolecek 	re_putc(el, '\0', 0);	/* make line ended with NUL, no cursor shift */
    264  1.16  jdolecek 
    265  1.15     lukem 	el->el_refresh.r_newcv = el->el_refresh.r_cursor.v;
    266  1.15     lukem 
    267  1.15     lukem 	ELRE_DEBUG(1, (__F,
    268  1.15     lukem 		"term.h=%d vcur.h=%d vcur.v=%d vdisplay[0]=\r\n:%80.80s:\r\n",
    269  1.15     lukem 		el->el_term.t_size.h, el->el_refresh.r_cursor.h,
    270  1.15     lukem 		el->el_refresh.r_cursor.v, el->el_vdisplay[0]),);
    271  1.15     lukem 
    272  1.15     lukem 	ELRE_DEBUG(1, (__F, "updating %d lines.\r\n", el->el_refresh.r_newcv),);
    273  1.15     lukem 	for (i = 0; i <= el->el_refresh.r_newcv; i++) {
    274  1.15     lukem 		/* NOTE THAT re_update_line MAY CHANGE el_display[i] */
    275  1.15     lukem 		re_update_line(el, el->el_display[i], el->el_vdisplay[i], i);
    276  1.15     lukem 
    277  1.15     lukem 		/*
    278  1.15     lukem 		 * Copy the new line to be the current one, and pad out with
    279  1.15     lukem 		 * spaces to the full width of the terminal so that if we try
    280  1.15     lukem 		 * moving the cursor by writing the character that is at the
    281  1.15     lukem 		 * end of the screen line, it won't be a NUL or some old
    282  1.15     lukem 		 * leftover stuff.
    283  1.15     lukem 		 */
    284  1.15     lukem 		re__copy_and_pad(el->el_display[i], el->el_vdisplay[i],
    285  1.15     lukem 		    (size_t) el->el_term.t_size.h);
    286  1.15     lukem 	}
    287  1.15     lukem 	ELRE_DEBUG(1, (__F,
    288  1.15     lukem 	"\r\nel->el_refresh.r_cursor.v=%d,el->el_refresh.r_oldcv=%d i=%d\r\n",
    289  1.15     lukem 	    el->el_refresh.r_cursor.v, el->el_refresh.r_oldcv, i),);
    290  1.15     lukem 
    291  1.15     lukem 	if (el->el_refresh.r_oldcv > el->el_refresh.r_newcv)
    292  1.15     lukem 		for (; i <= el->el_refresh.r_oldcv; i++) {
    293  1.15     lukem 			term_move_to_line(el, i);
    294  1.15     lukem 			term_move_to_char(el, 0);
    295  1.15     lukem 			term_clear_EOL(el, (int) strlen(el->el_display[i]));
    296   1.1       cgd #ifdef DEBUG_REFRESH
    297  1.15     lukem 			term_overwrite(el, "C\b", 2);
    298   1.1       cgd #endif /* DEBUG_REFRESH */
    299  1.16  jdolecek 			el->el_display[i][0] = '\0';
    300  1.15     lukem 		}
    301   1.8    simonb 
    302  1.15     lukem 	el->el_refresh.r_oldcv = el->el_refresh.r_newcv; /* set for next time */
    303  1.15     lukem 	ELRE_DEBUG(1, (__F,
    304  1.15     lukem 	    "\r\ncursor.h = %d, cursor.v = %d, cur.h = %d, cur.v = %d\r\n",
    305  1.15     lukem 	    el->el_refresh.r_cursor.h, el->el_refresh.r_cursor.v,
    306  1.15     lukem 	    cur.h, cur.v),);
    307  1.15     lukem 	term_move_to_line(el, cur.v);	/* go to where the cursor is */
    308  1.15     lukem 	term_move_to_char(el, cur.h);
    309  1.15     lukem }
    310   1.1       cgd 
    311   1.1       cgd 
    312   1.1       cgd /* re_goto_bottom():
    313   1.8    simonb  *	 used to go to last used screen line
    314   1.1       cgd  */
    315   1.1       cgd protected void
    316  1.15     lukem re_goto_bottom(EditLine *el)
    317   1.1       cgd {
    318  1.15     lukem 
    319  1.15     lukem 	term_move_to_line(el, el->el_refresh.r_oldcv);
    320  1.15     lukem 	term__putc('\r');
    321  1.15     lukem 	term__putc('\n');
    322  1.15     lukem 	re_clear_display(el);
    323  1.15     lukem 	term__flush();
    324  1.15     lukem }
    325   1.1       cgd 
    326   1.1       cgd 
    327   1.1       cgd /* re_insert():
    328   1.1       cgd  *	insert num characters of s into d (in front of the character)
    329   1.8    simonb  *	at dat, maximum length of d is dlen
    330   1.1       cgd  */
    331   1.1       cgd private void
    332   1.1       cgd /*ARGSUSED*/
    333  1.15     lukem re_insert(EditLine *el, char *d, int dat, int dlen, char *s, int num)
    334   1.1       cgd {
    335  1.15     lukem 	char *a, *b;
    336   1.1       cgd 
    337  1.15     lukem 	if (num <= 0)
    338  1.15     lukem 		return;
    339  1.15     lukem 	if (num > dlen - dat)
    340  1.15     lukem 		num = dlen - dat;
    341   1.1       cgd 
    342  1.15     lukem 	ELRE_DEBUG(1,
    343  1.15     lukem 	    (__F, "re_insert() starting: %d at %d max %d, d == \"%s\"\n",
    344   1.1       cgd 	    num, dat, dlen, d),);
    345  1.15     lukem 	ELRE_DEBUG(1, (__F, "s == \"%s\"n", s),);
    346   1.1       cgd 
    347  1.15     lukem 	/* open up the space for num chars */
    348  1.15     lukem 	if (num > 0) {
    349  1.15     lukem 		b = d + dlen - 1;
    350  1.15     lukem 		a = b - num;
    351  1.15     lukem 		while (a >= &d[dat])
    352  1.15     lukem 			*b-- = *a--;
    353  1.15     lukem 		d[dlen] = '\0';	/* just in case */
    354  1.15     lukem 	}
    355  1.15     lukem 	ELRE_DEBUG(1, (__F,
    356   1.1       cgd 		"re_insert() after insert: %d at %d max %d, d == \"%s\"\n",
    357   1.1       cgd 		num, dat, dlen, d),);
    358  1.15     lukem 	ELRE_DEBUG(1, (__F, "s == \"%s\"n", s),);
    359   1.1       cgd 
    360  1.15     lukem 	/* copy the characters */
    361  1.15     lukem 	for (a = d + dat; (a < d + dlen) && (num > 0); num--)
    362  1.15     lukem 		*a++ = *s++;
    363  1.15     lukem 
    364  1.15     lukem 	ELRE_DEBUG(1,
    365  1.15     lukem 	    (__F, "re_insert() after copy: %d at %d max %d, %s == \"%s\"\n",
    366  1.15     lukem 	    num, dat, dlen, d, s),);
    367  1.15     lukem 	ELRE_DEBUG(1, (__F, "s == \"%s\"n", s),);
    368  1.15     lukem }
    369   1.1       cgd 
    370   1.1       cgd 
    371   1.1       cgd /* re_delete():
    372   1.8    simonb  *	delete num characters d at dat, maximum length of d is dlen
    373   1.1       cgd  */
    374   1.1       cgd private void
    375   1.1       cgd /*ARGSUSED*/
    376  1.15     lukem re_delete(EditLine *el, char *d, int dat, int dlen, int num)
    377   1.1       cgd {
    378  1.15     lukem 	char *a, *b;
    379   1.1       cgd 
    380  1.15     lukem 	if (num <= 0)
    381  1.15     lukem 		return;
    382  1.15     lukem 	if (dat + num >= dlen) {
    383  1.15     lukem 		d[dat] = '\0';
    384  1.15     lukem 		return;
    385  1.15     lukem 	}
    386  1.15     lukem 	ELRE_DEBUG(1,
    387  1.15     lukem 	    (__F, "re_delete() starting: %d at %d max %d, d == \"%s\"\n",
    388   1.1       cgd 	    num, dat, dlen, d),);
    389   1.1       cgd 
    390  1.15     lukem 	/* open up the space for num chars */
    391  1.15     lukem 	if (num > 0) {
    392  1.15     lukem 		b = d + dat;
    393  1.15     lukem 		a = b + num;
    394  1.15     lukem 		while (a < &d[dlen])
    395  1.15     lukem 			*b++ = *a++;
    396  1.15     lukem 		d[dlen] = '\0';	/* just in case */
    397  1.15     lukem 	}
    398  1.15     lukem 	ELRE_DEBUG(1,
    399  1.15     lukem 	    (__F, "re_delete() after delete: %d at %d max %d, d == \"%s\"\n",
    400   1.1       cgd 	    num, dat, dlen, d),);
    401  1.15     lukem }
    402   1.1       cgd 
    403   1.1       cgd 
    404   1.1       cgd /* re__strncopy():
    405   1.1       cgd  *	Like strncpy without padding.
    406   1.1       cgd  */
    407   1.1       cgd private void
    408  1.15     lukem re__strncopy(char *a, char *b, size_t n)
    409   1.1       cgd {
    410  1.15     lukem 
    411  1.15     lukem 	while (n-- && *b)
    412  1.15     lukem 		*a++ = *b++;
    413  1.15     lukem }
    414   1.1       cgd 
    415   1.1       cgd 
    416  1.15     lukem /*****************************************************************
    417   1.1       cgd     re_update_line() is based on finding the middle difference of each line
    418   1.1       cgd     on the screen; vis:
    419   1.1       cgd 
    420   1.1       cgd 			     /old first difference
    421   1.1       cgd 	/beginning of line   |              /old last same       /old EOL
    422   1.1       cgd 	v		     v              v                    v
    423   1.1       cgd old:	eddie> Oh, my little gruntle-buggy is to me, as lurgid as
    424   1.1       cgd new:	eddie> Oh, my little buggy says to me, as lurgid as
    425   1.1       cgd 	^		     ^        ^			   ^
    426   1.1       cgd 	\beginning of line   |        \new last same	   \new end of line
    427   1.1       cgd 			     \new first difference
    428   1.1       cgd 
    429   1.1       cgd     all are character pointers for the sake of speed.  Special cases for
    430   1.1       cgd     no differences, as well as for end of line additions must be handled.
    431   1.1       cgd **************************************************************** */
    432   1.1       cgd 
    433   1.1       cgd /* Minimum at which doing an insert it "worth it".  This should be about
    434   1.1       cgd  * half the "cost" of going into insert mode, inserting a character, and
    435   1.1       cgd  * going back out.  This should really be calculated from the termcap
    436   1.1       cgd  * data...  For the moment, a good number for ANSI terminals.
    437   1.1       cgd  */
    438  1.15     lukem #define	MIN_END_KEEP	4
    439   1.1       cgd 
    440   1.1       cgd private void
    441  1.15     lukem re_update_line(EditLine *el, char *old, char *new, int i)
    442   1.1       cgd {
    443  1.15     lukem 	char *o, *n, *p, c;
    444  1.15     lukem 	char *ofd, *ols, *oe, *nfd, *nls, *ne;
    445  1.15     lukem 	char *osb, *ose, *nsb, *nse;
    446  1.15     lukem 	int fx, sx;
    447  1.15     lukem 
    448  1.15     lukem 	/*
    449  1.15     lukem          * find first diff
    450  1.15     lukem          */
    451  1.15     lukem 	for (o = old, n = new; *o && (*o == *n); o++, n++)
    452  1.15     lukem 		continue;
    453  1.15     lukem 	ofd = o;
    454  1.15     lukem 	nfd = n;
    455  1.15     lukem 
    456  1.15     lukem 	/*
    457  1.15     lukem          * Find the end of both old and new
    458  1.15     lukem          */
    459  1.15     lukem 	while (*o)
    460  1.15     lukem 		o++;
    461  1.15     lukem 	/*
    462  1.15     lukem          * Remove any trailing blanks off of the end, being careful not to
    463  1.15     lukem          * back up past the beginning.
    464  1.15     lukem          */
    465  1.15     lukem 	while (ofd < o) {
    466  1.15     lukem 		if (o[-1] != ' ')
    467  1.15     lukem 			break;
    468  1.15     lukem 		o--;
    469  1.15     lukem 	}
    470  1.15     lukem 	oe = o;
    471  1.15     lukem 	*oe = '\0';
    472  1.15     lukem 
    473  1.15     lukem 	while (*n)
    474  1.15     lukem 		n++;
    475  1.15     lukem 
    476  1.15     lukem 	/* remove blanks from end of new */
    477  1.15     lukem 	while (nfd < n) {
    478  1.15     lukem 		if (n[-1] != ' ')
    479  1.15     lukem 			break;
    480  1.15     lukem 		n--;
    481  1.15     lukem 	}
    482  1.15     lukem 	ne = n;
    483  1.15     lukem 	*ne = '\0';
    484  1.15     lukem 
    485  1.15     lukem 	/*
    486  1.15     lukem          * if no diff, continue to next line of redraw
    487  1.15     lukem          */
    488  1.15     lukem 	if (*ofd == '\0' && *nfd == '\0') {
    489  1.15     lukem 		ELRE_DEBUG(1, (__F, "no difference.\r\n"),);
    490  1.15     lukem 		return;
    491  1.15     lukem 	}
    492  1.15     lukem 	/*
    493  1.15     lukem          * find last same pointer
    494  1.15     lukem          */
    495  1.15     lukem 	while ((o > ofd) && (n > nfd) && (*--o == *--n))
    496  1.15     lukem 		continue;
    497  1.15     lukem 	ols = ++o;
    498  1.15     lukem 	nls = ++n;
    499  1.15     lukem 
    500  1.15     lukem 	/*
    501  1.15     lukem          * find same begining and same end
    502  1.15     lukem          */
    503   1.1       cgd 	osb = ols;
    504  1.15     lukem 	nsb = nls;
    505   1.1       cgd 	ose = ols;
    506   1.1       cgd 	nse = nls;
    507   1.1       cgd 
    508  1.15     lukem 	/*
    509  1.15     lukem          * case 1: insert: scan from nfd to nls looking for *ofd
    510  1.15     lukem          */
    511  1.15     lukem 	if (*ofd) {
    512  1.15     lukem 		for (c = *ofd, n = nfd; n < nls; n++) {
    513  1.15     lukem 			if (c == *n) {
    514  1.15     lukem 				for (o = ofd, p = n;
    515  1.15     lukem 				    p < nls && o < ols && *o == *p;
    516  1.15     lukem 				    o++, p++)
    517  1.15     lukem 					continue;
    518  1.15     lukem 				/*
    519  1.15     lukem 				 * if the new match is longer and it's worth
    520  1.15     lukem 				 * keeping, then we take it
    521  1.15     lukem 				 */
    522  1.15     lukem 				if (((nse - nsb) < (p - n)) &&
    523  1.15     lukem 				    (2 * (p - n) > n - nfd)) {
    524  1.15     lukem 					nsb = n;
    525  1.15     lukem 					nse = p;
    526  1.15     lukem 					osb = ofd;
    527  1.15     lukem 					ose = o;
    528  1.15     lukem 				}
    529  1.15     lukem 			}
    530  1.15     lukem 		}
    531  1.15     lukem 	}
    532  1.15     lukem 	/*
    533  1.15     lukem          * case 2: delete: scan from ofd to ols looking for *nfd
    534  1.15     lukem          */
    535  1.15     lukem 	if (*nfd) {
    536  1.15     lukem 		for (c = *nfd, o = ofd; o < ols; o++) {
    537  1.15     lukem 			if (c == *o) {
    538  1.15     lukem 				for (n = nfd, p = o;
    539  1.15     lukem 				    p < ols && n < nls && *p == *n;
    540  1.15     lukem 				    p++, n++)
    541  1.15     lukem 					continue;
    542  1.15     lukem 				/*
    543  1.15     lukem 				 * if the new match is longer and it's worth
    544  1.15     lukem 				 * keeping, then we take it
    545  1.15     lukem 				 */
    546  1.15     lukem 				if (((ose - osb) < (p - o)) &&
    547  1.15     lukem 				    (2 * (p - o) > o - ofd)) {
    548  1.15     lukem 					nsb = nfd;
    549  1.15     lukem 					nse = n;
    550  1.15     lukem 					osb = o;
    551  1.15     lukem 					ose = p;
    552  1.15     lukem 				}
    553  1.15     lukem 			}
    554  1.15     lukem 		}
    555  1.15     lukem 	}
    556  1.15     lukem 	/*
    557  1.15     lukem          * Pragmatics I: If old trailing whitespace or not enough characters to
    558  1.15     lukem          * save to be worth it, then don't save the last same info.
    559  1.15     lukem          */
    560  1.15     lukem 	if ((oe - ols) < MIN_END_KEEP) {
    561  1.15     lukem 		ols = oe;
    562  1.15     lukem 		nls = ne;
    563  1.15     lukem 	}
    564  1.15     lukem 	/*
    565  1.15     lukem          * Pragmatics II: if the terminal isn't smart enough, make the data
    566  1.15     lukem          * dumber so the smart update doesn't try anything fancy
    567  1.15     lukem          */
    568  1.15     lukem 
    569  1.15     lukem 	/*
    570  1.15     lukem          * fx is the number of characters we need to insert/delete: in the
    571  1.15     lukem          * beginning to bring the two same begins together
    572  1.15     lukem          */
    573  1.15     lukem 	fx = (nsb - nfd) - (osb - ofd);
    574  1.15     lukem 	/*
    575  1.15     lukem          * sx is the number of characters we need to insert/delete: in the
    576  1.15     lukem          * end to bring the two same last parts together
    577  1.15     lukem          */
    578  1.15     lukem 	sx = (nls - nse) - (ols - ose);
    579  1.15     lukem 
    580  1.15     lukem 	if (!EL_CAN_INSERT) {
    581  1.15     lukem 		if (fx > 0) {
    582  1.15     lukem 			osb = ols;
    583  1.15     lukem 			ose = ols;
    584  1.15     lukem 			nsb = nls;
    585  1.15     lukem 			nse = nls;
    586  1.15     lukem 		}
    587  1.15     lukem 		if (sx > 0) {
    588  1.15     lukem 			ols = oe;
    589  1.15     lukem 			nls = ne;
    590  1.15     lukem 		}
    591  1.15     lukem 		if ((ols - ofd) < (nls - nfd)) {
    592  1.15     lukem 			ols = oe;
    593  1.15     lukem 			nls = ne;
    594  1.15     lukem 		}
    595  1.15     lukem 	}
    596  1.15     lukem 	if (!EL_CAN_DELETE) {
    597  1.15     lukem 		if (fx < 0) {
    598  1.15     lukem 			osb = ols;
    599  1.15     lukem 			ose = ols;
    600  1.15     lukem 			nsb = nls;
    601  1.15     lukem 			nse = nls;
    602  1.15     lukem 		}
    603  1.15     lukem 		if (sx < 0) {
    604  1.15     lukem 			ols = oe;
    605  1.15     lukem 			nls = ne;
    606  1.15     lukem 		}
    607  1.15     lukem 		if ((ols - ofd) > (nls - nfd)) {
    608  1.15     lukem 			ols = oe;
    609  1.15     lukem 			nls = ne;
    610  1.15     lukem 		}
    611  1.15     lukem 	}
    612  1.15     lukem 	/*
    613  1.15     lukem          * Pragmatics III: make sure the middle shifted pointers are correct if
    614  1.15     lukem          * they don't point to anything (we may have moved ols or nls).
    615  1.15     lukem          */
    616  1.15     lukem 	/* if the change isn't worth it, don't bother */
    617  1.15     lukem 	/* was: if (osb == ose) */
    618  1.15     lukem 	if ((ose - osb) < MIN_END_KEEP) {
    619  1.15     lukem 		osb = ols;
    620  1.15     lukem 		ose = ols;
    621  1.15     lukem 		nsb = nls;
    622  1.15     lukem 		nse = nls;
    623  1.15     lukem 	}
    624  1.15     lukem 	/*
    625  1.15     lukem          * Now that we are done with pragmatics we recompute fx, sx
    626  1.15     lukem          */
    627  1.15     lukem 	fx = (nsb - nfd) - (osb - ofd);
    628  1.15     lukem 	sx = (nls - nse) - (ols - ose);
    629  1.15     lukem 
    630  1.15     lukem 	ELRE_DEBUG(1, (__F, "\n"),);
    631  1.15     lukem 	ELRE_DEBUG(1, (__F, "ofd %d, osb %d, ose %d, ols %d, oe %d\n",
    632  1.15     lukem 		ofd - old, osb - old, ose - old, ols - old, oe - old),);
    633  1.15     lukem 	ELRE_DEBUG(1, (__F, "nfd %d, nsb %d, nse %d, nls %d, ne %d\n",
    634  1.15     lukem 		nfd - new, nsb - new, nse - new, nls - new, ne - new),);
    635  1.15     lukem 	ELRE_DEBUG(1, (__F,
    636   1.1       cgd 		"xxx-xxx:\"00000000001111111111222222222233333333334\"\r\n"),);
    637  1.15     lukem 	ELRE_DEBUG(1, (__F,
    638   1.1       cgd 		"xxx-xxx:\"01234567890123456789012345678901234567890\"\r\n"),);
    639   1.1       cgd #ifdef DEBUG_REFRESH
    640  1.15     lukem 	re_printstr(el, "old- oe", old, oe);
    641  1.15     lukem 	re_printstr(el, "new- ne", new, ne);
    642  1.15     lukem 	re_printstr(el, "old-ofd", old, ofd);
    643  1.15     lukem 	re_printstr(el, "new-nfd", new, nfd);
    644  1.15     lukem 	re_printstr(el, "ofd-osb", ofd, osb);
    645  1.15     lukem 	re_printstr(el, "nfd-nsb", nfd, nsb);
    646  1.15     lukem 	re_printstr(el, "osb-ose", osb, ose);
    647  1.15     lukem 	re_printstr(el, "nsb-nse", nsb, nse);
    648  1.15     lukem 	re_printstr(el, "ose-ols", ose, ols);
    649  1.15     lukem 	re_printstr(el, "nse-nls", nse, nls);
    650  1.15     lukem 	re_printstr(el, "ols- oe", ols, oe);
    651  1.15     lukem 	re_printstr(el, "nls- ne", nls, ne);
    652   1.1       cgd #endif /* DEBUG_REFRESH */
    653   1.1       cgd 
    654  1.15     lukem 	/*
    655  1.15     lukem          * el_cursor.v to this line i MUST be in this routine so that if we
    656  1.15     lukem          * don't have to change the line, we don't move to it. el_cursor.h to
    657  1.15     lukem          * first diff char
    658  1.15     lukem          */
    659  1.15     lukem 	term_move_to_line(el, i);
    660  1.15     lukem 
    661  1.15     lukem 	/*
    662  1.15     lukem          * at this point we have something like this:
    663  1.15     lukem          *
    664  1.15     lukem          * /old                  /ofd    /osb               /ose    /ols     /oe
    665  1.15     lukem          * v.....................v       v..................v       v........v
    666  1.15     lukem          * eddie> Oh, my fredded gruntle-buggy is to me, as foo var lurgid as
    667  1.15     lukem          * eddie> Oh, my fredded quiux buggy is to me, as gruntle-lurgid as
    668  1.15     lukem          * ^.....................^     ^..................^       ^........^
    669  1.15     lukem          * \new                  \nfd  \nsb               \nse     \nls    \ne
    670  1.15     lukem          *
    671  1.15     lukem          * fx is the difference in length between the chars between nfd and
    672  1.15     lukem          * nsb, and the chars between ofd and osb, and is thus the number of
    673  1.15     lukem          * characters to delete if < 0 (new is shorter than old, as above),
    674  1.15     lukem          * or insert (new is longer than short).
    675  1.15     lukem          *
    676  1.15     lukem          * sx is the same for the second differences.
    677  1.15     lukem          */
    678  1.15     lukem 
    679  1.15     lukem 	/*
    680  1.15     lukem          * if we have a net insert on the first difference, AND inserting the
    681  1.15     lukem          * net amount ((nsb-nfd) - (osb-ofd)) won't push the last useful
    682  1.15     lukem          * character (which is ne if nls != ne, otherwise is nse) off the edge
    683  1.15     lukem 	 * of the screen (el->el_term.t_size.h) else we do the deletes first
    684  1.15     lukem 	 * so that we keep everything we need to.
    685  1.15     lukem          */
    686  1.15     lukem 
    687  1.15     lukem 	/*
    688  1.15     lukem          * if the last same is the same like the end, there is no last same
    689  1.15     lukem          * part, otherwise we want to keep the last same part set p to the
    690  1.15     lukem          * last useful old character
    691  1.15     lukem          */
    692  1.15     lukem 	p = (ols != oe) ? oe : ose;
    693  1.15     lukem 
    694  1.15     lukem 	/*
    695  1.15     lukem          * if (There is a diffence in the beginning) && (we need to insert
    696  1.15     lukem          *   characters) && (the number of characters to insert is less than
    697  1.15     lukem          *   the term width)
    698  1.15     lukem 	 *	We need to do an insert!
    699  1.15     lukem 	 * else if (we need to delete characters)
    700  1.15     lukem 	 *	We need to delete characters!
    701  1.15     lukem 	 * else
    702  1.15     lukem 	 *	No insert or delete
    703  1.15     lukem          */
    704  1.15     lukem 	if ((nsb != nfd) && fx > 0 &&
    705  1.15     lukem 	    ((p - old) + fx <= el->el_term.t_size.h)) {
    706  1.15     lukem 		ELRE_DEBUG(1,
    707  1.15     lukem 		    (__F, "first diff insert at %d...\r\n", nfd - new),);
    708   1.1       cgd 		/*
    709  1.15     lukem 		 * Move to the first char to insert, where the first diff is.
    710  1.15     lukem 		 */
    711  1.15     lukem 		term_move_to_char(el, nfd - new);
    712  1.15     lukem 		/*
    713  1.15     lukem 		 * Check if we have stuff to keep at end
    714  1.15     lukem 		 */
    715  1.15     lukem 		if (nsb != ne) {
    716  1.15     lukem 			ELRE_DEBUG(1, (__F, "with stuff to keep at end\r\n"),);
    717  1.15     lukem 			/*
    718  1.15     lukem 		         * insert fx chars of new starting at nfd
    719  1.15     lukem 		         */
    720  1.15     lukem 			if (fx > 0) {
    721  1.15     lukem 				ELRE_DEBUG(!EL_CAN_INSERT, (__F,
    722  1.15     lukem 				"ERROR: cannot insert in early first diff\n"),);
    723  1.15     lukem 				term_insertwrite(el, nfd, fx);
    724  1.15     lukem 				re_insert(el, old, ofd - old,
    725  1.15     lukem 				    el->el_term.t_size.h, nfd, fx);
    726  1.15     lukem 			}
    727  1.15     lukem 			/*
    728  1.15     lukem 		         * write (nsb-nfd) - fx chars of new starting at
    729  1.15     lukem 		         * (nfd + fx)
    730  1.15     lukem 			 */
    731  1.15     lukem 			term_overwrite(el, nfd + fx, (nsb - nfd) - fx);
    732  1.15     lukem 			re__strncopy(ofd + fx, nfd + fx,
    733  1.15     lukem 			    (size_t) ((nsb - nfd) - fx));
    734  1.15     lukem 		} else {
    735  1.15     lukem 			ELRE_DEBUG(1, (__F, "without anything to save\r\n"),);
    736  1.15     lukem 			term_overwrite(el, nfd, (nsb - nfd));
    737  1.15     lukem 			re__strncopy(ofd, nfd, (size_t) (nsb - nfd));
    738  1.15     lukem 			/*
    739  1.15     lukem 		         * Done
    740  1.15     lukem 		         */
    741  1.15     lukem 			return;
    742  1.15     lukem 		}
    743  1.15     lukem 	} else if (fx < 0) {
    744  1.15     lukem 		ELRE_DEBUG(1,
    745  1.15     lukem 		    (__F, "first diff delete at %d...\r\n", ofd - old),);
    746  1.15     lukem 		/*
    747  1.15     lukem 		 * move to the first char to delete where the first diff is
    748  1.15     lukem 		 */
    749  1.15     lukem 		term_move_to_char(el, ofd - old);
    750  1.15     lukem 		/*
    751  1.15     lukem 		 * Check if we have stuff to save
    752  1.15     lukem 		 */
    753  1.15     lukem 		if (osb != oe) {
    754  1.15     lukem 			ELRE_DEBUG(1, (__F, "with stuff to save at end\r\n"),);
    755  1.15     lukem 			/*
    756  1.15     lukem 		         * fx is less than zero *always* here but we check
    757  1.15     lukem 		         * for code symmetry
    758  1.15     lukem 		         */
    759  1.15     lukem 			if (fx < 0) {
    760  1.15     lukem 				ELRE_DEBUG(!EL_CAN_DELETE, (__F,
    761  1.15     lukem 				    "ERROR: cannot delete in first diff\n"),);
    762  1.15     lukem 				term_deletechars(el, -fx);
    763  1.15     lukem 				re_delete(el, old, ofd - old,
    764  1.15     lukem 				    el->el_term.t_size.h, -fx);
    765  1.15     lukem 			}
    766  1.15     lukem 			/*
    767  1.15     lukem 		         * write (nsb-nfd) chars of new starting at nfd
    768  1.15     lukem 		         */
    769  1.15     lukem 			term_overwrite(el, nfd, (nsb - nfd));
    770  1.15     lukem 			re__strncopy(ofd, nfd, (size_t) (nsb - nfd));
    771  1.15     lukem 
    772  1.15     lukem 		} else {
    773  1.15     lukem 			ELRE_DEBUG(1, (__F,
    774  1.15     lukem 			    "but with nothing left to save\r\n"),);
    775  1.15     lukem 			/*
    776  1.15     lukem 		         * write (nsb-nfd) chars of new starting at nfd
    777  1.15     lukem 		         */
    778  1.15     lukem 			term_overwrite(el, nfd, (nsb - nfd));
    779  1.15     lukem 			ELRE_DEBUG(1, (__F,
    780  1.15     lukem 			    "cleareol %d\n", (oe - old) - (ne - new)),);
    781  1.15     lukem 			term_clear_EOL(el, (oe - old) - (ne - new));
    782  1.15     lukem 			/*
    783  1.15     lukem 		         * Done
    784  1.15     lukem 		         */
    785  1.15     lukem 			return;
    786  1.15     lukem 		}
    787  1.15     lukem 	} else
    788  1.15     lukem 		fx = 0;
    789  1.15     lukem 
    790  1.15     lukem 	if (sx < 0 && (ose - old) + fx < el->el_term.t_size.h) {
    791  1.15     lukem 		ELRE_DEBUG(1, (__F,
    792  1.15     lukem 		    "second diff delete at %d...\r\n", (ose - old) + fx),);
    793  1.15     lukem 		/*
    794  1.15     lukem 		 * Check if we have stuff to delete
    795  1.15     lukem 		 */
    796  1.15     lukem 		/*
    797  1.15     lukem 		 * fx is the number of characters inserted (+) or deleted (-)
    798   1.1       cgd 		 */
    799  1.15     lukem 
    800  1.15     lukem 		term_move_to_char(el, (ose - old) + fx);
    801  1.15     lukem 		/*
    802  1.15     lukem 		 * Check if we have stuff to save
    803  1.15     lukem 		 */
    804  1.15     lukem 		if (ols != oe) {
    805  1.15     lukem 			ELRE_DEBUG(1, (__F, "with stuff to save at end\r\n"),);
    806  1.15     lukem 			/*
    807  1.15     lukem 		         * Again a duplicate test.
    808  1.15     lukem 		         */
    809  1.15     lukem 			if (sx < 0) {
    810  1.15     lukem 				ELRE_DEBUG(!EL_CAN_DELETE, (__F,
    811  1.15     lukem 				    "ERROR: cannot delete in second diff\n"),);
    812  1.15     lukem 				term_deletechars(el, -sx);
    813  1.15     lukem 			}
    814  1.15     lukem 			/*
    815  1.15     lukem 		         * write (nls-nse) chars of new starting at nse
    816  1.15     lukem 		         */
    817  1.15     lukem 			term_overwrite(el, nse, (nls - nse));
    818  1.15     lukem 		} else {
    819  1.15     lukem 			ELRE_DEBUG(1, (__F,
    820  1.15     lukem 			    "but with nothing left to save\r\n"),);
    821  1.15     lukem 			term_overwrite(el, nse, (nls - nse));
    822  1.15     lukem 			ELRE_DEBUG(1, (__F,
    823  1.15     lukem 			    "cleareol %d\n", (oe - old) - (ne - new)),);
    824  1.15     lukem 			if ((oe - old) - (ne - new) != 0)
    825  1.15     lukem 				term_clear_EOL(el, (oe - old) - (ne - new));
    826  1.15     lukem 		}
    827  1.15     lukem 	}
    828  1.15     lukem 	/*
    829  1.15     lukem          * if we have a first insert AND WE HAVEN'T ALREADY DONE IT...
    830  1.15     lukem          */
    831  1.15     lukem 	if ((nsb != nfd) && (osb - ofd) <= (nsb - nfd) && (fx == 0)) {
    832  1.15     lukem 		ELRE_DEBUG(1, (__F, "late first diff insert at %d...\r\n",
    833  1.15     lukem 		    nfd - new),);
    834  1.15     lukem 
    835  1.15     lukem 		term_move_to_char(el, nfd - new);
    836  1.15     lukem 		/*
    837  1.15     lukem 		 * Check if we have stuff to keep at the end
    838  1.15     lukem 		 */
    839  1.15     lukem 		if (nsb != ne) {
    840  1.15     lukem 			ELRE_DEBUG(1, (__F, "with stuff to keep at end\r\n"),);
    841  1.15     lukem 			/*
    842  1.15     lukem 		         * We have to recalculate fx here because we set it
    843  1.15     lukem 		         * to zero above as a flag saying that we hadn't done
    844  1.15     lukem 		         * an early first insert.
    845  1.15     lukem 		         */
    846  1.15     lukem 			fx = (nsb - nfd) - (osb - ofd);
    847  1.15     lukem 			if (fx > 0) {
    848  1.15     lukem 				/*
    849  1.15     lukem 				 * insert fx chars of new starting at nfd
    850  1.15     lukem 				 */
    851  1.15     lukem 				ELRE_DEBUG(!EL_CAN_INSERT, (__F,
    852  1.15     lukem 				 "ERROR: cannot insert in late first diff\n"),);
    853  1.15     lukem 				term_insertwrite(el, nfd, fx);
    854  1.15     lukem 				re_insert(el, old, ofd - old,
    855  1.15     lukem 				    el->el_term.t_size.h, nfd, fx);
    856  1.15     lukem 			}
    857  1.15     lukem 			/*
    858  1.15     lukem 		         * write (nsb-nfd) - fx chars of new starting at
    859  1.15     lukem 		         * (nfd + fx)
    860  1.15     lukem 			 */
    861  1.15     lukem 			term_overwrite(el, nfd + fx, (nsb - nfd) - fx);
    862  1.15     lukem 			re__strncopy(ofd + fx, nfd + fx,
    863  1.15     lukem 			    (size_t) ((nsb - nfd) - fx));
    864  1.15     lukem 		} else {
    865  1.15     lukem 			ELRE_DEBUG(1, (__F, "without anything to save\r\n"),);
    866  1.15     lukem 			term_overwrite(el, nfd, (nsb - nfd));
    867  1.15     lukem 			re__strncopy(ofd, nfd, (size_t) (nsb - nfd));
    868  1.15     lukem 		}
    869  1.15     lukem 	}
    870  1.15     lukem 	/*
    871  1.15     lukem          * line is now NEW up to nse
    872  1.15     lukem          */
    873  1.15     lukem 	if (sx >= 0) {
    874  1.15     lukem 		ELRE_DEBUG(1, (__F,
    875  1.15     lukem 		    "second diff insert at %d...\r\n", nse - new),);
    876  1.15     lukem 		term_move_to_char(el, nse - new);
    877  1.15     lukem 		if (ols != oe) {
    878  1.15     lukem 			ELRE_DEBUG(1, (__F, "with stuff to keep at end\r\n"),);
    879  1.15     lukem 			if (sx > 0) {
    880  1.15     lukem 				/* insert sx chars of new starting at nse */
    881  1.15     lukem 				ELRE_DEBUG(!EL_CAN_INSERT, (__F,
    882  1.15     lukem 				    "ERROR: cannot insert in second diff\n"),);
    883  1.15     lukem 				term_insertwrite(el, nse, sx);
    884  1.15     lukem 			}
    885  1.15     lukem 			/*
    886  1.15     lukem 		         * write (nls-nse) - sx chars of new starting at
    887  1.15     lukem 			 * (nse + sx)
    888  1.15     lukem 		         */
    889  1.15     lukem 			term_overwrite(el, nse + sx, (nls - nse) - sx);
    890  1.15     lukem 		} else {
    891  1.15     lukem 			ELRE_DEBUG(1, (__F, "without anything to save\r\n"),);
    892  1.15     lukem 			term_overwrite(el, nse, (nls - nse));
    893  1.15     lukem 
    894  1.15     lukem 			/*
    895  1.15     lukem 	                 * No need to do a clear-to-end here because we were
    896  1.15     lukem 	                 * doing a second insert, so we will have over
    897  1.15     lukem 	                 * written all of the old string.
    898  1.15     lukem 		         */
    899  1.15     lukem 		}
    900  1.15     lukem 	}
    901  1.15     lukem 	ELRE_DEBUG(1, (__F, "done.\r\n"),);
    902  1.15     lukem }
    903   1.1       cgd 
    904   1.1       cgd 
    905   1.1       cgd /* re__copy_and_pad():
    906   1.1       cgd  *	Copy string and pad with spaces
    907   1.1       cgd  */
    908   1.1       cgd private void
    909  1.15     lukem re__copy_and_pad(char *dst, char *src, size_t width)
    910   1.1       cgd {
    911  1.15     lukem 	int i;
    912   1.1       cgd 
    913  1.15     lukem 	for (i = 0; i < width; i++) {
    914  1.15     lukem 		if (*src == '\0')
    915  1.15     lukem 			break;
    916  1.15     lukem 		*dst++ = *src++;
    917  1.15     lukem 	}
    918  1.15     lukem 
    919  1.16  jdolecek 	for (; i < width; i++)
    920  1.15     lukem 		*dst++ = ' ';
    921  1.16  jdolecek 
    922  1.15     lukem 	*dst = '\0';
    923  1.15     lukem }
    924   1.1       cgd 
    925   1.1       cgd 
    926   1.1       cgd /* re_refresh_cursor():
    927   1.1       cgd  *	Move to the new cursor position
    928   1.1       cgd  */
    929   1.1       cgd protected void
    930  1.15     lukem re_refresh_cursor(EditLine *el)
    931   1.1       cgd {
    932  1.15     lukem 	char *cp, c;
    933  1.15     lukem 	int h, v, th;
    934  1.15     lukem 
    935  1.15     lukem 	/* first we must find where the cursor is... */
    936  1.15     lukem 	h = el->el_prompt.p_pos.h;
    937  1.15     lukem 	v = el->el_prompt.p_pos.v;
    938  1.15     lukem 	th = el->el_term.t_size.h;	/* optimize for speed */
    939  1.15     lukem 
    940  1.15     lukem 	/* do input buffer to el->el_line.cursor */
    941  1.15     lukem 	for (cp = el->el_line.buffer; cp < el->el_line.cursor; cp++) {
    942  1.15     lukem 		c = *cp;
    943  1.15     lukem 		h++;		/* all chars at least this long */
    944  1.15     lukem 
    945  1.15     lukem 		if (c == '\n') {/* handle newline in data part too */
    946  1.15     lukem 			h = 0;
    947  1.15     lukem 			v++;
    948  1.15     lukem 		} else {
    949  1.15     lukem 			if (c == '\t') {	/* if a tab, to next tab stop */
    950  1.15     lukem 				while (h & 07) {
    951  1.15     lukem 					h++;
    952  1.15     lukem 				}
    953  1.15     lukem 			} else if (iscntrl((unsigned char) c)) {
    954  1.15     lukem 						/* if control char */
    955  1.15     lukem 				h++;
    956  1.15     lukem 				if (h > th) {	/* if overflow, compensate */
    957  1.15     lukem 					h = 1;
    958  1.15     lukem 					v++;
    959  1.15     lukem 				}
    960  1.15     lukem 			} else if (!isprint((unsigned char) c)) {
    961  1.15     lukem 				h += 3;
    962  1.15     lukem 				if (h > th) {	/* if overflow, compensate */
    963  1.15     lukem 					h = h - th;
    964  1.15     lukem 					v++;
    965  1.15     lukem 				}
    966  1.15     lukem 			}
    967  1.15     lukem 		}
    968   1.1       cgd 
    969  1.15     lukem 		if (h >= th) {	/* check, extra long tabs picked up here also */
    970  1.15     lukem 			h = 0;
    971  1.15     lukem 			v++;
    972  1.15     lukem 		}
    973  1.15     lukem 	}
    974  1.15     lukem 
    975  1.15     lukem 	/* now go there */
    976  1.15     lukem 	term_move_to_line(el, v);
    977  1.15     lukem 	term_move_to_char(el, h);
    978  1.15     lukem 	term__flush();
    979  1.15     lukem }
    980   1.1       cgd 
    981   1.1       cgd 
    982   1.1       cgd /* re_fastputc():
    983   1.1       cgd  *	Add a character fast.
    984   1.1       cgd  */
    985   1.1       cgd private void
    986  1.15     lukem re_fastputc(EditLine *el, int c)
    987   1.1       cgd {
    988  1.15     lukem 
    989  1.15     lukem 	term__putc(c);
    990  1.15     lukem 	el->el_display[el->el_cursor.v][el->el_cursor.h++] = c;
    991  1.15     lukem 	if (el->el_cursor.h >= el->el_term.t_size.h) {
    992  1.15     lukem 		/* if we must overflow */
    993  1.15     lukem 		el->el_cursor.h = 0;
    994  1.16  jdolecek 
    995  1.16  jdolecek 		/*
    996  1.16  jdolecek 		 * If we would overflow (input is longer than terminal size),
    997  1.16  jdolecek 		 * emulate scroll by dropping first line and shuffling the rest.
    998  1.16  jdolecek 		 * We do this via pointer shuffling - it's safe in this case
    999  1.16  jdolecek 		 * and we avoid memcpy().
   1000  1.16  jdolecek 		 */
   1001  1.16  jdolecek 		if (el->el_cursor.v + 1 >= el->el_term.t_size.v) {
   1002  1.16  jdolecek 			int i, lins = el->el_term.t_size.v;
   1003  1.16  jdolecek 			char *firstline = el->el_display[0];
   1004  1.16  jdolecek 
   1005  1.16  jdolecek 			for(i=1; i < lins; i++)
   1006  1.16  jdolecek 				el->el_display[i-1] = el->el_display[i];
   1007  1.16  jdolecek 
   1008  1.16  jdolecek 			re__copy_and_pad(firstline, "", 0);
   1009  1.16  jdolecek 			el->el_display[i-1] = firstline;
   1010  1.16  jdolecek 		} else {
   1011  1.16  jdolecek 			el->el_cursor.v++;
   1012  1.16  jdolecek 			el->el_refresh.r_oldcv++;
   1013  1.16  jdolecek 		}
   1014  1.15     lukem 		if (EL_HAS_AUTO_MARGINS) {
   1015  1.15     lukem 			if (EL_HAS_MAGIC_MARGINS) {
   1016  1.15     lukem 				term__putc(' ');
   1017  1.15     lukem 				term__putc('\b');
   1018  1.15     lukem 			}
   1019  1.15     lukem 		} else {
   1020  1.15     lukem 			term__putc('\r');
   1021  1.15     lukem 			term__putc('\n');
   1022  1.15     lukem 		}
   1023  1.12  christos 	}
   1024  1.15     lukem }
   1025   1.1       cgd 
   1026   1.1       cgd 
   1027   1.1       cgd /* re_fastaddc():
   1028   1.1       cgd  *	we added just one char, handle it fast.
   1029   1.8    simonb  *	Assumes that screen cursor == real cursor
   1030   1.1       cgd  */
   1031   1.1       cgd protected void
   1032  1.15     lukem re_fastaddc(EditLine *el)
   1033   1.1       cgd {
   1034  1.15     lukem 	char c;
   1035  1.15     lukem 	int rhdiff;
   1036   1.1       cgd 
   1037  1.15     lukem 	c = el->el_line.cursor[-1];
   1038   1.1       cgd 
   1039  1.15     lukem 	if (c == '\t' || el->el_line.cursor != el->el_line.lastchar) {
   1040  1.15     lukem 		re_refresh(el);	/* too hard to handle */
   1041  1.15     lukem 		return;
   1042  1.15     lukem 	}
   1043  1.15     lukem 	rhdiff = el->el_term.t_size.h - el->el_cursor.h -
   1044  1.15     lukem 	    el->el_rprompt.p_pos.h;
   1045  1.15     lukem 	if (el->el_rprompt.p_pos.h && rhdiff < 3) {
   1046  1.15     lukem 		re_refresh(el);	/* clear out rprompt if less than 1 char gap */
   1047  1.15     lukem 		return;
   1048  1.15     lukem 	}			/* else (only do at end of line, no TAB) */
   1049  1.15     lukem 	if (iscntrl((unsigned char) c)) {	/* if control char, do caret */
   1050  1.15     lukem 		char mc = (c == '\177') ? '?' : (c | 0100);
   1051  1.15     lukem 		re_fastputc(el, '^');
   1052  1.15     lukem 		re_fastputc(el, mc);
   1053  1.15     lukem 	} else if (isprint((unsigned char) c)) {	/* normal char */
   1054  1.15     lukem 		re_fastputc(el, c);
   1055  1.15     lukem 	} else {
   1056  1.15     lukem 		re_fastputc(el, '\\');
   1057  1.15     lukem 		re_fastputc(el, (int) ((((unsigned int) c >> 6) & 7) + '0'));
   1058  1.15     lukem 		re_fastputc(el, (int) ((((unsigned int) c >> 3) & 7) + '0'));
   1059  1.15     lukem 		re_fastputc(el, (c & 7) + '0');
   1060  1.15     lukem 	}
   1061  1.15     lukem 	term__flush();
   1062  1.15     lukem }
   1063   1.1       cgd 
   1064   1.1       cgd 
   1065   1.1       cgd /* re_clear_display():
   1066   1.8    simonb  *	clear the screen buffers so that new new prompt starts fresh.
   1067   1.1       cgd  */
   1068   1.1       cgd protected void
   1069  1.15     lukem re_clear_display(EditLine *el)
   1070   1.1       cgd {
   1071  1.15     lukem 	int i;
   1072   1.1       cgd 
   1073  1.15     lukem 	el->el_cursor.v = 0;
   1074  1.15     lukem 	el->el_cursor.h = 0;
   1075  1.15     lukem 	for (i = 0; i < el->el_term.t_size.v; i++)
   1076  1.15     lukem 		el->el_display[i][0] = '\0';
   1077  1.15     lukem 	el->el_refresh.r_oldcv = 0;
   1078  1.15     lukem }
   1079   1.1       cgd 
   1080   1.1       cgd 
   1081   1.1       cgd /* re_clear_lines():
   1082   1.8    simonb  *	Make sure all lines are *really* blank
   1083   1.1       cgd  */
   1084   1.1       cgd protected void
   1085  1.15     lukem re_clear_lines(EditLine *el)
   1086   1.1       cgd {
   1087  1.15     lukem 
   1088  1.15     lukem 	if (EL_CAN_CEOL) {
   1089  1.15     lukem 		int i;
   1090  1.15     lukem 		term_move_to_char(el, 0);
   1091  1.15     lukem 		for (i = 0; i <= el->el_refresh.r_oldcv; i++) {
   1092  1.15     lukem 			/* for each line on the screen */
   1093  1.15     lukem 			term_move_to_line(el, i);
   1094  1.15     lukem 			term_clear_EOL(el, el->el_term.t_size.h);
   1095  1.15     lukem 		}
   1096  1.15     lukem 		term_move_to_line(el, 0);
   1097  1.15     lukem 	} else {
   1098  1.15     lukem 		term_move_to_line(el, el->el_refresh.r_oldcv);
   1099  1.15     lukem 					/* go to last line */
   1100  1.15     lukem 		term__putc('\r');	/* go to BOL */
   1101  1.15     lukem 		term__putc('\n');	/* go to new line */
   1102  1.15     lukem 	}
   1103  1.15     lukem }
   1104