Home | History | Annotate | Line # | Download | only in libedit
read.c revision 1.49
      1  1.49  christos /*	$NetBSD: read.c,v 1.49 2009/03/10 20:46: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.49  christos __RCSID("$NetBSD: read.c,v 1.49 2009/03/10 20:46: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.44  christos #define	OKCMD	-1	/* must be -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.40  christos private void	read_pop(c_macro_t *);
     61  1.20  christos 
     62  1.20  christos /* read_init():
     63  1.20  christos  *	Initialize the read stuff
     64  1.20  christos  */
     65  1.20  christos protected int
     66  1.20  christos read_init(EditLine *el)
     67  1.20  christos {
     68  1.20  christos 	/* builtin read_char */
     69  1.20  christos 	el->el_read.read_char = read_char;
     70  1.20  christos 	return 0;
     71  1.20  christos }
     72  1.20  christos 
     73  1.20  christos 
     74  1.20  christos /* el_read_setfn():
     75  1.20  christos  *	Set the read char function to the one provided.
     76  1.20  christos  *	If it is set to EL_BUILTIN_GETCFN, then reset to the builtin one.
     77  1.20  christos  */
     78  1.20  christos protected int
     79  1.20  christos el_read_setfn(EditLine *el, el_rfunc_t rc)
     80  1.20  christos {
     81  1.20  christos 	el->el_read.read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
     82  1.20  christos 	return 0;
     83  1.20  christos }
     84  1.20  christos 
     85  1.20  christos 
     86  1.20  christos /* el_read_getfn():
     87  1.20  christos  *	return the current read char function, or EL_BUILTIN_GETCFN
     88  1.20  christos  *	if it is the default one
     89  1.20  christos  */
     90  1.20  christos protected el_rfunc_t
     91  1.20  christos el_read_getfn(EditLine *el)
     92  1.20  christos {
     93  1.20  christos        return (el->el_read.read_char == read_char) ?
     94  1.20  christos 	    EL_BUILTIN_GETCFN : el->el_read.read_char;
     95  1.20  christos }
     96  1.20  christos 
     97   1.1       cgd 
     98  1.25  christos #ifndef MIN
     99  1.25  christos #define MIN(A,B) ((A) < (B) ? (A) : (B))
    100  1.25  christos #endif
    101  1.25  christos 
    102   1.1       cgd #ifdef DEBUG_EDIT
    103   1.1       cgd private void
    104  1.17     lukem read_debug(EditLine *el)
    105   1.1       cgd {
    106   1.1       cgd 
    107  1.17     lukem 	if (el->el_line.cursor > el->el_line.lastchar)
    108  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor > lastchar\r\n");
    109  1.17     lukem 	if (el->el_line.cursor < el->el_line.buffer)
    110  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor < buffer\r\n");
    111  1.17     lukem 	if (el->el_line.cursor > el->el_line.limit)
    112  1.17     lukem 		(void) fprintf(el->el_errfile, "cursor > limit\r\n");
    113  1.17     lukem 	if (el->el_line.lastchar > el->el_line.limit)
    114  1.17     lukem 		(void) fprintf(el->el_errfile, "lastchar > limit\r\n");
    115  1.17     lukem 	if (el->el_line.limit != &el->el_line.buffer[EL_BUFSIZ - 2])
    116  1.17     lukem 		(void) fprintf(el->el_errfile, "limit != &buffer[EL_BUFSIZ-2]\r\n");
    117   1.1       cgd }
    118   1.1       cgd #endif /* DEBUG_EDIT */
    119   1.1       cgd 
    120  1.17     lukem 
    121   1.1       cgd /* read__fixio():
    122   1.1       cgd  *	Try to recover from a read error
    123   1.1       cgd  */
    124  1.10  christos /* ARGSUSED */
    125   1.1       cgd private int
    126  1.25  christos read__fixio(int fd __attribute__((__unused__)), int e)
    127   1.1       cgd {
    128  1.17     lukem 
    129  1.17     lukem 	switch (e) {
    130  1.17     lukem 	case -1:		/* Make sure that the code is reachable */
    131   1.1       cgd 
    132   1.1       cgd #ifdef EWOULDBLOCK
    133  1.17     lukem 	case EWOULDBLOCK:
    134  1.17     lukem #ifndef TRY_AGAIN
    135  1.17     lukem #define	TRY_AGAIN
    136  1.17     lukem #endif
    137   1.1       cgd #endif /* EWOULDBLOCK */
    138   1.1       cgd 
    139   1.1       cgd #if defined(POSIX) && defined(EAGAIN)
    140  1.17     lukem #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
    141  1.17     lukem 	case EAGAIN:
    142  1.17     lukem #ifndef TRY_AGAIN
    143  1.17     lukem #define	TRY_AGAIN
    144  1.17     lukem #endif
    145  1.17     lukem #endif /* EWOULDBLOCK && EWOULDBLOCK != EAGAIN */
    146   1.1       cgd #endif /* POSIX && EAGAIN */
    147   1.1       cgd 
    148  1.17     lukem 		e = 0;
    149   1.1       cgd #ifdef TRY_AGAIN
    150  1.17     lukem #if defined(F_SETFL) && defined(O_NDELAY)
    151  1.17     lukem 		if ((e = fcntl(fd, F_GETFL, 0)) == -1)
    152  1.17     lukem 			return (-1);
    153   1.5  christos 
    154  1.17     lukem 		if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
    155  1.17     lukem 			return (-1);
    156   1.5  christos 		else
    157  1.17     lukem 			e = 1;
    158  1.17     lukem #endif /* F_SETFL && O_NDELAY */
    159  1.17     lukem 
    160  1.17     lukem #ifdef FIONBIO
    161  1.17     lukem 		{
    162  1.17     lukem 			int zero = 0;
    163  1.17     lukem 
    164  1.17     lukem 			if (ioctl(fd, FIONBIO, (ioctl_t) & zero) == -1)
    165  1.17     lukem 				return (-1);
    166  1.17     lukem 			else
    167  1.17     lukem 				e = 1;
    168  1.17     lukem 		}
    169  1.17     lukem #endif /* FIONBIO */
    170   1.1       cgd 
    171   1.1       cgd #endif /* TRY_AGAIN */
    172  1.17     lukem 		return (e ? 0 : -1);
    173   1.1       cgd 
    174  1.17     lukem 	case EINTR:
    175  1.44  christos 		return (-1);
    176   1.1       cgd 
    177  1.17     lukem 	default:
    178  1.17     lukem 		return (-1);
    179  1.17     lukem 	}
    180   1.1       cgd }
    181   1.1       cgd 
    182   1.1       cgd 
    183   1.1       cgd /* read_preread():
    184   1.1       cgd  *	Try to read the stuff in the input queue;
    185   1.1       cgd  */
    186   1.1       cgd private int
    187  1.17     lukem read_preread(EditLine *el)
    188   1.1       cgd {
    189  1.17     lukem 	int chrs = 0;
    190   1.1       cgd 
    191  1.17     lukem 	if (el->el_tty.t_mode == ED_IO)
    192  1.17     lukem 		return (0);
    193   1.1       cgd 
    194   1.1       cgd #ifdef FIONREAD
    195  1.17     lukem 	(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
    196  1.17     lukem 	if (chrs > 0) {
    197  1.17     lukem 		char buf[EL_BUFSIZ];
    198   1.1       cgd 
    199  1.17     lukem 		chrs = read(el->el_infd, buf,
    200  1.17     lukem 		    (size_t) MIN(chrs, EL_BUFSIZ - 1));
    201  1.17     lukem 		if (chrs > 0) {
    202  1.17     lukem 			buf[chrs] = '\0';
    203  1.30  christos 			el_push(el, buf);
    204  1.17     lukem 		}
    205   1.1       cgd 	}
    206  1.17     lukem #endif /* FIONREAD */
    207   1.1       cgd 
    208  1.17     lukem 	return (chrs > 0);
    209   1.1       cgd }
    210   1.1       cgd 
    211   1.1       cgd 
    212   1.1       cgd /* el_push():
    213   1.1       cgd  *	Push a macro
    214   1.1       cgd  */
    215   1.1       cgd public void
    216  1.43  christos el_push(EditLine *el, const char *str)
    217   1.1       cgd {
    218  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    219   1.1       cgd 
    220  1.17     lukem 	if (str != NULL && ma->level + 1 < EL_MAXMACRO) {
    221  1.17     lukem 		ma->level++;
    222  1.30  christos 		if ((ma->macro[ma->level] = el_strdup(str)) != NULL)
    223  1.30  christos 			return;
    224  1.30  christos 		ma->level--;
    225  1.17     lukem 	}
    226  1.30  christos 	term_beep(el);
    227  1.41  christos 	term__flush(el);
    228   1.1       cgd }
    229   1.1       cgd 
    230   1.1       cgd 
    231   1.1       cgd /* read_getcmd():
    232   1.1       cgd  *	Return next command from the input stream.
    233   1.1       cgd  */
    234   1.1       cgd private int
    235  1.17     lukem read_getcmd(EditLine *el, el_action_t *cmdnum, char *ch)
    236   1.1       cgd {
    237  1.23  christos 	el_action_t cmd;
    238  1.17     lukem 	int num;
    239   1.1       cgd 
    240  1.44  christos 	el->el_errno = 0;
    241  1.23  christos 	do {
    242  1.44  christos 		if ((num = el_getc(el, ch)) != 1) {	/* if EOF or error */
    243  1.49  christos 			el->el_errno = num == 0 ? 0 : errno;
    244  1.17     lukem 			return (num);
    245  1.44  christos 		}
    246   1.1       cgd 
    247   1.1       cgd #ifdef	KANJI
    248  1.17     lukem 		if ((*ch & 0200)) {
    249  1.17     lukem 			el->el_state.metanext = 0;
    250  1.17     lukem 			cmd = CcViMap[' '];
    251  1.17     lukem 			break;
    252  1.17     lukem 		} else
    253   1.1       cgd #endif /* KANJI */
    254   1.1       cgd 
    255  1.17     lukem 		if (el->el_state.metanext) {
    256  1.17     lukem 			el->el_state.metanext = 0;
    257  1.17     lukem 			*ch |= 0200;
    258  1.17     lukem 		}
    259  1.17     lukem 		cmd = el->el_map.current[(unsigned char) *ch];
    260  1.17     lukem 		if (cmd == ED_SEQUENCE_LEAD_IN) {
    261  1.17     lukem 			key_value_t val;
    262  1.17     lukem 			switch (key_get(el, ch, &val)) {
    263  1.17     lukem 			case XK_CMD:
    264  1.17     lukem 				cmd = val.cmd;
    265  1.17     lukem 				break;
    266  1.17     lukem 			case XK_STR:
    267  1.17     lukem 				el_push(el, val.str);
    268  1.17     lukem 				break;
    269   1.1       cgd #ifdef notyet
    270  1.17     lukem 			case XK_EXE:
    271  1.17     lukem 				/* XXX: In the future to run a user function */
    272  1.17     lukem 				RunCommand(val.str);
    273  1.17     lukem 				break;
    274   1.1       cgd #endif
    275  1.17     lukem 			default:
    276  1.18  christos 				EL_ABORT((el->el_errfile, "Bad XK_ type \n"));
    277  1.17     lukem 				break;
    278  1.17     lukem 			}
    279  1.17     lukem 		}
    280  1.17     lukem 		if (el->el_map.alt == NULL)
    281  1.17     lukem 			el->el_map.current = el->el_map.key;
    282  1.23  christos 	} while (cmd == ED_SEQUENCE_LEAD_IN);
    283  1.17     lukem 	*cmdnum = cmd;
    284  1.17     lukem 	return (OKCMD);
    285   1.1       cgd }
    286   1.1       cgd 
    287  1.17     lukem 
    288   1.6  christos /* read_char():
    289   1.6  christos  *	Read a character from the tty.
    290   1.6  christos  */
    291   1.6  christos private int
    292  1.17     lukem read_char(EditLine *el, char *cp)
    293   1.6  christos {
    294  1.45  christos 	ssize_t num_read;
    295  1.17     lukem 	int tried = 0;
    296   1.6  christos 
    297  1.46  christos  again:
    298  1.46  christos 	el->el_signal->sig_no = 0;
    299  1.46  christos 	while ((num_read = read(el->el_infd, cp, 1)) == -1) {
    300  1.46  christos 		if (el->el_signal->sig_no == SIGCONT) {
    301  1.46  christos 			sig_set(el);
    302  1.46  christos 			el_set(el, EL_REFRESH);
    303  1.46  christos 			goto again;
    304  1.46  christos 		}
    305  1.17     lukem 		if (!tried && read__fixio(el->el_infd, errno) == 0)
    306  1.17     lukem 			tried = 1;
    307  1.17     lukem 		else {
    308  1.17     lukem 			*cp = '\0';
    309  1.17     lukem 			return (-1);
    310  1.17     lukem 		}
    311  1.46  christos 	}
    312  1.45  christos 	return (int)num_read;
    313   1.6  christos }
    314   1.6  christos 
    315  1.40  christos /* read_pop():
    316  1.40  christos  *	Pop a macro from the stack
    317  1.40  christos  */
    318  1.40  christos private void
    319  1.40  christos read_pop(c_macro_t *ma)
    320  1.40  christos {
    321  1.40  christos 	int i;
    322  1.40  christos 
    323  1.40  christos 	el_free(ma->macro[0]);
    324  1.40  christos 	for (i = ma->level--; i > 0; i--)
    325  1.40  christos 		ma->macro[i - 1] = ma->macro[i];
    326  1.40  christos 	ma->offset = 0;
    327  1.40  christos }
    328   1.1       cgd 
    329   1.1       cgd /* el_getc():
    330   1.1       cgd  *	Read a character
    331   1.1       cgd  */
    332   1.1       cgd public int
    333  1.17     lukem el_getc(EditLine *el, char *cp)
    334   1.1       cgd {
    335  1.17     lukem 	int num_read;
    336  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    337   1.1       cgd 
    338  1.41  christos 	term__flush(el);
    339  1.17     lukem 	for (;;) {
    340  1.17     lukem 		if (ma->level < 0) {
    341  1.17     lukem 			if (!read_preread(el))
    342  1.17     lukem 				break;
    343  1.17     lukem 		}
    344  1.40  christos 
    345  1.17     lukem 		if (ma->level < 0)
    346  1.17     lukem 			break;
    347  1.12    simonb 
    348  1.40  christos 		if (ma->macro[0][ma->offset] == '\0') {
    349  1.40  christos 			read_pop(ma);
    350  1.17     lukem 			continue;
    351  1.17     lukem 		}
    352  1.40  christos 
    353  1.40  christos 		*cp = ma->macro[0][ma->offset++] & 0377;
    354  1.40  christos 
    355  1.40  christos 		if (ma->macro[0][ma->offset] == '\0') {
    356  1.30  christos 			/* Needed for QuoteMode On */
    357  1.40  christos 			read_pop(ma);
    358  1.17     lukem 		}
    359  1.40  christos 
    360  1.17     lukem 		return (1);
    361   1.1       cgd 	}
    362   1.1       cgd 
    363   1.1       cgd #ifdef DEBUG_READ
    364  1.17     lukem 	(void) fprintf(el->el_errfile, "Turning raw mode on\n");
    365   1.1       cgd #endif /* DEBUG_READ */
    366  1.17     lukem 	if (tty_rawmode(el) < 0)/* make sure the tty is set up correctly */
    367  1.17     lukem 		return (0);
    368   1.1       cgd 
    369   1.1       cgd #ifdef DEBUG_READ
    370  1.17     lukem 	(void) fprintf(el->el_errfile, "Reading a character\n");
    371   1.1       cgd #endif /* DEBUG_READ */
    372  1.20  christos 	num_read = (*el->el_read.read_char)(el, cp);
    373   1.1       cgd #ifdef DEBUG_READ
    374  1.17     lukem 	(void) fprintf(el->el_errfile, "Got it %c\n", *cp);
    375   1.1       cgd #endif /* DEBUG_READ */
    376  1.17     lukem 	return (num_read);
    377   1.1       cgd }
    378   1.1       cgd 
    379  1.28  christos protected void
    380  1.33  christos read_prepare(EditLine *el)
    381  1.28  christos {
    382  1.28  christos 	if (el->el_flags & HANDLE_SIGNALS)
    383  1.28  christos 		sig_set(el);
    384  1.28  christos 	if (el->el_flags & NO_TTY)
    385  1.28  christos 		return;
    386  1.28  christos 	if ((el->el_flags & (UNBUFFERED|EDIT_DISABLED)) == UNBUFFERED)
    387  1.28  christos 		tty_rawmode(el);
    388  1.28  christos 
    389  1.28  christos 	/* This is relatively cheap, and things go terribly wrong if
    390  1.28  christos 	   we have the wrong size. */
    391  1.28  christos 	el_resize(el);
    392  1.28  christos 	re_clear_display(el);	/* reset the display stuff */
    393  1.37  christos 	ch_reset(el, 0);
    394  1.28  christos 	re_refresh(el);		/* print the prompt */
    395  1.35  christos 
    396  1.35  christos 	if (el->el_flags & UNBUFFERED)
    397  1.41  christos 		term__flush(el);
    398  1.28  christos }
    399  1.28  christos 
    400  1.28  christos protected void
    401  1.28  christos read_finish(EditLine *el)
    402  1.28  christos {
    403  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0)
    404  1.28  christos 		(void) tty_cookedmode(el);
    405  1.28  christos 	if (el->el_flags & HANDLE_SIGNALS)
    406  1.28  christos 		sig_clr(el);
    407  1.28  christos }
    408   1.1       cgd 
    409   1.1       cgd public const char *
    410  1.17     lukem el_gets(EditLine *el, int *nread)
    411   1.1       cgd {
    412  1.17     lukem 	int retval;
    413  1.17     lukem 	el_action_t cmdnum = 0;
    414  1.17     lukem 	int num;		/* how many chars we have read at NL */
    415  1.17     lukem 	char ch;
    416  1.28  christos 	int crlf = 0;
    417  1.49  christos 	int nrb;
    418   1.8     lukem #ifdef FIONREAD
    419  1.17     lukem 	c_macro_t *ma = &el->el_chared.c_macro;
    420   1.8     lukem #endif /* FIONREAD */
    421   1.1       cgd 
    422  1.49  christos 	if (nread == NULL)
    423  1.49  christos 		nread = &nrb;
    424  1.49  christos 
    425  1.17     lukem 	if (el->el_flags & NO_TTY) {
    426  1.17     lukem 		char *cp = el->el_line.buffer;
    427  1.19  jdolecek 		size_t idx;
    428   1.6  christos 
    429  1.44  christos 		while ((num = (*el->el_read.read_char)(el, cp)) == 1) {
    430  1.19  jdolecek 			/* make sure there is space for next character */
    431  1.19  jdolecek 			if (cp + 1 >= el->el_line.limit) {
    432  1.19  jdolecek 				idx = (cp - el->el_line.buffer);
    433  1.19  jdolecek 				if (!ch_enlargebufs(el, 2))
    434  1.19  jdolecek 					break;
    435  1.19  jdolecek 				cp = &el->el_line.buffer[idx];
    436  1.19  jdolecek 			}
    437  1.17     lukem 			cp++;
    438  1.28  christos 			if (el->el_flags & UNBUFFERED)
    439  1.28  christos 				break;
    440  1.17     lukem 			if (cp[-1] == '\r' || cp[-1] == '\n')
    441  1.17     lukem 				break;
    442   1.6  christos 		}
    443  1.49  christos 		if (num == -1) {
    444  1.49  christos 			if (errno == EINTR)
    445  1.49  christos 				cp = el->el_line.buffer;
    446  1.49  christos 			el->el_errno = errno;
    447  1.49  christos 		}
    448  1.19  jdolecek 
    449  1.17     lukem 		el->el_line.cursor = el->el_line.lastchar = cp;
    450  1.17     lukem 		*cp = '\0';
    451  1.49  christos 		*nread = (int)(el->el_line.cursor - el->el_line.buffer);
    452  1.49  christos 		goto done;
    453   1.7  christos 	}
    454  1.22  christos 
    455   1.1       cgd 
    456   1.1       cgd #ifdef FIONREAD
    457  1.17     lukem 	if (el->el_tty.t_mode == EX_IO && ma->level < 0) {
    458  1.17     lukem 		long chrs = 0;
    459   1.1       cgd 
    460  1.17     lukem 		(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
    461  1.17     lukem 		if (chrs == 0) {
    462  1.17     lukem 			if (tty_rawmode(el) < 0) {
    463  1.49  christos 				errno = 0;
    464  1.49  christos 				*nread = 0;
    465  1.17     lukem 				return (NULL);
    466  1.17     lukem 			}
    467  1.17     lukem 		}
    468   1.1       cgd 	}
    469   1.1       cgd #endif /* FIONREAD */
    470   1.1       cgd 
    471  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0)
    472  1.28  christos 		read_prepare(el);
    473  1.13  sommerfe 
    474  1.17     lukem 	if (el->el_flags & EDIT_DISABLED) {
    475  1.34  christos 		char *cp;
    476  1.19  jdolecek 		size_t idx;
    477  1.44  christos 
    478  1.34  christos 		if ((el->el_flags & UNBUFFERED) == 0)
    479  1.34  christos 			cp = el->el_line.buffer;
    480  1.34  christos 		else
    481  1.34  christos 			cp = el->el_line.lastchar;
    482  1.13  sommerfe 
    483  1.41  christos 		term__flush(el);
    484  1.17     lukem 
    485  1.44  christos 		while ((num = (*el->el_read.read_char)(el, cp)) == 1) {
    486  1.19  jdolecek 			/* make sure there is space next character */
    487  1.19  jdolecek 			if (cp + 1 >= el->el_line.limit) {
    488  1.19  jdolecek 				idx = (cp - el->el_line.buffer);
    489  1.19  jdolecek 				if (!ch_enlargebufs(el, 2))
    490  1.19  jdolecek 					break;
    491  1.19  jdolecek 				cp = &el->el_line.buffer[idx];
    492  1.19  jdolecek 			}
    493  1.17     lukem 			cp++;
    494  1.28  christos 			crlf = cp[-1] == '\r' || cp[-1] == '\n';
    495  1.28  christos 			if (el->el_flags & UNBUFFERED)
    496  1.28  christos 				break;
    497  1.28  christos 			if (crlf)
    498  1.17     lukem 				break;
    499  1.19  jdolecek 		}
    500  1.49  christos 
    501  1.49  christos 		if (num == -1) {
    502  1.49  christos 			if (errno == EINTR)
    503  1.49  christos 				cp = el->el_line.buffer;
    504  1.49  christos 			el->el_errno = errno;
    505  1.49  christos 		}
    506  1.13  sommerfe 
    507  1.17     lukem 		el->el_line.cursor = el->el_line.lastchar = cp;
    508  1.17     lukem 		*cp = '\0';
    509  1.49  christos 		goto done;
    510  1.13  sommerfe 	}
    511  1.22  christos 
    512  1.17     lukem 	for (num = OKCMD; num == OKCMD;) {	/* while still editing this
    513  1.17     lukem 						 * line */
    514   1.1       cgd #ifdef DEBUG_EDIT
    515  1.17     lukem 		read_debug(el);
    516   1.1       cgd #endif /* DEBUG_EDIT */
    517  1.17     lukem 		/* if EOF or error */
    518  1.17     lukem 		if ((num = read_getcmd(el, &cmdnum, &ch)) != OKCMD) {
    519   1.1       cgd #ifdef DEBUG_READ
    520  1.17     lukem 			(void) fprintf(el->el_errfile,
    521  1.17     lukem 			    "Returning from el_gets %d\n", num);
    522   1.1       cgd #endif /* DEBUG_READ */
    523  1.17     lukem 			break;
    524  1.17     lukem 		}
    525  1.44  christos 		if (el->el_errno == EINTR) {
    526  1.44  christos 			el->el_line.buffer[0] = '\0';
    527  1.44  christos 			el->el_line.lastchar =
    528  1.44  christos 			    el->el_line.cursor = el->el_line.buffer;
    529  1.44  christos 			break;
    530  1.44  christos 		}
    531  1.42     lukem 		if ((unsigned int)cmdnum >= (unsigned int)el->el_map.nfunc) {	/* BUG CHECK command */
    532   1.1       cgd #ifdef DEBUG_EDIT
    533  1.17     lukem 			(void) fprintf(el->el_errfile,
    534  1.17     lukem 			    "ERROR: illegal command from key 0%o\r\n", ch);
    535   1.1       cgd #endif /* DEBUG_EDIT */
    536  1.17     lukem 			continue;	/* try again */
    537  1.17     lukem 		}
    538  1.17     lukem 		/* now do the real command */
    539   1.1       cgd #ifdef DEBUG_READ
    540  1.17     lukem 		{
    541  1.17     lukem 			el_bindings_t *b;
    542  1.17     lukem 			for (b = el->el_map.help; b->name; b++)
    543  1.17     lukem 				if (b->func == cmdnum)
    544  1.17     lukem 					break;
    545  1.17     lukem 			if (b->name)
    546  1.17     lukem 				(void) fprintf(el->el_errfile,
    547  1.17     lukem 				    "Executing %s\n", b->name);
    548  1.17     lukem 			else
    549  1.17     lukem 				(void) fprintf(el->el_errfile,
    550  1.17     lukem 				    "Error command = %d\n", cmdnum);
    551  1.17     lukem 		}
    552   1.1       cgd #endif /* DEBUG_READ */
    553  1.23  christos 		/* vi redo needs these way down the levels... */
    554  1.23  christos 		el->el_state.thiscmd = cmdnum;
    555  1.23  christos 		el->el_state.thisch = ch;
    556  1.23  christos 		if (el->el_map.type == MAP_VI &&
    557  1.23  christos 		    el->el_map.current == el->el_map.key &&
    558  1.23  christos 		    el->el_chared.c_redo.pos < el->el_chared.c_redo.lim) {
    559  1.23  christos 			if (cmdnum == VI_DELETE_PREV_CHAR &&
    560  1.23  christos 			    el->el_chared.c_redo.pos != el->el_chared.c_redo.buf
    561  1.31  christos 			    && isprint((unsigned char)el->el_chared.c_redo.pos[-1]))
    562  1.23  christos 				el->el_chared.c_redo.pos--;
    563  1.23  christos 			else
    564  1.23  christos 				*el->el_chared.c_redo.pos++ = ch;
    565  1.23  christos 		}
    566  1.17     lukem 		retval = (*el->el_map.func[cmdnum]) (el, ch);
    567  1.22  christos #ifdef DEBUG_READ
    568  1.22  christos 		(void) fprintf(el->el_errfile,
    569  1.22  christos 			"Returned state %d\n", retval );
    570  1.22  christos #endif /* DEBUG_READ */
    571  1.17     lukem 
    572  1.17     lukem 		/* save the last command here */
    573  1.17     lukem 		el->el_state.lastcmd = cmdnum;
    574   1.1       cgd 
    575  1.17     lukem 		/* use any return value */
    576  1.17     lukem 		switch (retval) {
    577  1.17     lukem 		case CC_CURSOR:
    578  1.17     lukem 			re_refresh_cursor(el);
    579  1.17     lukem 			break;
    580  1.17     lukem 
    581  1.17     lukem 		case CC_REDISPLAY:
    582  1.17     lukem 			re_clear_lines(el);
    583  1.17     lukem 			re_clear_display(el);
    584  1.17     lukem 			/* FALLTHROUGH */
    585  1.17     lukem 
    586  1.17     lukem 		case CC_REFRESH:
    587  1.17     lukem 			re_refresh(el);
    588  1.17     lukem 			break;
    589  1.17     lukem 
    590  1.17     lukem 		case CC_REFRESH_BEEP:
    591  1.17     lukem 			re_refresh(el);
    592  1.17     lukem 			term_beep(el);
    593  1.17     lukem 			break;
    594  1.17     lukem 
    595  1.17     lukem 		case CC_NORM:	/* normal char */
    596  1.17     lukem 			break;
    597   1.1       cgd 
    598  1.17     lukem 		case CC_ARGHACK:	/* Suggested by Rich Salz */
    599  1.17     lukem 			/* <rsalz (at) pineapple.bbn.com> */
    600  1.23  christos 			continue;	/* keep going... */
    601   1.1       cgd 
    602  1.17     lukem 		case CC_EOF:	/* end of file typed */
    603  1.29  christos 			if ((el->el_flags & UNBUFFERED) == 0)
    604  1.29  christos 				num = 0;
    605  1.29  christos 			else if (num == -1) {
    606  1.31  christos 				*el->el_line.lastchar++ = CONTROL('d');
    607  1.29  christos 				el->el_line.cursor = el->el_line.lastchar;
    608  1.29  christos 				num = 1;
    609  1.29  christos 			}
    610  1.17     lukem 			break;
    611  1.17     lukem 
    612  1.17     lukem 		case CC_NEWLINE:	/* normal end of line */
    613  1.45  christos 			num = (int)(el->el_line.lastchar - el->el_line.buffer);
    614  1.17     lukem 			break;
    615  1.17     lukem 
    616  1.17     lukem 		case CC_FATAL:	/* fatal error, reset to known state */
    617   1.1       cgd #ifdef DEBUG_READ
    618  1.17     lukem 			(void) fprintf(el->el_errfile,
    619  1.17     lukem 			    "*** editor fatal ERROR ***\r\n\n");
    620   1.1       cgd #endif /* DEBUG_READ */
    621  1.17     lukem 			/* put (real) cursor in a known place */
    622  1.17     lukem 			re_clear_display(el);	/* reset the display stuff */
    623  1.39  christos 			ch_reset(el, 1);	/* reset the input pointers */
    624  1.17     lukem 			re_refresh(el);	/* print the prompt again */
    625  1.17     lukem 			break;
    626   1.1       cgd 
    627  1.17     lukem 		case CC_ERROR:
    628  1.17     lukem 		default:	/* functions we don't know about */
    629   1.1       cgd #ifdef DEBUG_READ
    630  1.17     lukem 			(void) fprintf(el->el_errfile,
    631  1.17     lukem 			    "*** editor ERROR ***\r\n\n");
    632   1.1       cgd #endif /* DEBUG_READ */
    633  1.17     lukem 			term_beep(el);
    634  1.41  christos 			term__flush(el);
    635  1.17     lukem 			break;
    636  1.17     lukem 		}
    637  1.23  christos 		el->el_state.argument = 1;
    638  1.23  christos 		el->el_state.doingarg = 0;
    639  1.23  christos 		el->el_chared.c_vcmd.action = NOP;
    640  1.28  christos 		if (el->el_flags & UNBUFFERED)
    641  1.28  christos 			break;
    642   1.1       cgd 	}
    643   1.1       cgd 
    644  1.41  christos 	term__flush(el);		/* flush any buffered output */
    645  1.22  christos 	/* make sure the tty is set up correctly */
    646  1.28  christos 	if ((el->el_flags & UNBUFFERED) == 0) {
    647  1.28  christos 		read_finish(el);
    648  1.49  christos 		*nread = num != -1 ? num : 0;
    649  1.28  christos 	} else {
    650  1.49  christos 		*nread = (int)(el->el_line.lastchar - el->el_line.buffer);
    651  1.28  christos 	}
    652  1.49  christos done:
    653  1.49  christos 	if (*nread == 0) {
    654  1.49  christos 		if (num == -1) {
    655  1.49  christos 			*nread = -1;
    656  1.49  christos 			errno = el->el_errno;
    657  1.49  christos 		}
    658  1.49  christos 		return NULL;
    659  1.49  christos 	} else
    660  1.49  christos 		return el->el_line.buffer;
    661   1.1       cgd }
    662