1994-05-27 05:00:24 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Christos Zoulas of Cornell University.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2001-10-01 08:41:27 +00:00
|
|
|
*
|
|
|
|
* $NetBSD: read.c,v 1.18 2000/11/11 22:18:58 christos Exp $
|
1994-05-27 05:00:24 +00:00
|
|
|
*/
|
|
|
|
|
2000-05-22 06:01:31 +00:00
|
|
|
#if !defined(lint) && !defined(SCCSID)
|
1994-05-27 05:00:24 +00:00
|
|
|
static char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/4/93";
|
2000-05-22 06:01:31 +00:00
|
|
|
#endif /* not lint && not SCCSID */
|
2001-10-01 08:41:27 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
/*
|
|
|
|
* read.c: Clean this junk up! This is horrible code.
|
|
|
|
* Terminal read functions
|
|
|
|
*/
|
|
|
|
#include "sys.h"
|
2000-05-22 05:49:31 +00:00
|
|
|
#include <errno.h>
|
2000-10-02 22:07:53 +00:00
|
|
|
#include <fcntl.h>
|
1994-05-27 05:00:24 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "el.h"
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
#define OKCMD -1
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
private int read__fixio(int, int);
|
|
|
|
private int read_preread(EditLine *);
|
|
|
|
private int read_getcmd(EditLine *, el_action_t *, char *);
|
|
|
|
private int read_char(EditLine *, char *);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_EDIT
|
|
|
|
private void
|
2001-10-01 08:41:27 +00:00
|
|
|
read_debug(EditLine *el)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
if (el->el_line.cursor > el->el_line.lastchar)
|
|
|
|
(void) fprintf(el->el_errfile, "cursor > lastchar\r\n");
|
|
|
|
if (el->el_line.cursor < el->el_line.buffer)
|
|
|
|
(void) fprintf(el->el_errfile, "cursor < buffer\r\n");
|
|
|
|
if (el->el_line.cursor > el->el_line.limit)
|
|
|
|
(void) fprintf(el->el_errfile, "cursor > limit\r\n");
|
|
|
|
if (el->el_line.lastchar > el->el_line.limit)
|
|
|
|
(void) fprintf(el->el_errfile, "lastchar > limit\r\n");
|
|
|
|
if (el->el_line.limit != &el->el_line.buffer[EL_BUFSIZ - 2])
|
|
|
|
(void) fprintf(el->el_errfile, "limit != &buffer[EL_BUFSIZ-2]\r\n");
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
#endif /* DEBUG_EDIT */
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
/* read__fixio():
|
|
|
|
* Try to recover from a read error
|
|
|
|
*/
|
2001-10-01 08:41:27 +00:00
|
|
|
/* ARGSUSED */
|
1994-05-27 05:00:24 +00:00
|
|
|
private int
|
2001-10-01 08:41:27 +00:00
|
|
|
read__fixio(int fd, int e)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
|
|
|
|
switch (e) {
|
|
|
|
case -1: /* Make sure that the code is reachable */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#ifdef EWOULDBLOCK
|
2001-10-01 08:41:27 +00:00
|
|
|
case EWOULDBLOCK:
|
|
|
|
#ifndef TRY_AGAIN
|
|
|
|
#define TRY_AGAIN
|
|
|
|
#endif
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* EWOULDBLOCK */
|
|
|
|
|
|
|
|
#if defined(POSIX) && defined(EAGAIN)
|
2001-10-01 08:41:27 +00:00
|
|
|
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
|
|
|
|
case EAGAIN:
|
|
|
|
#ifndef TRY_AGAIN
|
|
|
|
#define TRY_AGAIN
|
|
|
|
#endif
|
|
|
|
#endif /* EWOULDBLOCK && EWOULDBLOCK != EAGAIN */
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* POSIX && EAGAIN */
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
e = 0;
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef TRY_AGAIN
|
2001-10-01 08:41:27 +00:00
|
|
|
#if defined(F_SETFL) && defined(O_NDELAY)
|
|
|
|
if ((e = fcntl(fd, F_GETFL, 0)) == -1)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (fcntl(fd, F_SETFL, e & ~O_NDELAY) == -1)
|
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
e = 1;
|
|
|
|
#endif /* F_SETFL && O_NDELAY */
|
|
|
|
|
|
|
|
#ifdef FIONBIO
|
|
|
|
{
|
|
|
|
int zero = 0;
|
|
|
|
|
|
|
|
if (ioctl(fd, FIONBIO, (ioctl_t) & zero) == -1)
|
|
|
|
return (-1);
|
|
|
|
else
|
|
|
|
e = 1;
|
|
|
|
}
|
|
|
|
#endif /* FIONBIO */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#endif /* TRY_AGAIN */
|
2001-10-01 08:41:27 +00:00
|
|
|
return (e ? 0 : -1);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
case EINTR:
|
|
|
|
return (0);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
default:
|
|
|
|
return (-1);
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read_preread():
|
|
|
|
* Try to read the stuff in the input queue;
|
|
|
|
*/
|
|
|
|
private int
|
2001-10-01 08:41:27 +00:00
|
|
|
read_preread(EditLine *el)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
int chrs = 0;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
if (el->el_chared.c_macro.nline) {
|
|
|
|
el_free((ptr_t) el->el_chared.c_macro.nline);
|
|
|
|
el->el_chared.c_macro.nline = NULL;
|
|
|
|
}
|
|
|
|
if (el->el_tty.t_mode == ED_IO)
|
|
|
|
return (0);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#ifdef FIONREAD
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
|
1994-05-27 05:00:24 +00:00
|
|
|
if (chrs > 0) {
|
2001-10-01 08:41:27 +00:00
|
|
|
char buf[EL_BUFSIZ];
|
|
|
|
|
|
|
|
chrs = read(el->el_infd, buf,
|
|
|
|
(size_t) MIN(chrs, EL_BUFSIZ - 1));
|
|
|
|
if (chrs > 0) {
|
|
|
|
buf[chrs] = '\0';
|
|
|
|
el->el_chared.c_macro.nline = strdup(buf);
|
|
|
|
el_push(el, el->el_chared.c_macro.nline);
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
2001-10-01 08:41:27 +00:00
|
|
|
#endif /* FIONREAD */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
return (chrs > 0);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* el_push():
|
|
|
|
* Push a macro
|
|
|
|
*/
|
|
|
|
public void
|
2001-10-01 08:41:27 +00:00
|
|
|
el_push(EditLine *el, const char *str)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
c_macro_t *ma = &el->el_chared.c_macro;
|
|
|
|
|
|
|
|
if (str != NULL && ma->level + 1 < EL_MAXMACRO) {
|
|
|
|
ma->level++;
|
|
|
|
/* LINTED const cast */
|
|
|
|
ma->macro[ma->level] = (char *) str;
|
|
|
|
} else {
|
|
|
|
term_beep(el);
|
|
|
|
term__flush();
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read_getcmd():
|
|
|
|
* Return next command from the input stream.
|
|
|
|
*/
|
|
|
|
private int
|
2001-10-01 08:41:27 +00:00
|
|
|
read_getcmd(EditLine *el, el_action_t *cmdnum, char *ch)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
el_action_t cmd = ED_UNASSIGNED;
|
|
|
|
int num;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
while (cmd == ED_UNASSIGNED || cmd == ED_SEQUENCE_LEAD_IN) {
|
|
|
|
if ((num = el_getc(el, ch)) != 1) /* if EOF or error */
|
|
|
|
return (num);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#ifdef KANJI
|
2001-10-01 08:41:27 +00:00
|
|
|
if ((*ch & 0200)) {
|
|
|
|
el->el_state.metanext = 0;
|
|
|
|
cmd = CcViMap[' '];
|
|
|
|
break;
|
|
|
|
} else
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* KANJI */
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
if (el->el_state.metanext) {
|
|
|
|
el->el_state.metanext = 0;
|
|
|
|
*ch |= 0200;
|
|
|
|
}
|
|
|
|
cmd = el->el_map.current[(unsigned char) *ch];
|
|
|
|
if (cmd == ED_SEQUENCE_LEAD_IN) {
|
|
|
|
key_value_t val;
|
|
|
|
switch (key_get(el, ch, &val)) {
|
|
|
|
case XK_CMD:
|
|
|
|
cmd = val.cmd;
|
|
|
|
break;
|
|
|
|
case XK_STR:
|
|
|
|
el_push(el, val.str);
|
|
|
|
break;
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef notyet
|
2001-10-01 08:41:27 +00:00
|
|
|
case XK_EXE:
|
|
|
|
/* XXX: In the future to run a user function */
|
|
|
|
RunCommand(val.str);
|
|
|
|
break;
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif
|
2001-10-01 08:41:27 +00:00
|
|
|
default:
|
|
|
|
EL_ABORT((el->el_errfile, "Bad XK_ type \n"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (el->el_map.alt == NULL)
|
|
|
|
el->el_map.current = el->el_map.key;
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
2001-10-01 08:41:27 +00:00
|
|
|
*cmdnum = cmd;
|
|
|
|
return (OKCMD);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read_char():
|
|
|
|
* Read a character from the tty.
|
|
|
|
*/
|
|
|
|
private int
|
|
|
|
read_char(EditLine *el, char *cp)
|
|
|
|
{
|
|
|
|
int num_read;
|
|
|
|
int tried = 0;
|
|
|
|
|
|
|
|
while ((num_read = read(el->el_infd, cp, 1)) == -1)
|
|
|
|
if (!tried && read__fixio(el->el_infd, errno) == 0)
|
|
|
|
tried = 1;
|
|
|
|
else {
|
|
|
|
*cp = '\0';
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (num_read);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* el_getc():
|
|
|
|
* Read a character
|
|
|
|
*/
|
|
|
|
public int
|
2001-10-01 08:41:27 +00:00
|
|
|
el_getc(EditLine *el, char *cp)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
int num_read;
|
|
|
|
c_macro_t *ma = &el->el_chared.c_macro;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
term__flush();
|
|
|
|
for (;;) {
|
|
|
|
if (ma->level < 0) {
|
|
|
|
if (!read_preread(el))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ma->level < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (*ma->macro[ma->level] == 0) {
|
|
|
|
ma->level--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*cp = *ma->macro[ma->level]++ & 0377;
|
|
|
|
if (*ma->macro[ma->level] == 0) { /* Needed for QuoteMode
|
|
|
|
* On */
|
|
|
|
ma->level--;
|
|
|
|
}
|
|
|
|
return (1);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile, "Turning raw mode on\n");
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
if (tty_rawmode(el) < 0)/* make sure the tty is set up correctly */
|
|
|
|
return (0);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile, "Reading a character\n");
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
num_read = read_char(el, cp);
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile, "Got it %c\n", *cp);
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
return (num_read);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public const char *
|
2001-10-01 08:41:27 +00:00
|
|
|
el_gets(EditLine *el, int *nread)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2001-10-01 08:41:27 +00:00
|
|
|
int retval;
|
|
|
|
el_action_t cmdnum = 0;
|
|
|
|
int num; /* how many chars we have read at NL */
|
|
|
|
char ch;
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef FIONREAD
|
2001-10-01 08:41:27 +00:00
|
|
|
c_macro_t *ma = &el->el_chared.c_macro;
|
|
|
|
#endif /* FIONREAD */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
if (el->el_flags & HANDLE_SIGNALS)
|
|
|
|
sig_set(el);
|
|
|
|
|
|
|
|
if (el->el_flags & NO_TTY) {
|
|
|
|
char *cp = el->el_line.buffer;
|
|
|
|
size_t idx;
|
|
|
|
|
|
|
|
while (read_char(el, cp) == 1) {
|
|
|
|
/* make sure there is space for next character */
|
|
|
|
if (cp + 1 >= el->el_line.limit) {
|
|
|
|
idx = (cp - el->el_line.buffer);
|
|
|
|
if (!ch_enlargebufs(el, 2))
|
|
|
|
break;
|
|
|
|
cp = &el->el_line.buffer[idx];
|
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
if (cp[-1] == '\r' || cp[-1] == '\n')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
el->el_line.cursor = el->el_line.lastchar = cp;
|
|
|
|
*cp = '\0';
|
1994-05-27 05:00:24 +00:00
|
|
|
if (nread)
|
2001-10-01 08:41:27 +00:00
|
|
|
*nread = el->el_line.cursor - el->el_line.buffer;
|
|
|
|
return (el->el_line.buffer);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
2001-10-01 08:41:27 +00:00
|
|
|
re_clear_display(el); /* reset the display stuff */
|
|
|
|
ch_reset(el);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
#ifdef FIONREAD
|
|
|
|
if (el->el_tty.t_mode == EX_IO && ma->level < 0) {
|
|
|
|
long chrs = 0;
|
|
|
|
|
|
|
|
(void) ioctl(el->el_infd, FIONREAD, (ioctl_t) & chrs);
|
|
|
|
if (chrs == 0) {
|
|
|
|
if (tty_rawmode(el) < 0) {
|
|
|
|
if (nread)
|
|
|
|
*nread = 0;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* FIONREAD */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
re_refresh(el); /* print the prompt */
|
|
|
|
|
|
|
|
if (el->el_flags & EDIT_DISABLED) {
|
|
|
|
char *cp = el->el_line.buffer;
|
|
|
|
size_t idx;
|
|
|
|
|
|
|
|
term__flush();
|
|
|
|
|
|
|
|
while (read_char(el, cp) == 1) {
|
|
|
|
/* make sure there is space next character */
|
|
|
|
if (cp + 1 >= el->el_line.limit) {
|
|
|
|
idx = (cp - el->el_line.buffer);
|
|
|
|
if (!ch_enlargebufs(el, 2))
|
|
|
|
break;
|
|
|
|
cp = &el->el_line.buffer[idx];
|
|
|
|
}
|
|
|
|
cp++;
|
|
|
|
if (cp[-1] == '\r' || cp[-1] == '\n')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
el->el_line.cursor = el->el_line.lastchar = cp;
|
|
|
|
*cp = '\0';
|
|
|
|
if (nread)
|
|
|
|
*nread = el->el_line.cursor - el->el_line.buffer;
|
|
|
|
return (el->el_line.buffer);
|
|
|
|
}
|
|
|
|
for (num = OKCMD; num == OKCMD;) { /* while still editing this
|
|
|
|
* line */
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_EDIT
|
2001-10-01 08:41:27 +00:00
|
|
|
read_debug(el);
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_EDIT */
|
2001-10-01 08:41:27 +00:00
|
|
|
/* if EOF or error */
|
|
|
|
if ((num = read_getcmd(el, &cmdnum, &ch)) != OKCMD) {
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"Returning from el_gets %d\n", num);
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((int) cmdnum >= el->el_map.nfunc) { /* BUG CHECK command */
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_EDIT
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"ERROR: illegal command from key 0%o\r\n", ch);
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_EDIT */
|
2001-10-01 08:41:27 +00:00
|
|
|
continue; /* try again */
|
|
|
|
}
|
|
|
|
/* now do the real command */
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
{
|
|
|
|
el_bindings_t *b;
|
|
|
|
for (b = el->el_map.help; b->name; b++)
|
|
|
|
if (b->func == cmdnum)
|
|
|
|
break;
|
|
|
|
if (b->name)
|
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"Executing %s\n", b->name);
|
|
|
|
else
|
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"Error command = %d\n", cmdnum);
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
retval = (*el->el_map.func[cmdnum]) (el, ch);
|
|
|
|
|
|
|
|
/* save the last command here */
|
|
|
|
el->el_state.lastcmd = cmdnum;
|
|
|
|
|
|
|
|
/* use any return value */
|
|
|
|
switch (retval) {
|
|
|
|
case CC_CURSOR:
|
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
re_refresh_cursor(el);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_REDISPLAY:
|
|
|
|
re_clear_lines(el);
|
|
|
|
re_clear_display(el);
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
case CC_REFRESH:
|
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
re_refresh(el);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_REFRESH_BEEP:
|
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
re_refresh(el);
|
|
|
|
term_beep(el);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_NORM: /* normal char */
|
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_ARGHACK: /* Suggested by Rich Salz */
|
|
|
|
/* <rsalz@pineapple.bbn.com> */
|
|
|
|
break; /* keep going... */
|
|
|
|
|
|
|
|
case CC_EOF: /* end of file typed */
|
|
|
|
num = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_NEWLINE: /* normal end of line */
|
|
|
|
num = el->el_line.lastchar - el->el_line.buffer;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_FATAL: /* fatal error, reset to known state */
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"*** editor fatal ERROR ***\r\n\n");
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
/* put (real) cursor in a known place */
|
|
|
|
re_clear_display(el); /* reset the display stuff */
|
|
|
|
ch_reset(el); /* reset the input pointers */
|
|
|
|
re_refresh(el); /* print the prompt again */
|
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CC_ERROR:
|
|
|
|
default: /* functions we don't know about */
|
1994-05-27 05:00:24 +00:00
|
|
|
#ifdef DEBUG_READ
|
2001-10-01 08:41:27 +00:00
|
|
|
(void) fprintf(el->el_errfile,
|
|
|
|
"*** editor ERROR ***\r\n\n");
|
1994-05-27 05:00:24 +00:00
|
|
|
#endif /* DEBUG_READ */
|
2001-10-01 08:41:27 +00:00
|
|
|
el->el_state.argument = 1;
|
|
|
|
el->el_state.doingarg = 0;
|
|
|
|
term_beep(el);
|
|
|
|
term__flush();
|
|
|
|
break;
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
2001-10-01 08:41:27 +00:00
|
|
|
|
|
|
|
term__flush(); /* flush any buffered output */
|
|
|
|
/* make sure the tty is set up correctly */
|
|
|
|
(void) tty_cookedmode(el);
|
|
|
|
if (el->el_flags & HANDLE_SIGNALS)
|
|
|
|
sig_clr(el);
|
|
|
|
if (nread)
|
|
|
|
*nread = num;
|
|
|
|
return (num ? el->el_line.buffer : NULL);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|