*** empty log message ***
[nvi.git] / cl / cl_screen.c
blobc31f858b538627d2a30b8596568708f207a1f444
1 /*-
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.
8 */
10 #include "config.h"
12 #ifndef lint
13 static const char sccsid[] = "$Id: cl_screen.c,v 10.52 2000/07/04 21:48:53 skimo Exp $ (Berkeley) $Date: 2000/07/04 21:48:53 $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
19 #include <bitstring.h>
20 #include <curses.h>
21 #include <errno.h>
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <termios.h>
27 #include <unistd.h>
29 #include "../common/common.h"
30 #include "cl.h"
32 static int cl_ex_end __P((GS *));
33 static int cl_ex_init __P((SCR *));
34 static void cl_freecap __P((CL_PRIVATE *));
35 static int cl_vi_end __P((GS *));
36 static int cl_vi_init __P((SCR *));
37 static int cl_putenv __P((char *, char *, u_long));
40 * cl_screen --
41 * Switch screen types.
43 * PUBLIC: int cl_screen __P((SCR *, u_int32_t));
45 int
46 cl_screen(sp, flags)
47 SCR *sp;
48 u_int32_t flags;
50 CL_PRIVATE *clp;
51 WINDOW *win;
52 GS *gp;
54 gp = sp->gp;
55 clp = CLP(sp);
56 win = CLSP(sp) ? CLSP(sp) : stdscr;
58 /* See if the current information is incorrect. */
59 if (F_ISSET(gp, G_SRESTART)) {
60 if (CLSP(sp)) {
61 delwin(CLSP(sp));
62 CLSP(sp) = NULL;
64 if (cl_quit(gp))
65 return (1);
66 F_CLR(gp, G_SRESTART);
69 /* See if we're already in the right mode. */
70 if (LF_ISSET(SC_EX) && F_ISSET(sp, SC_SCR_EX) ||
71 LF_ISSET(SC_VI) && F_ISSET(sp, SC_SCR_VI))
72 return (0);
75 * Fake leaving ex mode.
77 * We don't actually exit ex or vi mode unless forced (e.g. by a window
78 * size change). This is because many curses implementations can't be
79 * called twice in a single program. Plus, it's faster. If the editor
80 * "leaves" vi to enter ex, when it exits ex we'll just fall back into
81 * vi.
83 if (F_ISSET(sp, SC_SCR_EX))
84 F_CLR(sp, SC_SCR_EX);
87 * Fake leaving vi mode.
89 * Clear out the rest of the screen if we're in the middle of a split
90 * screen. Move to the last line in the current screen -- this makes
91 * terminal scrolling happen naturally. Note: *don't* move past the
92 * end of the screen, as there are ex commands (e.g., :read ! cat file)
93 * that don't want to. Don't clear the info line, its contents may be
94 * valid, e.g. :file|append.
96 if (F_ISSET(sp, SC_SCR_VI)) {
97 F_CLR(sp, SC_SCR_VI);
99 if (sp->q.cqe_next != (void *)&sp->wp->scrq) {
100 (void)wmove(win, RLNO(sp, sp->rows), 0);
101 wclrtobot(win);
103 (void)wmove(win, RLNO(sp, sp->rows) - 1, 0);
104 wrefresh(win);
107 /* Enter the requested mode. */
108 if (LF_ISSET(SC_EX)) {
109 if (cl_ex_init(sp))
110 return (1);
111 F_SET(clp, CL_IN_EX | CL_SCR_EX_INIT);
114 * If doing an ex screen for ex mode, move to the last line
115 * on the screen.
117 if (F_ISSET(sp, SC_EX) && clp->cup != NULL)
118 tputs(tgoto(clp->cup,
119 0, O_VAL(sp, O_LINES) - 1), 1, cl_putchar);
120 } else {
121 if (cl_vi_init(sp))
122 return (1);
123 F_CLR(clp, CL_IN_EX);
124 F_SET(clp, CL_SCR_VI_INIT);
126 return (0);
130 * cl_quit --
131 * Shutdown the screens.
133 * PUBLIC: int cl_quit __P((GS *));
136 cl_quit(gp)
137 GS *gp;
139 CL_PRIVATE *clp;
140 int rval;
142 rval = 0;
143 clp = GCLP(gp);
146 * If we weren't really running, ignore it. This happens if the
147 * screen changes size before we've called curses.
149 if (!F_ISSET(clp, CL_SCR_EX_INIT | CL_SCR_VI_INIT))
150 return (0);
152 /* Clean up the terminal mappings. */
153 if (cl_term_end(gp))
154 rval = 1;
156 /* Really leave vi mode. */
157 if (F_ISSET(clp, CL_STDIN_TTY) &&
158 F_ISSET(clp, CL_SCR_VI_INIT) && cl_vi_end(gp))
159 rval = 1;
161 /* Really leave ex mode. */
162 if (F_ISSET(clp, CL_STDIN_TTY) &&
163 F_ISSET(clp, CL_SCR_EX_INIT) && cl_ex_end(gp))
164 rval = 1;
167 * If we were running ex when we quit, or we're using an implementation
168 * of curses where endwin() doesn't get this right, restore the original
169 * terminal modes.
171 * XXX
172 * We always do this because it's too hard to figure out what curses
173 * implementations get it wrong. It may discard type-ahead characters
174 * from the tty queue.
176 (void)tcsetattr(STDIN_FILENO, TCSADRAIN | TCSASOFT, &clp->orig);
178 F_CLR(clp, CL_SCR_EX_INIT | CL_SCR_VI_INIT);
179 return (rval);
183 * cl_vi_init --
184 * Initialize the curses vi screen.
186 static int
187 cl_vi_init(sp)
188 SCR *sp;
190 CL_PRIVATE *clp;
191 GS *gp;
192 char *o_cols, *o_lines, *o_term, *ttype;
194 gp = sp->gp;
195 clp = CLP(sp);
197 /* If already initialized, just set the terminal modes. */
198 if (F_ISSET(clp, CL_SCR_VI_INIT))
199 goto fast;
201 /* Curses vi always reads from (and writes to) a terminal. */
202 if (!F_ISSET(clp, CL_STDIN_TTY) || !isatty(STDOUT_FILENO)) {
203 msgq(sp, M_ERR,
204 "016|Vi's standard input and output must be a terminal");
205 return (1);
208 /* We'll need a terminal type. */
209 if (opts_empty(sp, O_TERM, 0))
210 return (1);
211 ttype = O_STR(sp, O_TERM);
214 * XXX
215 * Changing the row/column and terminal values is done by putting them
216 * into the environment, which is then read by curses. What this loses
217 * in ugliness, it makes up for in stupidity. We can't simply put the
218 * values into the environment ourselves, because in the presence of a
219 * kernel mechanism for returning the window size, entering values into
220 * the environment will screw up future screen resizing events, e.g. if
221 * the user enters a :shell command and then resizes their window. So,
222 * if they weren't already in the environment, we make sure to delete
223 * them immediately after setting them.
225 * XXX
226 * Putting the TERM variable into the environment is necessary, even
227 * though we're using newterm() here. We may be using initscr() as
228 * the underlying function.
230 o_term = getenv("TERM");
231 cl_putenv("TERM", ttype, 0);
232 o_lines = getenv("LINES");
233 cl_putenv("LINES", NULL, (u_long)O_VAL(sp, O_LINES));
234 o_cols = getenv("COLUMNS");
235 cl_putenv("COLUMNS", NULL, (u_long)O_VAL(sp, O_COLUMNS));
238 * We don't care about the SCREEN reference returned by newterm, we
239 * never have more than one SCREEN at a time.
241 * XXX
242 * The SunOS initscr() can't be called twice. Don't even think about
243 * using it. It fails in subtle ways (e.g. select(2) on fileno(stdin)
244 * stops working). (The SVID notes that applications should only call
245 * initscr() once.)
247 * XXX
248 * The HP/UX newterm doesn't support the NULL first argument, so we
249 * have to specify the terminal type.
251 errno = 0;
252 if (newterm(ttype, stdout, stdin) == NULL) {
253 if (errno)
254 msgq(sp, M_SYSERR, "%s", ttype);
255 else
256 msgq(sp, M_ERR, "%s: unknown terminal type", ttype);
257 return (1);
260 if (o_term == NULL)
261 unsetenv("TERM");
262 if (o_lines == NULL)
263 unsetenv("LINES");
264 if (o_cols == NULL)
265 unsetenv("COLUMNS");
268 * XXX
269 * Someone got let out alone without adult supervision -- the SunOS
270 * newterm resets the signal handlers. There's a race, but it's not
271 * worth closing.
273 (void)sig_init(sp->gp, sp);
276 * We use raw mode. What we want is 8-bit clean, however, signals
277 * and flow control should continue to work. Admittedly, it sounds
278 * like cbreak, but it isn't. Using cbreak() can get you additional
279 * things like IEXTEN, which turns on flags like DISCARD and LNEXT.
281 * !!!
282 * If raw isn't turning off echo and newlines, something's wrong.
283 * However, it shouldn't hurt.
285 noecho(); /* No character echo. */
286 nonl(); /* No CR/NL translation. */
287 raw(); /* 8-bit clean. */
288 idlok(stdscr, 1); /* Use hardware insert/delete line. */
290 /* Put the cursor keys into application mode. */
291 (void)keypad(stdscr, TRUE);
294 * XXX
295 * The screen TI sequence just got sent. See the comment in
296 * cl_funcs.c:cl_attr().
298 clp->ti_te = TI_SENT;
301 * XXX
302 * Historic implementations of curses handled SIGTSTP signals
303 * in one of three ways. They either:
305 * 1: Set their own handler, regardless.
306 * 2: Did not set a handler if a handler was already installed.
307 * 3: Set their own handler, but then called any previously set
308 * handler after completing their own cleanup.
310 * We don't try and figure out which behavior is in place, we force
311 * it to SIG_DFL after initializing the curses interface, which means
312 * that curses isn't going to take the signal. Since curses isn't
313 * reentrant (i.e., the whole curses SIGTSTP interface is a fantasy),
314 * we're doing The Right Thing.
316 (void)signal(SIGTSTP, SIG_DFL);
319 * If flow control was on, turn it back on. Turn signals on. ISIG
320 * turns on VINTR, VQUIT, VDSUSP and VSUSP. The main curses code
321 * already installed a handler for VINTR. We're going to disable the
322 * other three.
324 * XXX
325 * We want to use ^Y as a vi scrolling command. If the user has the
326 * DSUSP character set to ^Y (common practice) clean it up. As it's
327 * equally possible that the user has VDSUSP set to 'a', we disable
328 * it regardless. It doesn't make much sense to suspend vi at read,
329 * so I don't think anyone will care. Alternatively, we could look
330 * it up in the table of legal command characters and turn it off if
331 * it matches one. VDSUSP wasn't in POSIX 1003.1-1990, so we test for
332 * it.
334 * XXX
335 * We don't check to see if the user had signals enabled originally.
336 * If they didn't, it's unclear what we're supposed to do here, but
337 * it's also pretty unlikely.
339 if (tcgetattr(STDIN_FILENO, &clp->vi_enter)) {
340 msgq(sp, M_SYSERR, "tcgetattr");
341 goto err;
343 if (clp->orig.c_iflag & IXON)
344 clp->vi_enter.c_iflag |= IXON;
345 if (clp->orig.c_iflag & IXOFF)
346 clp->vi_enter.c_iflag |= IXOFF;
348 clp->vi_enter.c_lflag |= ISIG;
349 #ifdef VDSUSP
350 clp->vi_enter.c_cc[VDSUSP] = _POSIX_VDISABLE;
351 #endif
352 clp->vi_enter.c_cc[VQUIT] = _POSIX_VDISABLE;
353 clp->vi_enter.c_cc[VSUSP] = _POSIX_VDISABLE;
356 * XXX
357 * OSF/1 doesn't turn off the <discard>, <literal-next> or <status>
358 * characters when curses switches into raw mode. It should be OK
359 * to do it explicitly for everyone.
361 #ifdef VDISCARD
362 clp->vi_enter.c_cc[VDISCARD] = _POSIX_VDISABLE;
363 #endif
364 #ifdef VLNEXT
365 clp->vi_enter.c_cc[VLNEXT] = _POSIX_VDISABLE;
366 #endif
367 #ifdef VSTATUS
368 clp->vi_enter.c_cc[VSTATUS] = _POSIX_VDISABLE;
369 #endif
371 /* Initialize terminal based information. */
372 if (cl_term_init(sp))
373 goto err;
375 fast: /* Set the terminal modes. */
376 if (tcsetattr(STDIN_FILENO, TCSASOFT | TCSADRAIN, &clp->vi_enter)) {
377 msgq(sp, M_SYSERR, "tcsetattr");
378 err: (void)cl_vi_end(sp->gp);
379 return (1);
381 return (0);
385 * cl_vi_end --
386 * Shutdown the vi screen.
388 static int
389 cl_vi_end(gp)
390 GS *gp;
392 CL_PRIVATE *clp;
394 clp = GCLP(gp);
396 /* Restore the cursor keys to normal mode. */
397 (void)keypad(stdscr, FALSE);
400 * If we were running vi when we quit, scroll the screen up a single
401 * line so we don't lose any information.
403 * Move to the bottom of the window (some endwin implementations don't
404 * do this for you).
406 if (!F_ISSET(clp, CL_IN_EX)) {
407 (void)move(0, 0);
408 (void)deleteln();
409 (void)move(LINES - 1, 0);
410 (void)refresh();
413 cl_freecap(clp);
415 /* End curses window. */
416 (void)endwin();
419 * XXX
420 * The screen TE sequence just got sent. See the comment in
421 * cl_funcs.c:cl_attr().
423 clp->ti_te = TE_SENT;
425 return (0);
429 * cl_ex_init --
430 * Initialize the ex screen.
432 static int
433 cl_ex_init(sp)
434 SCR *sp;
436 CL_PRIVATE *clp;
438 clp = CLP(sp);
440 /* If already initialized, just set the terminal modes. */
441 if (F_ISSET(clp, CL_SCR_EX_INIT))
442 goto fast;
444 /* If not reading from a file, we're done. */
445 if (!F_ISSET(clp, CL_STDIN_TTY))
446 return (0);
448 /* Get the ex termcap/terminfo strings. */
449 (void)cl_getcap(sp, "cup", &clp->cup);
450 (void)cl_getcap(sp, "smso", &clp->smso);
451 (void)cl_getcap(sp, "rmso", &clp->rmso);
452 (void)cl_getcap(sp, "el", &clp->el);
453 (void)cl_getcap(sp, "cuu1", &clp->cuu1);
455 /* Enter_standout_mode and exit_standout_mode are paired. */
456 if (clp->smso == NULL || clp->rmso == NULL) {
457 if (clp->smso != NULL) {
458 free(clp->smso);
459 clp->smso = NULL;
461 if (clp->rmso != NULL) {
462 free(clp->rmso);
463 clp->rmso = NULL;
468 * Turn on canonical mode, with normal input and output processing.
469 * Start with the original terminal settings as the user probably
470 * had them (including any local extensions) set correctly for the
471 * current terminal.
473 * !!!
474 * We can't get everything that we need portably; for example, ONLCR,
475 * mapping <newline> to <carriage-return> on output isn't required
476 * by POSIX 1003.1b-1993. If this turns out to be a problem, then
477 * we'll either have to play some games on the mapping, or we'll have
478 * to make all ex printf's output \r\n instead of \n.
480 clp->ex_enter = clp->orig;
481 clp->ex_enter.c_lflag |= ECHO | ECHOE | ECHOK | ICANON | IEXTEN | ISIG;
482 #ifdef ECHOCTL
483 clp->ex_enter.c_lflag |= ECHOCTL;
484 #endif
485 #ifdef ECHOKE
486 clp->ex_enter.c_lflag |= ECHOKE;
487 #endif
488 clp->ex_enter.c_iflag |= ICRNL;
489 clp->ex_enter.c_oflag |= OPOST;
490 #ifdef ONLCR
491 clp->ex_enter.c_oflag |= ONLCR;
492 #endif
494 fast: if (tcsetattr(STDIN_FILENO, TCSADRAIN | TCSASOFT, &clp->ex_enter)) {
495 msgq(sp, M_SYSERR, "tcsetattr");
496 return (1);
498 return (0);
502 * cl_ex_end --
503 * Shutdown the ex screen.
505 static int
506 cl_ex_end(gp)
507 GS *gp;
509 CL_PRIVATE *clp;
511 clp = GCLP(gp);
513 cl_freecap(clp);
515 return (0);
519 * cl_getcap --
520 * Retrieve termcap/terminfo strings.
522 * PUBLIC: int cl_getcap __P((SCR *, char *, char **));
525 cl_getcap(sp, name, elementp)
526 SCR *sp;
527 char *name, **elementp;
529 size_t len;
530 char *t;
532 if ((t = tigetstr(name)) != NULL &&
533 t != (char *)-1 && (len = strlen(t)) != 0) {
534 MALLOC_RET(sp, *elementp, char *, len + 1);
535 memmove(*elementp, t, len + 1);
537 return (0);
541 * cl_freecap --
542 * Free any allocated termcap/terminfo strings.
544 static void
545 cl_freecap(clp)
546 CL_PRIVATE *clp;
548 if (clp->el != NULL) {
549 free(clp->el);
550 clp->el = NULL;
552 if (clp->cup != NULL) {
553 free(clp->cup);
554 clp->cup = NULL;
556 if (clp->cuu1 != NULL) {
557 free(clp->cuu1);
558 clp->cuu1 = NULL;
560 if (clp->rmso != NULL) {
561 free(clp->rmso);
562 clp->rmso = NULL;
564 if (clp->smso != NULL) {
565 free(clp->smso);
566 clp->smso = NULL;
571 * cl_putenv --
572 * Put a value into the environment.
574 static int
575 cl_putenv(name, str, value)
576 char *name, *str;
577 u_long value;
580 char buf[40];
582 if (str == NULL) {
583 (void)snprintf(buf, sizeof(buf), "%lu", value);
584 return (setenv(name, buf, 1));
585 } else
586 return (setenv(name, str, 1));