Home | History | Annotate | Line # | Download | only in libedit
read.c revision 1.37
      1  1.37  christos /*	$NetBSD: read.c,v 1.37 2005/08/01 23:00:15 christos 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.26       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.21  christos #include "config.h"
     36   1.1       cgd #if !defined(lint) && !defined(SCCSID)
     37   1.2     lukem #if 0
     38   1.1       cgd static char sccsid[] = "@(#)read.c	8.1 (Berkeley) 6/4/93";
     39   1.2     lukem #else
     40  1.37  christos __RCSID("$NetBSD: read.c,v 1.37 2005/08/01 23:00:15 christos Exp $");
     41   1.2     lukem #endif
     42   1.2     lukem #endif /* not lint && not SCCSID */
     43   1.1       cgd 
     44   1.1       cgd /*
     45   1.1       cgd  * read.c: Clean this junk up! This is horrible code.
     46   1.1       cgd  *	   Terminal read functions
     47   1.1       cgd  */
     48  1.11    kleink #include <errno.h>
     49  1.27   mycroft #include <fcntl.h>
     50   1.1       cgd #include <unistd.h>
     51   1.1       cgd #include <stdlib.h>
     52   1.1       cgd #include "el.h"
     53   1.1       cgd 
     54  1.17     lukem #define	OKCMD	-1
     55   1.1       cgd 
     56  1.17     lukem private int	read__fixio(int, int);
     57  1.17     lukem private int	read_preread(EditLine *);
     58  1.20  christos private int	read_char(EditLine *, char *);
     59  1.17     lukem private int	read_getcmd(EditLine *, el_action_t *, char *);
     60  1.20  christos 
     61  1.20  christos /* read_init():
     62  1.20  christos  *	Initialize the read stuff
     63  1.20  christos  */
     64  1.20  christos protected int
     65  1.20  christos read_init(EditLine *el)
     66  1.20  christos {
     67  1.20  christos 	/* builtin read_char */
     68  1.20  christos 	el->el_read.read_char = read_char;
     69  1.20  christos 	return 0;
     70  1.20  christos }
     71  1.20  christos 
     72  1.20  christos 
     73  1.20  christos /* el_read_setfn():
     74  1.20  christos  *	Set the read char function to the one provided.
     75  1.20  christos  *	If it is set to EL_BUILTIN_GETCFN, then reset to the builtin one.
     76  1.20  christos  */
     77  1.20  christos protected int
     78  1.20  christos el_read_setfn(EditLine *el, el_rfunc_t rc)
     79  1.20  christos {
     80  1.20  christos 	el->el_read.read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
     81  1.20  christos 	return 0;
     82  1.20  christos }
     83  1.20  christos 
     84  1.20  christos 
     85  1.20  christos /* el_read_getfn():
     86  1.20  christos  *	return the current read char function, or EL_BUILTIN_GETCFN
     87  1.20  christos  *	if it is the default one
     88  1.20  christos  */
     89  1.20  christos protected el_rfunc_t
     90  1.20  christos el_read_getfn(EditLine *el)
     91  1.20  christos {
     92  1.20  christos        return (el->el_read.read_char == read_char) ?
     93  1.20  christos 	    EL_BUILTIN_GETCFN : el->el_read.read_char;
     94  1.20  christos }
     95  1.20  christos 
     96   1.1       cgd 
     97  1.25  christos #ifndef MIN
     98  1.25  christos #define MIN(A,B) ((A) < (B) ? (A) : (B))
     99  1.25  christos #endif
    100  1.25  christos 
    101   1.1       cgd #ifdef DEBUG_EDIT
    102   1.1       cgd private void
    103  1.17     lukem read_debug(EditLine *el)
    104   1.1       cgd {
    105   1.1       cgd 
    106  1.17     lukem 	if (el->el_line.cursor > el->el_line.lastchar)
    107  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor > lastchar\r\n");
    108  1.17     lukem 	if (el->el_line.cursor < el->el_line.buffer)
    109  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor < buffer\r\n");
    110  1.17     lukem 	if (el->el_line.cursor > el->el_line.limit)
    111  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor > limit\r\n");
    112  1.17     lukem 	if (el->el_line.lastchar > el->el_line.limit)
    113  1.17     lukem 		(void) fprintf(el->el_errfile, "lastchar > limit\r\n");
    114  1.17     lukem 	if (el->el_line.limit != &el->el_line.buffer[EL_BUFSIZ - 2])
    115  1.17     lukem 		(void) fprintf(el->el_errfile, "limit != &buffer[EL_BUFSIZ-2]\r\n");
    116   1.1       cgd }
    117   1.1       cgd #endif /* DEBUG_EDIT */
    118   1.1       cgd 
    119  1.17     lukem 
    120   1.1       cgd /* read__fixio():
    121   1.1       cgd  *	Try to recover from a read error
    122   1.1       cgd  */
    123  1.10  christos /* ARGSUSED */
    124   1.1       cgd private int
    125  1.25  christos read__fixio(int fd __attribute__((__unused__)), int e)
    126   1.1       cgd {
    127  1.17     lukem 
    128  1.17     lukem 	switch (e) {
    129  1.17     lukem 	case -1:		/* Make sure that the code is reachable */
    130   1.1       cgd 
    131   1.1       cgd #ifdef EWOULDBLOCK
    132  1.17     lukem 	case EWOULDBLOCK:
    133  1.17     lukem #ifndef TRY_AGAIN
    134  1.17     lukem #define	TRY_AGAIN
    135  1.17     lukem #endif
    136   1.1       cgd #endif /* EWOULDBLOCK */
    137   1.1       cgd 
    138   1.1       cgd #if defined(POSIX) && defined(EAGAIN)
    139  1.17     lukem #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
    140  1.17     lukem 	case EAGAIN:
    141  1.17     lukem #ifndef TRY_AGAIN
    142  1.17     lukem #define	TRY_AGAIN
    143  1.17     lukem #endif
    144  1.17     lukem #endif /* EWOULDBLOCK && EWOULDBLOCK != EAGAIN */
    145   1.1       cgd #endif /* POSIX && EAGAIN */
    146   1.1       cgd 
    147  1.17     lukem 		e = 0;
    148   1.1       cgd #ifdef TRY_AGAIN
    149  1.17     lukem #if defined(F_SETFL) && defined(O_NDELAY)
    150  1.17     lukem 		if ((e = fcntl(fd, F_GETFL, 0)) == -1)
    151  1.17     lukem 			return (-1);
    152   1.5  christos 
    153  1.17     lukem 		if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
    154  1.17     lukem 			return (-1);
    155   1.5  christos 		else
    156  1.17     lukem 			e = 1;
    157  1.17     lukem #endif /* F_SETFL && O_NDELAY */
    158  1.17     lukem 
    159  1.17     lukem #ifdef FIONBIO
    160  1.17     lukem 		{
    161  1.17     lukem 			int zero = 0;
    162  1.17     lukem 
    163  1.17     lukem 			if (ioctl(fd, FIONBIO, (ioctl_t) & zero) == -1)
    164  1.17     lukem 				return (-1);
    165  1.17     lukem 			else
    166  1.17     lukem 				e = 1;
    167  1.17     lukem 		}
    168  1.17     lukem #endif /* FIONBIO */
    169   1.1       cgd 
    170   1.1       cgd #endif /* TRY_AGAIN */
    171  1.17     lukem 		return (e ? 0 : -1);
    172   1.1       cgd 
    173  1.17     lukem 	case EINTR:
    174  1.17     lukem 		return (0);
    175   1.1       cgd 
    176  1.17     lukem 	default:
    177  1.17     lukem 		return (-1);
    178  1.17     lukem 	}
    179   1.1       cgd }
    180   1.1       cgd 
    181   1.1       cgd 
    182   1.1       cgd /* read_preread():
    183   1.1       cgd  *	Try to read the stuff in the input queue;
    184   1.1       cgd  */
    185   1.1       cgd private int
    186  1.17     lukem read_preread(EditLine *el)
    187   1.1       cgd {
    188  1.17     lukem 	int chrs = 0;
    189   1.1       cgd 
    190  1.17     lukem 	if (el->el_tty.t_mode == ED_IO)
    191  1.17     lukem 		return (0);
    192   1.1       cgd 
    193   1.1       cgd #ifdef FIONREAD
    194  1.17     lukem 	(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
    195  1.17     lukem 	if (chrs > 0) {
    196  1.17     lukem 		char buf[EL_BUFSIZ];
    197   1.1       cgd 
    198  1.17     lukem 		chrs = read(el->el_infd, buf,
    199  1.17     lukem 		    (size_t) MIN(chrs, EL_BUFSIZ - 1));
    200  1.17     lukem 		if (chrs > 0) {
    201  1.17     lukem 			buf[chrs] = '\0';
    202  1.30  christos 			el_push(el, buf);
    203  1.17     lukem 		}
    204   1.1       cgd 	}
    205  1.17     lukem #endif /* FIONREAD */
    206   1.1       cgd 
    207  1.17     lukem 	return (chrs > 0);
    208   1.1       cgd }
    209   1.1       cgd 
    210   1.1       cgd 
    211   1.1       cgd /* el_push():
    212   1.1       cgd  *	Push a macro
    213   1.1       cgd  */
    214   1.1       cgd public void
    215  1.21  christos el_push(EditLine *el, char *str)
    216   1.1       cgd {
    217  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    218   1.1       cgd 
    219  1.17     lukem 	if (str != NULL && ma->level + 1 < EL_MAXMACRO) {
    220  1.17     lukem 		ma->level++;
    221  1.30  christos 		if ((ma->macro[ma->level] = el_strdup(str)) != NULL)
    222  1.30  christos 			return;
    223  1.30  christos 		ma->level--;
    224  1.17     lukem 	}
    225  1.30  christos 	term_beep(el);
    226  1.30  christos 	term__flush();
    227   1.1       cgd }
    228   1.1       cgd 
    229   1.1       cgd 
    230   1.1       cgd /* read_getcmd():
    231   1.1       cgd  *	Return next command from the input stream.
    232   1.1       cgd  */
    233   1.1       cgd private int
    234  1.17     lukem read_getcmd(EditLine *el, el_action_t *cmdnum, char *ch)
    235   1.1       cgd {
    236  1.23  christos 	el_action_t cmd;
    237  1.17     lukem 	int num;
    238   1.1       cgd 
    239  1.23  christos 	do {
    240  1.17     lukem 		if ((num = el_getc(el, ch)) != 1)	/* if EOF or error */
    241  1.17     lukem 			return (num);
    242   1.1       cgd 
    243   1.1       cgd #ifdef	KANJI
    244  1.17     lukem 		if ((*ch & 0200)) {
    245  1.17     lukem 			el->el_state.metanext = 0;
    246  1.17     lukem 			cmd = CcViMap[' '];
    247  1.17     lukem 			break;
    248  1.17     lukem 		} else
    249   1.1       cgd #endif /* KANJI */
    250   1.1       cgd 
    251  1.17     lukem 		if (el->el_state.metanext) {
    252  1.17     lukem 			el->el_state.metanext = 0;
    253  1.17     lukem 			*ch |= 0200;
    254  1.17     lukem 		}
    255  1.17     lukem 		cmd = el->el_map.current[(unsigned char) *ch];
    256  1.17     lukem 		if (cmd == ED_SEQUENCE_LEAD_IN) {
    257  1.17     lukem 			key_value_t val;
    258  1.17     lukem 			switch (key_get(el, ch, &val)) {
    259  1.17     lukem 			case XK_CMD:
    260  1.17     lukem 				cmd = val.cmd;
    261  1.17     lukem 				break;
    262  1.17     lukem 			case XK_STR:
    263  1.17     lukem 				el_push(el, val.str);
    264  1.17     lukem 				break;
    265   1.1       cgd #ifdef notyet
    266  1.17     lukem 			case XK_EXE:
    267  1.17     lukem 				/* XXX: In the future to run a user function */
    268  1.17     lukem 				RunCommand(val.str);
    269  1.17     lukem 				break;
    270   1.1       cgd #endif
    271  1.17     lukem 			default:
    272  1.18  christos 				EL_ABORT((el->el_errfile, "Bad XK_ type \n"));
    273  1.17     lukem 				break;
    274  1.17     lukem 			}
    275  1.17     lukem 		}
    276  1.17     lukem 		if (el->el_map.alt == NULL)
    277  1.17     lukem 			el->el_map.current = el->el_map.key;
    278  1.23  christos 	} while (cmd == ED_SEQUENCE_LEAD_IN);
    279  1.17     lukem 	*cmdnum = cmd;
    280  1.17     lukem 	return (OKCMD);
    281   1.1       cgd }
    282   1.1       cgd 
    283  1.17     lukem 
    284   1.6  christos /* read_char():
    285   1.6  christos  *	Read a character from the tty.
    286   1.6  christos  */
    287   1.6  christos private int
    288  1.17     lukem read_char(EditLine *el, char *cp)
    289   1.6  christos {
    290  1.17     lukem 	int num_read;
    291  1.17     lukem 	int tried = 0;
    292   1.6  christos 
    293  1.17     lukem 	while ((num_read = read(el->el_infd, cp, 1)) == -1)
    294  1.17     lukem 		if (!tried && read__fixio(el->el_infd, errno) == 0)
    295  1.17     lukem 			tried = 1;
    296  1.17     lukem 		else {
    297  1.17     lukem 			*cp = '\0';
    298  1.17     lukem 			return (-1);
    299  1.17     lukem 		}
    300   1.6  christos 
    301  1.17     lukem 	return (num_read);
    302   1.6  christos }
    303   1.6  christos 
    304   1.1       cgd 
    305   1.1       cgd /* el_getc():
    306   1.1       cgd  *	Read a character
    307   1.1       cgd  */
    308   1.1       cgd public int
    309  1.17     lukem el_getc(EditLine *el, char *cp)
    310   1.1       cgd {
    311  1.17     lukem 	int num_read;
    312  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    313   1.1       cgd 
    314  1.17     lukem 	term__flush();
    315  1.17     lukem 	for (;;) {
    316  1.17     lukem 		if (ma->level < 0) {
    317  1.17     lukem 			if (!read_preread(el))
    318  1.17     lukem 				break;
    319  1.17     lukem 		}
    320  1.17     lukem 		if (ma->level < 0)
    321  1.17     lukem 			break;
    322  1.12    simonb 
    323  1.30  christos 		if (ma->macro[ma->level][ma->offset] == '\0') {
    324  1.30  christos 			el_free(ma->macro[ma->level--]);
    325  1.30  christos 			ma->offset = 0;
    326  1.17     lukem 			continue;
    327  1.17     lukem 		}
    328  1.30  christos 		*cp = ma->macro[ma->level][ma->offset++] & 0377;
    329  1.30  christos 		if (ma->macro[ma->level][ma->offset] == '\0') {
    330  1.30  christos 			/* Needed for QuoteMode On */
    331  1.30  christos 			el_free(ma->macro[ma->level--]);
    332  1.30  christos 			ma->offset = 0;
    333  1.17     lukem 		}
    334  1.17     lukem 		return (1);
    335   1.1       cgd 	}
    336   1.1       cgd 
    337   1.1       cgd #ifdef DEBUG_READ
    338  1.17     lukem 	(void) fprintf(el->el_errfile, "Turning raw mode on\n");
    339   1.1       cgd #endif /* DEBUG_READ */
    340  1.17     lukem 	if (tty_rawmode(el) < 0)/* make sure the tty is set up correctly */
    341  1.17     lukem 		return (0);
    342   1.1       cgd 
    343   1.1       cgd #ifdef DEBUG_READ
    344  1.17     lukem 	(void) fprintf(el->el_errfile, "Reading a character\n");
    345   1.1       cgd #endif /* DEBUG_READ */
    346  1.20  christos 	num_read = (*el->el_read.read_char)(el, cp);
    347   1.1       cgd #ifdef DEBUG_READ
    348  1.17     lukem 	(void) fprintf(el->el_errfile, "Got it %c\n", *cp);
    349   1.1       cgd #endif /* DEBUG_READ */
    350  1.17     lukem 	return (num_read);
    351   1.1       cgd }
    352   1.1       cgd 
    353  1.28  christos protected void
    354  1.33  christos read_prepare(EditLine *el)
    355  1.28  christos {
    356  1.28  christos 	if (el->el_flags & HANDLE_SIGNALS)
    357  1.28  christos 		sig_set(el);
    358  1.28  christos 	if (el->el_flags & NO_TTY)
    359  1.28  christos 		return;
    360  1.28  christos 	if ((el->el_flags & (UNBUFFERED|EDIT_DISABLED)) == UNBUFFERED)
    361  1.28  christos 		tty_rawmode(el);
    362  1.28  christos 
    363  1.28  christos 	/* This is relatively cheap, and things go terribly wrong if
    364  1.28  christos 	   we have the wrong size. */
    365  1.28  christos 	el_resize(el);
    366  1.28  christos 	re_clear_display(el);	/* reset the display stuff */
    367  1.37  christos 	ch_reset(el, 0);
    368  1.28  christos 	re_refresh(el);		/* print the prompt */
    369  1.35  christos 
    370  1.35  christos 	if (el->el_flags & UNBUFFERED)
    371  1.35  christos 		term__flush();
    372  1.28  christos }
    373  1.28  christos 
    374  1.28  christos protected void
    375  1.28  christos read_finish(EditLine *el)
    376  1.28  christos {
    377  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0)
    378  1.28  christos 		(void) tty_cookedmode(el);
    379  1.28  christos 	if (el->el_flags & HANDLE_SIGNALS)
    380  1.28  christos 		sig_clr(el);
    381  1.28  christos }
    382   1.1       cgd 
    383   1.1       cgd public const char *
    384  1.17     lukem el_gets(EditLine *el, int *nread)
    385   1.1       cgd {
    386  1.17     lukem 	int retval;
    387  1.17     lukem 	el_action_t cmdnum = 0;
    388  1.17     lukem 	int num;		/* how many chars we have read at NL */
    389  1.17     lukem 	char ch;
    390  1.28  christos 	int crlf = 0;
    391   1.8     lukem #ifdef FIONREAD
    392  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    393   1.8     lukem #endif /* FIONREAD */
    394   1.1       cgd 
    395  1.17     lukem 	if (el->el_flags & NO_TTY) {
    396  1.17     lukem 		char *cp = el->el_line.buffer;
    397  1.19  jdolecek 		size_t idx;
    398   1.6  christos 
    399  1.20  christos 		while ((*el->el_read.read_char)(el, cp) == 1) {
    400  1.19  jdolecek 			/* make sure there is space for next character */
    401  1.19  jdolecek 			if (cp + 1 >= el->el_line.limit) {
    402  1.19  jdolecek 				idx = (cp - el->el_line.buffer);
    403  1.19  jdolecek 				if (!ch_enlargebufs(el, 2))
    404  1.19  jdolecek 					break;
    405  1.19  jdolecek 				cp = &el->el_line.buffer[idx];
    406  1.19  jdolecek 			}
    407  1.17     lukem 			cp++;
    408  1.28  christos 			if (el->el_flags & UNBUFFERED)
    409  1.28  christos 				break;
    410  1.17     lukem 			if (cp[-1] == '\r' || cp[-1] == '\n')
    411  1.17     lukem 				break;
    412   1.6  christos 		}
    413  1.19  jdolecek 
    414  1.17     lukem 		el->el_line.cursor = el->el_line.lastchar = cp;
    415  1.17     lukem 		*cp = '\0';
    416  1.17     lukem 		if (nread)
    417  1.17     lukem 			*nread = el->el_line.cursor - el->el_line.buffer;
    418  1.17     lukem 		return (el->el_line.buffer);
    419   1.7  christos 	}
    420  1.22  christos 
    421   1.1       cgd 
    422   1.1       cgd #ifdef FIONREAD
    423  1.17     lukem 	if (el->el_tty.t_mode == EX_IO && ma->level < 0) {
    424  1.17     lukem 		long chrs = 0;
    425   1.1       cgd 
    426  1.17     lukem 		(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
    427  1.17     lukem 		if (chrs == 0) {
    428  1.17     lukem 			if (tty_rawmode(el) < 0) {
    429  1.17     lukem 				if (nread)
    430  1.17     lukem 					*nread = 0;
    431  1.17     lukem 				return (NULL);
    432  1.17     lukem 			}
    433  1.17     lukem 		}
    434   1.1       cgd 	}
    435   1.1       cgd #endif /* FIONREAD */
    436   1.1       cgd 
    437  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0)
    438  1.28  christos 		read_prepare(el);
    439  1.13  sommerfe 
    440  1.17     lukem 	if (el->el_flags & EDIT_DISABLED) {
    441  1.34  christos 		char *cp;
    442  1.19  jdolecek 		size_t idx;
    443  1.34  christos 		if ((el->el_flags & UNBUFFERED) == 0)
    444  1.34  christos 			cp = el->el_line.buffer;
    445  1.34  christos 		else
    446  1.34  christos 			cp = el->el_line.lastchar;
    447  1.13  sommerfe 
    448  1.17     lukem 		term__flush();
    449  1.17     lukem 
    450  1.20  christos 		while ((*el->el_read.read_char)(el, cp) == 1) {
    451  1.19  jdolecek 			/* make sure there is space next character */
    452  1.19  jdolecek 			if (cp + 1 >= el->el_line.limit) {
    453  1.19  jdolecek 				idx = (cp - el->el_line.buffer);
    454  1.19  jdolecek 				if (!ch_enlargebufs(el, 2))
    455  1.19  jdolecek 					break;
    456  1.19  jdolecek 				cp = &el->el_line.buffer[idx];
    457  1.19  jdolecek 			}
    458  1.24  christos 			if (*cp == 4)	/* ought to be stty eof */
    459  1.24  christos 				break;
    460  1.17     lukem 			cp++;
    461  1.28  christos 			crlf = cp[-1] == '\r' || cp[-1] == '\n';
    462  1.28  christos 			if (el->el_flags & UNBUFFERED)
    463  1.28  christos 				break;
    464  1.28  christos 			if (crlf)
    465  1.17     lukem 				break;
    466  1.19  jdolecek 		}
    467  1.13  sommerfe 
    468  1.17     lukem 		el->el_line.cursor = el->el_line.lastchar = cp;
    469  1.17     lukem 		*cp = '\0';
    470  1.17     lukem 		if (nread)
    471  1.17     lukem 			*nread = el->el_line.cursor - el->el_line.buffer;
    472  1.17     lukem 		return (el->el_line.buffer);
    473  1.13  sommerfe 	}
    474  1.22  christos 
    475  1.17     lukem 	for (num = OKCMD; num == OKCMD;) {	/* while still editing this
    476  1.17     lukem 						 * line */
    477   1.1       cgd #ifdef DEBUG_EDIT
    478  1.17     lukem 		read_debug(el);
    479   1.1       cgd #endif /* DEBUG_EDIT */
    480  1.17     lukem 		/* if EOF or error */
    481  1.17     lukem 		if ((num = read_getcmd(el, &cmdnum, &ch)) != OKCMD) {
    482   1.1       cgd #ifdef DEBUG_READ
    483  1.17     lukem 			(void) fprintf(el->el_errfile,
    484  1.17     lukem 			    "Returning from el_gets %d\n", num);
    485   1.1       cgd #endif /* DEBUG_READ */
    486  1.17     lukem 			break;
    487  1.17     lukem 		}
    488  1.36     lukem 		if ((unsigned int)cmdnum >= el->el_map.nfunc) {	/* BUG CHECK command */
    489   1.1       cgd #ifdef DEBUG_EDIT
    490  1.17     lukem 			(void) fprintf(el->el_errfile,
    491  1.17     lukem 			    "ERROR: illegal command from key 0%o\r\n", ch);
    492   1.1       cgd #endif /* DEBUG_EDIT */
    493  1.17     lukem 			continue;	/* try again */
    494  1.17     lukem 		}
    495  1.17     lukem 		/* now do the real command */
    496   1.1       cgd #ifdef DEBUG_READ
    497  1.17     lukem 		{
    498  1.17     lukem 			el_bindings_t *b;
    499  1.17     lukem 			for (b = el->el_map.help; b->name; b++)
    500  1.17     lukem 				if (b->func == cmdnum)
    501  1.17     lukem 					break;
    502  1.17     lukem 			if (b->name)
    503  1.17     lukem 				(void) fprintf(el->el_errfile,
    504  1.17     lukem 				    "Executing %s\n", b->name);
    505  1.17     lukem 			else
    506  1.17     lukem 				(void) fprintf(el->el_errfile,
    507  1.17     lukem 				    "Error command = %d\n", cmdnum);
    508  1.17     lukem 		}
    509   1.1       cgd #endif /* DEBUG_READ */
    510  1.23  christos 		/* vi redo needs these way down the levels... */
    511  1.23  christos 		el->el_state.thiscmd = cmdnum;
    512  1.23  christos 		el->el_state.thisch = ch;
    513  1.23  christos 		if (el->el_map.type == MAP_VI &&
    514  1.23  christos 		    el->el_map.current == el->el_map.key &&
    515  1.23  christos 		    el->el_chared.c_redo.pos < el->el_chared.c_redo.lim) {
    516  1.23  christos 			if (cmdnum == VI_DELETE_PREV_CHAR &&
    517  1.23  christos 			    el->el_chared.c_redo.pos != el->el_chared.c_redo.buf
    518  1.31  christos 			    && isprint((unsigned char)el->el_chared.c_redo.pos[-1]))
    519  1.23  christos 				el->el_chared.c_redo.pos--;
    520  1.23  christos 			else
    521  1.23  christos 				*el->el_chared.c_redo.pos++ = ch;
    522  1.23  christos 		}
    523  1.17     lukem 		retval = (*el->el_map.func[cmdnum]) (el, ch);
    524  1.22  christos #ifdef DEBUG_READ
    525  1.22  christos 		(void) fprintf(el->el_errfile,
    526  1.22  christos 			"Returned state %d\n", retval );
    527  1.22  christos #endif /* DEBUG_READ */
    528  1.17     lukem 
    529  1.17     lukem 		/* save the last command here */
    530  1.17     lukem 		el->el_state.lastcmd = cmdnum;
    531   1.1       cgd 
    532  1.17     lukem 		/* use any return value */
    533  1.17     lukem 		switch (retval) {
    534  1.17     lukem 		case CC_CURSOR:
    535  1.17     lukem 			re_refresh_cursor(el);
    536  1.17     lukem 			break;
    537  1.17     lukem 
    538  1.17     lukem 		case CC_REDISPLAY:
    539  1.17     lukem 			re_clear_lines(el);
    540  1.17     lukem 			re_clear_display(el);
    541  1.17     lukem 			/* FALLTHROUGH */
    542  1.17     lukem 
    543  1.17     lukem 		case CC_REFRESH:
    544  1.17     lukem 			re_refresh(el);
    545  1.17     lukem 			break;
    546  1.17     lukem 
    547  1.17     lukem 		case CC_REFRESH_BEEP:
    548  1.17     lukem 			re_refresh(el);
    549  1.17     lukem 			term_beep(el);
    550  1.17     lukem 			break;
    551  1.17     lukem 
    552  1.17     lukem 		case CC_NORM:	/* normal char */
    553  1.17     lukem 			break;
    554   1.1       cgd 
    555  1.17     lukem 		case CC_ARGHACK:	/* Suggested by Rich Salz */
    556  1.17     lukem 			/* <rsalz (at) pineapple.bbn.com> */
    557  1.23  christos 			continue;	/* keep going... */
    558   1.1       cgd 
    559  1.17     lukem 		case CC_EOF:	/* end of file typed */
    560  1.29  christos 			if ((el->el_flags & UNBUFFERED) == 0)
    561  1.29  christos 				num = 0;
    562  1.29  christos 			else if (num == -1) {
    563  1.31  christos 				*el->el_line.lastchar++ = CONTROL('d');
    564  1.29  christos 				el->el_line.cursor = el->el_line.lastchar;
    565  1.29  christos 				num = 1;
    566  1.29  christos 			}
    567  1.17     lukem 			break;
    568  1.17     lukem 
    569  1.17     lukem 		case CC_NEWLINE:	/* normal end of line */
    570  1.17     lukem 			num = el->el_line.lastchar - el->el_line.buffer;
    571  1.17     lukem 			break;
    572  1.17     lukem 
    573  1.17     lukem 		case CC_FATAL:	/* fatal error, reset to known state */
    574   1.1       cgd #ifdef DEBUG_READ
    575  1.17     lukem 			(void) fprintf(el->el_errfile,
    576  1.17     lukem 			    "*** editor fatal ERROR ***\r\n\n");
    577   1.1       cgd #endif /* DEBUG_READ */
    578  1.17     lukem 			/* put (real) cursor in a known place */
    579  1.17     lukem 			re_clear_display(el);	/* reset the display stuff */
    580  1.17     lukem 			ch_reset(el);	/* reset the input pointers */
    581  1.17     lukem 			re_refresh(el);	/* print the prompt again */
    582  1.17     lukem 			break;
    583   1.1       cgd 
    584  1.17     lukem 		case CC_ERROR:
    585  1.17     lukem 		default:	/* functions we don't know about */
    586   1.1       cgd #ifdef DEBUG_READ
    587  1.17     lukem 			(void) fprintf(el->el_errfile,
    588  1.17     lukem 			    "*** editor ERROR ***\r\n\n");
    589   1.1       cgd #endif /* DEBUG_READ */
    590  1.17     lukem 			term_beep(el);
    591  1.17     lukem 			term__flush();
    592  1.17     lukem 			break;
    593  1.17     lukem 		}
    594  1.23  christos 		el->el_state.argument = 1;
    595  1.23  christos 		el->el_state.doingarg = 0;
    596  1.23  christos 		el->el_chared.c_vcmd.action = NOP;
    597  1.28  christos 		if (el->el_flags & UNBUFFERED)
    598  1.28  christos 			break;
    599   1.1       cgd 	}
    600   1.1       cgd 
    601  1.22  christos 	term__flush();		/* flush any buffered output */
    602  1.22  christos 	/* make sure the tty is set up correctly */
    603  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0) {
    604  1.28  christos 		read_finish(el);
    605  1.28  christos 		if (nread)
    606  1.28  christos 			*nread = num;
    607  1.28  christos 	} else {
    608  1.28  christos 		if (nread)
    609  1.28  christos 			*nread = el->el_line.lastchar - el->el_line.buffer;
    610  1.28  christos 	}
    611  1.17     lukem 	return (num ? el->el_line.buffer : NULL);
    612   1.1       cgd }
    613