1 /* $NetBSD: cl_read.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: cl_read.c,v 10.29 2001/08/18 21:51:59 skimo Exp (Berkeley) Date: 2001/08/18 21:51:59 ";
19 __RCSID("$NetBSD: cl_read.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
24 #ifdef HAVE_SYS_SELECT_H
25 #include <sys/select.h>
29 #include <bitstring.h>
39 #include "../common/common.h"
40 #include "../ex/script.h"
43 /* Pollution by Solaris curses. */
47 static input_t cl_read
__P((SCR
*,
48 u_int32_t
, char *, size_t, int *, struct timeval
*));
49 static int cl_resize
__P((SCR
*, size_t, size_t));
53 * Return a single event.
55 * PUBLIC: int cl_event __P((SCR *, EVENT *, u_int32_t, int));
58 cl_event(SCR
*sp
, EVENT
*evp
, u_int32_t flags
, int ms
)
60 struct timeval t
, *tp
;
62 size_t lines
, columns
;
69 * Queue signal based events. We never clear SIGHUP or SIGTERM events,
70 * so that we just keep returning them until the editor dies.
73 retest
: if (LF_ISSET(EC_INTERRUPT
) || F_ISSET(clp
, CL_SIGINT
)) {
74 if (F_ISSET(clp
, CL_SIGINT
)) {
75 F_CLR(clp
, CL_SIGINT
);
76 evp
->e_event
= E_INTERRUPT
;
78 evp
->e_event
= E_TIMEOUT
;
81 if (F_ISSET(clp
, CL_SIGHUP
| CL_SIGTERM
| CL_SIGWINCH
)) {
82 if (F_ISSET(clp
, CL_SIGHUP
)) {
83 evp
->e_event
= E_SIGHUP
;
86 if (F_ISSET(clp
, CL_SIGTERM
)) {
87 evp
->e_event
= E_SIGTERM
;
90 if (F_ISSET(clp
, CL_SIGWINCH
)) {
91 F_CLR(clp
, CL_SIGWINCH
);
92 if (cl_ssize(sp
, 1, &lines
, &columns
, &changed
))
95 (void)cl_resize(sp
, lines
, columns
);
96 evp
->e_event
= E_WRESIZE
;
99 /* No real change, ignore the signal. */
107 t
.tv_sec
= ms
/ 1000;
108 t
.tv_usec
= (ms
% 1000) * 1000;
112 /* Read input characters. */
114 switch (cl_read(sp
, LF_ISSET(EC_QUOTED
| EC_RAW
),
115 clp
->ibuf
+ clp
->skip
, SIZE(clp
->ibuf
) - clp
->skip
, &nr
, tp
)) {
117 rc
= INPUT2INT5(sp
, clp
->cw
, clp
->ibuf
, nr
+ clp
->skip
,
119 evp
->e_csp
= __UNCONST(wp
);
121 evp
->e_event
= E_STRING
;
124 memmove(clp
->ibuf
, clp
->ibuf
+ nr
+ clp
->skip
- n
, n
);
131 msgq(sp
, M_ERR
, "323|Invalid input. Truncated.");
134 evp
->e_event
= E_ERR
;
137 evp
->e_event
= E_EOF
;
142 evp
->e_event
= E_TIMEOUT
;
152 * Read characters from the input.
155 cl_read(SCR
*sp
, u_int32_t flags
, char *bp
, size_t blen
, int *nrp
, struct timeval
*tp
)
157 struct termios term1
, term2
;
163 int maxfd
, nr
, term_reset
;
170 * 1: A read from a file or a pipe. In this case, the reads
171 * never timeout regardless. This means that we can hang
172 * when trying to complete a map, but we're going to hang
173 * on the next read anyway.
175 if (!F_ISSET(clp
, CL_STDIN_TTY
)) {
176 switch (nr
= read(STDIN_FILENO
, bp
, blen
)) {
189 * 2: A read with an associated timeout, e.g., trying to complete
190 * a map sequence. If input exists, we fall into #3.
196 FD_SET(STDIN_FILENO
, &rdfd
);
197 switch (select(STDIN_FILENO
+ 1,
198 &rdfd
, NULL
, NULL
, tp
== NULL
? &poll
: tp
)) {
200 return (INP_TIMEOUT
);
209 * The user can enter a key in the editor to quote a character. If we
210 * get here and the next key is supposed to be quoted, do what we can.
211 * Reset the tty so that the user can enter a ^C, ^Q, ^S. There's an
212 * obvious race here, when the key has already been entered, but there's
213 * nothing that we can do to fix that problem.
215 * The editor can ask for the next literal character even thought it's
216 * generally running in line-at-a-time mode. Do what we can.
218 if (LF_ISSET(EC_QUOTED
| EC_RAW
) && !tcgetattr(STDIN_FILENO
, &term1
)) {
220 if (LF_ISSET(EC_QUOTED
)) {
222 term2
.c_lflag
&= ~ISIG
;
223 term2
.c_iflag
&= ~(IXON
| IXOFF
);
224 (void)tcsetattr(STDIN_FILENO
,
225 TCSASOFT
| TCSADRAIN
, &term2
);
227 (void)tcsetattr(STDIN_FILENO
,
228 TCSASOFT
| TCSADRAIN
, &clp
->vi_enter
);
234 * Select on the command input and scripting window file descriptors.
235 * It's ugly that we wait on scripting file descriptors here, but it's
236 * the only way to keep from locking out scripting windows.
238 if (F_ISSET(gp
, G_SCRWIN
)) {
240 FD_SET(STDIN_FILENO
, &rdfd
);
241 maxfd
= STDIN_FILENO
;
242 if (sscr_check_input(sp
, &rdfd
, maxfd
))
250 * What's going on here is some scary stuff. Ex runs the terminal in
251 * canonical mode. So, the <newline> character terminating a line of
252 * input is returned in the buffer, but a trailing <EOF> character is
253 * not similarly included. As ex uses 0<EOF> and ^<EOF> as autoindent
254 * commands, it has to see the trailing <EOF> characters to determine
255 * the difference between the user entering "0ab" and "0<EOF>ab". We
256 * leave an extra slot in the buffer, so that we can add a trailing
257 * <EOF> character if the buffer isn't terminated by a <newline>. We
258 * lose if the buffer is too small for the line and exactly N characters
259 * are entered followed by an <EOF> character.
261 #define ONE_FOR_EOF 1
262 switch (nr
= read(STDIN_FILENO
, bp
, blen
- ONE_FOR_EOF
)) {
265 * ^D in canonical mode returns a read of 0, i.e. EOF. EOF is
266 * a valid command, but we don't want to loop forever because
267 * the terminal driver is returning EOF because the user has
268 * disconnected. The editor will almost certainly try to write
269 * something before this fires, which should kill us, but You
272 if (++clp
->eof_count
< 50) {
273 bp
[0] = clp
->orig
.c_cc
[VEOF
];
280 case -1: /* Error or interrupt. */
281 err
: if (errno
== EINTR
)
285 msgq(sp
, M_SYSERR
, "input");
288 default: /* Input characters. */
289 if (F_ISSET(sp
, SC_EX
) && bp
[nr
- 1] != '\n')
290 bp
[nr
++] = clp
->orig
.c_cc
[VEOF
];
297 /* Restore the terminal state if it was modified. */
299 (void)tcsetattr(STDIN_FILENO
, TCSASOFT
| TCSADRAIN
, &term1
);
305 * Reset the options for a resize event.
308 cl_resize(SCR
*sp
, size_t lines
, size_t columns
)
312 rval
= api_opts_set(sp
, L("lines"), NULL
, lines
, 0);
313 if (api_opts_set(sp
, L("columns"), NULL
, columns
, 0))