2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
12 #include <sys/types.h>
13 #include <sys/queue.h>
14 #include <sys/select.h>
16 #include <bitstring.h>
23 #include <sys/ioctl.h>
27 #include "../common/common.h"
28 #include "../ex/script.h"
31 /* Pollution by Solaris curses. */
35 static input_t
cl_read(SCR
*,
36 u_int32_t
, char *, size_t, int *, struct timeval
*);
37 static int cl_resize(SCR
*, size_t, size_t);
41 * Return a single event.
43 * PUBLIC: int cl_event(SCR *, EVENT *, u_int32_t, int);
46 cl_event(SCR
*sp
, EVENT
*evp
, u_int32_t flags
, int ms
)
48 struct timeval t
, *tp
;
50 size_t lines
, columns
;
57 * Queue signal based events. We never clear SIGHUP or SIGTERM events,
58 * so that we just keep returning them until the editor dies.
61 retest
: if (LF_ISSET(EC_INTERRUPT
) || F_ISSET(clp
, CL_SIGINT
)) {
62 if (F_ISSET(clp
, CL_SIGINT
)) {
63 F_CLR(clp
, CL_SIGINT
);
64 evp
->e_event
= E_INTERRUPT
;
66 evp
->e_event
= E_TIMEOUT
;
69 if (F_ISSET(clp
, CL_SIGHUP
| CL_SIGTERM
| CL_SIGWINCH
)) {
70 if (F_ISSET(clp
, CL_SIGHUP
)) {
71 evp
->e_event
= E_SIGHUP
;
74 if (F_ISSET(clp
, CL_SIGTERM
)) {
75 evp
->e_event
= E_SIGTERM
;
78 if (F_ISSET(clp
, CL_SIGWINCH
)) {
79 F_CLR(clp
, CL_SIGWINCH
);
80 if (cl_ssize(sp
, 1, &lines
, &columns
, &changed
))
83 (void)cl_resize(sp
, lines
, columns
);
84 evp
->e_event
= E_WRESIZE
;
87 /* No real change, ignore the signal. */
96 t
.tv_usec
= (ms
% 1000) * 1000;
100 /* Read input characters. */
102 switch (cl_read(sp
, LF_ISSET(EC_QUOTED
| EC_RAW
),
103 clp
->ibuf
+ clp
->skip
, SIZE(clp
->ibuf
) - clp
->skip
, &nr
, tp
)) {
105 rc
= INPUT2INT5(sp
, clp
->cw
, clp
->ibuf
, nr
+ clp
->skip
,
109 evp
->e_event
= E_STRING
;
112 memmove(clp
->ibuf
, clp
->ibuf
+ nr
+ clp
->skip
- n
, n
);
119 msgq(sp
, M_ERR
, "323|Invalid input. Truncated.");
122 evp
->e_event
= E_EOF
;
125 evp
->e_event
= E_ERR
;
130 evp
->e_event
= E_TIMEOUT
;
140 * Read characters from the input.
143 cl_read(SCR
*sp
, u_int32_t flags
, char *bp
, size_t blen
, int *nrp
,
146 struct termios term1
, term2
;
151 int maxfd
, nr
, term_reset
;
158 * 1: A read from a file or a pipe. In this case, the reads
159 * never timeout regardless. This means that we can hang
160 * when trying to complete a map, but we're going to hang
161 * on the next read anyway.
163 if (!F_ISSET(clp
, CL_STDIN_TTY
)) {
164 switch (nr
= read(STDIN_FILENO
, bp
, blen
)) {
177 * 2: A read with an associated timeout, e.g., trying to complete
178 * a map sequence. If input exists, we fall into #3.
182 FD_SET(STDIN_FILENO
, &rdfd
);
183 switch (select(STDIN_FILENO
+ 1, &rdfd
, NULL
, NULL
, tp
)) {
185 return (INP_TIMEOUT
);
194 * The user can enter a key in the editor to quote a character. If we
195 * get here and the next key is supposed to be quoted, do what we can.
196 * Reset the tty so that the user can enter a ^C, ^Q, ^S. There's an
197 * obvious race here, when the key has already been entered, but there's
198 * nothing that we can do to fix that problem.
200 * The editor can ask for the next literal character even thought it's
201 * generally running in line-at-a-time mode. Do what we can.
203 if (LF_ISSET(EC_QUOTED
| EC_RAW
) && !tcgetattr(STDIN_FILENO
, &term1
)) {
205 if (LF_ISSET(EC_QUOTED
)) {
207 term2
.c_lflag
&= ~ISIG
;
208 term2
.c_iflag
&= ~(IXON
| IXOFF
);
209 (void)tcsetattr(STDIN_FILENO
,
210 TCSASOFT
| TCSADRAIN
, &term2
);
212 (void)tcsetattr(STDIN_FILENO
,
213 TCSASOFT
| TCSADRAIN
, &clp
->vi_enter
);
219 * Select on the command input and scripting window file descriptors.
220 * It's ugly that we wait on scripting file descriptors here, but it's
221 * the only way to keep from locking out scripting windows.
223 if (F_ISSET(gp
, G_SCRWIN
)) {
224 loop
: FD_ZERO(&rdfd
);
225 FD_SET(STDIN_FILENO
, &rdfd
);
226 maxfd
= STDIN_FILENO
;
227 if (F_ISSET(sp
, SC_SCRIPT
)) {
228 FD_SET(sp
->script
->sh_master
, &rdfd
);
229 if (sp
->script
->sh_master
> maxfd
)
230 maxfd
= sp
->script
->sh_master
;
232 switch (select(maxfd
+ 1, &rdfd
, NULL
, NULL
, NULL
)) {
240 if (!FD_ISSET(STDIN_FILENO
, &rdfd
)) {
251 * What's going on here is some scary stuff. Ex runs the terminal in
252 * canonical mode. So, the <newline> character terminating a line of
253 * input is returned in the buffer, but a trailing <EOF> character is
254 * not similarly included. As ex uses 0<EOF> and ^<EOF> as autoindent
255 * commands, it has to see the trailing <EOF> characters to determine
256 * the difference between the user entering "0ab" and "0<EOF>ab". We
257 * leave an extra slot in the buffer, so that we can add a trailing
258 * <EOF> character if the buffer isn't terminated by a <newline>. We
259 * lose if the buffer is too small for the line and exactly N characters
260 * are entered followed by an <EOF> character.
262 #define ONE_FOR_EOF 1
263 switch (nr
= read(STDIN_FILENO
, bp
, blen
- ONE_FOR_EOF
)) {
266 * ^D in canonical mode returns a read of 0, i.e. EOF. EOF is
267 * a valid command, but we don't want to loop forever because
268 * the terminal driver is returning EOF because the user has
269 * disconnected. The editor will almost certainly try to write
270 * something before this fires, which should kill us, but You
273 if (++clp
->eof_count
< 50) {
274 bp
[0] = clp
->orig
.c_cc
[VEOF
];
281 case -1: /* Error or interrupt. */
282 err
: if (errno
== EINTR
)
286 msgq(sp
, M_SYSERR
, "input");
289 default: /* Input characters. */
290 if (F_ISSET(sp
, SC_EX
) && bp
[nr
- 1] != '\n')
291 bp
[nr
++] = clp
->orig
.c_cc
[VEOF
];
298 /* Restore the terminal state if it was modified. */
300 (void)tcsetattr(STDIN_FILENO
, TCSASOFT
| TCSADRAIN
, &term1
);
306 * Reset the options for a resize event.
309 cl_resize(SCR
*sp
, size_t lines
, size_t columns
)
320 a
.len
= SPRINTF(b1
, sizeof(b1
), L("lines=%lu"), (u_long
)lines
);
321 if (opts_set(sp
, argv
, NULL
))
323 a
.len
= SPRINTF(b1
, sizeof(b1
), L("columns=%lu"), (u_long
)columns
);
324 if (opts_set(sp
, argv
, NULL
))