Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / nvi / cl / cl_screen.c
blob277308eb1bd410e97bfd9a19a916f23fb5a9bb10
1 /* $NetBSD: cl_screen.c,v 1.1.1.2 2008/05/18 14:29:38 aymeric Exp $ */
3 /*-
4 * Copyright (c) 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 1993, 1994, 1995, 1996
7 * Keith Bostic. All rights reserved.
9 * See the LICENSE file for redistribution information.
12 #include "config.h"
14 #ifndef lint
15 static const char sccsid[] = "Id: cl_screen.c,v 10.56 2002/05/03 19:59:44 skimo Exp (Berkeley) Date: 2002/05/03 19:59:44";
16 #endif /* not lint */
18 #include <sys/types.h>
19 #include <sys/queue.h>
21 #include <bitstring.h>
22 #include <errno.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <termios.h>
28 #include <unistd.h>
30 #include "../common/common.h"
31 #include "cl.h"
33 static int cl_ex_end __P((GS *));
34 static int cl_ex_init __P((SCR *));
35 static void cl_freecap __P((CL_PRIVATE *));
36 static int cl_vi_end __P((GS *));
37 static int cl_vi_init __P((SCR *));
38 static int cl_putenv __P((SCR *, const char *, const char *, u_long));
41 * cl_screen --
42 * Switch screen types.
44 * PUBLIC: int cl_screen __P((SCR *, u_int32_t));
46 int
47 cl_screen(SCR *sp, u_int32_t flags)
49 CL_PRIVATE *clp;
50 WINDOW *win;
51 GS *gp;
53 gp = sp->gp;
54 clp = CLP(sp);
55 win = CLSP(sp) ? CLSP(sp) : stdscr;
57 /* See if the current information is incorrect. */
58 if (F_ISSET(gp, G_SRESTART)) {
59 if (CLSP(sp)) {
60 delwin(CLSP(sp));
61 sp->cl_private = NULL;
63 if (cl_quit(gp))
64 return (1);
65 F_CLR(gp, G_SRESTART);
68 /* See if we're already in the right mode. */
69 if ((LF_ISSET(SC_EX) && F_ISSET(sp, SC_SCR_EX)) ||
70 (LF_ISSET(SC_VI) && F_ISSET(sp, SC_SCR_VI)))
71 return (0);
74 * Fake leaving ex mode.
76 * We don't actually exit ex or vi mode unless forced (e.g. by a window
77 * size change). This is because many curses implementations can't be
78 * called twice in a single program. Plus, it's faster. If the editor
79 * "leaves" vi to enter ex, when it exits ex we'll just fall back into
80 * vi.
82 if (F_ISSET(sp, SC_SCR_EX))
83 F_CLR(sp, SC_SCR_EX);
86 * Fake leaving vi mode.
88 * Clear out the rest of the screen if we're in the middle of a split
89 * screen. Move to the last line in the current screen -- this makes
90 * terminal scrolling happen naturally. Note: *don't* move past the
91 * end of the screen, as there are ex commands (e.g., :read ! cat file)
92 * that don't want to. Don't clear the info line, its contents may be
93 * valid, e.g. :file|append.
95 if (F_ISSET(sp, SC_SCR_VI)) {
96 F_CLR(sp, SC_SCR_VI);
98 if (sp->q.cqe_next != (void *)&sp->wp->scrq) {
99 (void)wmove(win, RLNO(sp, sp->rows), 0);
100 wclrtobot(win);
102 (void)wmove(win, RLNO(sp, sp->rows) - 1, 0);
103 wrefresh(win);
106 /* Enter the requested mode. */
107 if (LF_ISSET(SC_EX)) {
108 if (cl_ex_init(sp))
109 return (1);
110 F_SET(clp, CL_IN_EX | CL_SCR_EX_INIT);
113 * If doing an ex screen for ex mode, move to the last line
114 * on the screen.
116 if (F_ISSET(sp, SC_EX) && clp->cup != NULL)
117 tputs(tgoto(clp->cup,
118 0, O_VAL(sp, O_LINES) - 1), 1, cl_putchar);
119 } else {
120 if (cl_vi_init(sp))
121 return (1);
122 F_CLR(clp, CL_IN_EX);
123 F_SET(clp, CL_SCR_VI_INIT);
125 return (0);
129 * cl_quit --
130 * Shutdown the screens.
132 * PUBLIC: int cl_quit __P((GS *));
135 cl_quit(GS *gp)
137 CL_PRIVATE *clp;
138 int rval;
140 rval = 0;
141 clp = GCLP(gp);
144 * If we weren't really running, ignore it. This happens if the
145 * screen changes size before we've called curses.
147 if (!F_ISSET(clp, CL_SCR_EX_INIT | CL_SCR_VI_INIT))
148 return (0);
150 /* Clean up the terminal mappings. */
151 if (cl_term_end(gp))
152 rval = 1;
154 /* Really leave vi mode. */
155 if (F_ISSET(clp, CL_STDIN_TTY) &&
156 F_ISSET(clp, CL_SCR_VI_INIT) && cl_vi_end(gp))
157 rval = 1;
159 /* Really leave ex mode. */
160 if (F_ISSET(clp, CL_STDIN_TTY) &&
161 F_ISSET(clp, CL_SCR_EX_INIT) && cl_ex_end(gp))
162 rval = 1;
165 * If we were running ex when we quit, or we're using an implementation
166 * of curses where endwin() doesn't get this right, restore the original
167 * terminal modes.
169 * XXX
170 * We always do this because it's too hard to figure out what curses
171 * implementations get it wrong. It may discard type-ahead characters
172 * from the tty queue.
174 (void)tcsetattr(STDIN_FILENO, TCSADRAIN | TCSASOFT, &clp->orig);
176 F_CLR(clp, CL_SCR_EX_INIT | CL_SCR_VI_INIT);
177 return (rval);
181 * cl_vi_init --
182 * Initialize the curses vi screen.
184 static int
185 cl_vi_init(SCR *sp)
187 CL_PRIVATE *clp;
188 GS *gp;
189 char *o_cols, *o_lines, *o_term;
190 const char *ttype;
192 gp = sp->gp;
193 clp = CLP(sp);
195 /* If already initialized, just set the terminal modes. */
196 if (F_ISSET(clp, CL_SCR_VI_INIT))
197 goto fast;
199 /* Curses vi always reads from (and writes to) a terminal. */
200 if (!F_ISSET(clp, CL_STDIN_TTY) || !isatty(STDOUT_FILENO)) {
201 msgq(sp, M_ERR,
202 "016|Vi's standard input and output must be a terminal");
203 return (1);
206 /* We'll need a terminal type. */
207 if (opts_empty(sp, O_TERM, 0))
208 return (1);
209 ttype = O_STR(sp, O_TERM);
212 * XXX
213 * Changing the row/column and terminal values is done by putting them
214 * into the environment, which is then read by curses. What this loses
215 * in ugliness, it makes up for in stupidity. We can't simply put the
216 * values into the environment ourselves, because in the presence of a
217 * kernel mechanism for returning the window size, entering values into
218 * the environment will screw up future screen resizing events, e.g. if
219 * the user enters a :shell command and then resizes their window. So,
220 * if they weren't already in the environment, we make sure to delete
221 * them immediately after setting them.
223 * XXX
224 * Putting the TERM variable into the environment is necessary, even
225 * though we're using newterm() here. We may be using initscr() as
226 * the underlying function.
228 o_term = getenv("TERM");
229 cl_putenv(sp, "TERM", ttype, 0);
230 o_lines = getenv("LINES");
231 cl_putenv(sp, "LINES", NULL, (u_long)O_VAL(sp, O_LINES));
232 o_cols = getenv("COLUMNS");
233 cl_putenv(sp, "COLUMNS", NULL, (u_long)O_VAL(sp, O_COLUMNS));
236 * We don't care about the SCREEN reference returned by newterm, we
237 * never have more than one SCREEN at a time.
239 * XXX
240 * The SunOS initscr() can't be called twice. Don't even think about
241 * using it. It fails in subtle ways (e.g. select(2) on fileno(stdin)
242 * stops working). (The SVID notes that applications should only call
243 * initscr() once.)
245 * XXX
246 * The HP/UX newterm doesn't support the NULL first argument, so we
247 * have to specify the terminal type.
249 errno = 0;
250 if (newterm(__UNCONST(ttype), stdout, stdin) == NULL) {
251 if (errno)
252 msgq(sp, M_SYSERR, "%s", ttype);
253 else
254 msgq(sp, M_ERR, "%s: unknown terminal type", ttype);
255 return (1);
258 if (o_term == NULL)
259 cl_unsetenv(sp, "TERM");
260 if (o_lines == NULL)
261 cl_unsetenv(sp, "LINES");
262 if (o_cols == NULL)
263 cl_unsetenv(sp, "COLUMNS");
266 * XXX
267 * Someone got let out alone without adult supervision -- the SunOS
268 * newterm resets the signal handlers. There's a race, but it's not
269 * worth closing.
271 (void)sig_init(sp->gp, sp);
274 * We use raw mode. What we want is 8-bit clean, however, signals
275 * and flow control should continue to work. Admittedly, it sounds
276 * like cbreak, but it isn't. Using cbreak() can get you additional
277 * things like IEXTEN, which turns on flags like DISCARD and LNEXT.
279 * !!!
280 * If raw isn't turning off echo and newlines, something's wrong.
281 * However, it shouldn't hurt.
283 noecho(); /* No character echo. */
284 nonl(); /* No CR/NL translation. */
285 raw(); /* 8-bit clean. */
286 idlok(stdscr, 1); /* Use hardware insert/delete line. */
288 /* Put the cursor keys into application mode. */
289 (void)keypad(stdscr, TRUE);
292 * XXX
293 * The screen TI sequence just got sent. See the comment in
294 * cl_funcs.c:cl_attr().
296 clp->ti_te = TI_SENT;
299 * XXX
300 * Historic implementations of curses handled SIGTSTP signals
301 * in one of three ways. They either:
303 * 1: Set their own handler, regardless.
304 * 2: Did not set a handler if a handler was already installed.
305 * 3: Set their own handler, but then called any previously set
306 * handler after completing their own cleanup.
308 * We don't try and figure out which behavior is in place, we force
309 * it to SIG_DFL after initializing the curses interface, which means
310 * that curses isn't going to take the signal. Since curses isn't
311 * reentrant (i.e., the whole curses SIGTSTP interface is a fantasy),
312 * we're doing The Right Thing.
314 (void)signal(SIGTSTP, SIG_DFL);
317 * If flow control was on, turn it back on. Turn signals on. ISIG
318 * turns on VINTR, VQUIT, VDSUSP and VSUSP. The main curses code
319 * already installed a handler for VINTR. We're going to disable the
320 * other three.
322 * XXX
323 * We want to use ^Y as a vi scrolling command. If the user has the
324 * DSUSP character set to ^Y (common practice) clean it up. As it's
325 * equally possible that the user has VDSUSP set to 'a', we disable
326 * it regardless. It doesn't make much sense to suspend vi at read,
327 * so I don't think anyone will care. Alternatively, we could look
328 * it up in the table of legal command characters and turn it off if
329 * it matches one. VDSUSP wasn't in POSIX 1003.1-1990, so we test for
330 * it.
332 * XXX
333 * We don't check to see if the user had signals enabled originally.
334 * If they didn't, it's unclear what we're supposed to do here, but
335 * it's also pretty unlikely.
337 if (tcgetattr(STDIN_FILENO, &clp->vi_enter)) {
338 msgq(sp, M_SYSERR, "tcgetattr");
339 goto err;
341 if (clp->orig.c_iflag & IXON)
342 clp->vi_enter.c_iflag |= IXON;
343 if (clp->orig.c_iflag & IXOFF)
344 clp->vi_enter.c_iflag |= IXOFF;
346 clp->vi_enter.c_lflag |= ISIG;
347 #ifdef VDSUSP
348 clp->vi_enter.c_cc[VDSUSP] = _POSIX_VDISABLE;
349 #endif
350 clp->vi_enter.c_cc[VQUIT] = _POSIX_VDISABLE;
351 clp->vi_enter.c_cc[VSUSP] = _POSIX_VDISABLE;
354 * XXX
355 * OSF/1 doesn't turn off the <discard>, <literal-next> or <status>
356 * characters when curses switches into raw mode. It should be OK
357 * to do it explicitly for everyone.
359 #ifdef VDISCARD
360 clp->vi_enter.c_cc[VDISCARD] = _POSIX_VDISABLE;
361 #endif
362 #ifdef VLNEXT
363 clp->vi_enter.c_cc[VLNEXT] = _POSIX_VDISABLE;
364 #endif
365 #ifdef VSTATUS
366 clp->vi_enter.c_cc[VSTATUS] = _POSIX_VDISABLE;
367 #endif
369 /* Initialize terminal based information. */
370 if (cl_term_init(sp))
371 goto err;
373 fast: /* Set the terminal modes. */
374 if (tcsetattr(STDIN_FILENO, TCSASOFT | TCSADRAIN, &clp->vi_enter)) {
375 if (errno == EINTR)
376 goto fast;
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(GS *gp)
391 CL_PRIVATE *clp;
393 clp = GCLP(gp);
395 /* Restore the cursor keys to normal mode. */
396 (void)keypad(stdscr, FALSE);
399 * If we were running vi when we quit, scroll the screen up a single
400 * line so we don't lose any information.
402 * Move to the bottom of the window (some endwin implementations don't
403 * do this for you).
405 if (!F_ISSET(clp, CL_IN_EX)) {
406 (void)move(0, 0);
407 (void)deleteln();
408 (void)move(LINES - 1, 0);
409 (void)refresh();
412 cl_freecap(clp);
414 /* End curses window. */
415 (void)endwin();
418 * XXX
419 * The screen TE sequence just got sent. See the comment in
420 * cl_funcs.c:cl_attr().
422 clp->ti_te = TE_SENT;
424 return (0);
428 * cl_ex_init --
429 * Initialize the ex screen.
431 static int
432 cl_ex_init(SCR *sp)
434 CL_PRIVATE *clp;
436 clp = CLP(sp);
438 /* If already initialized, just set the terminal modes. */
439 if (F_ISSET(clp, CL_SCR_EX_INIT))
440 goto fast;
442 /* If not reading from a file, we're done. */
443 if (!F_ISSET(clp, CL_STDIN_TTY))
444 return (0);
446 /* Get the ex termcap/terminfo strings. */
447 (void)cl_getcap(sp, "cup", &clp->cup);
448 (void)cl_getcap(sp, "smso", &clp->smso);
449 (void)cl_getcap(sp, "rmso", &clp->rmso);
450 (void)cl_getcap(sp, "el", &clp->el);
451 (void)cl_getcap(sp, "cuu1", &clp->cuu1);
453 /* Enter_standout_mode and exit_standout_mode are paired. */
454 if (clp->smso == NULL || clp->rmso == NULL) {
455 if (clp->smso != NULL) {
456 free(clp->smso);
457 clp->smso = NULL;
459 if (clp->rmso != NULL) {
460 free(clp->rmso);
461 clp->rmso = NULL;
466 * Turn on canonical mode, with normal input and output processing.
467 * Start with the original terminal settings as the user probably
468 * had them (including any local extensions) set correctly for the
469 * current terminal.
471 * !!!
472 * We can't get everything that we need portably; for example, ONLCR,
473 * mapping <newline> to <carriage-return> on output isn't required
474 * by POSIX 1003.1b-1993. If this turns out to be a problem, then
475 * we'll either have to play some games on the mapping, or we'll have
476 * to make all ex printf's output \r\n instead of \n.
478 clp->ex_enter = clp->orig;
479 clp->ex_enter.c_lflag |= ECHO | ECHOE | ECHOK | ICANON | IEXTEN | ISIG;
480 #ifdef ECHOCTL
481 clp->ex_enter.c_lflag |= ECHOCTL;
482 #endif
483 #ifdef ECHOKE
484 clp->ex_enter.c_lflag |= ECHOKE;
485 #endif
486 clp->ex_enter.c_iflag |= ICRNL;
487 clp->ex_enter.c_oflag |= OPOST;
488 #ifdef ONLCR
489 clp->ex_enter.c_oflag |= ONLCR;
490 #endif
492 fast: if (tcsetattr(STDIN_FILENO, TCSADRAIN | TCSASOFT, &clp->ex_enter)) {
493 if (errno == EINTR)
494 goto fast;
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(GS *gp)
508 CL_PRIVATE *clp;
510 clp = GCLP(gp);
512 cl_freecap(clp);
514 return (0);
518 * cl_getcap --
519 * Retrieve termcap/terminfo strings.
521 * PUBLIC: int cl_getcap __P((SCR *, char *, char **));
524 cl_getcap(SCR *sp, const char *name, char **elementp)
526 size_t len;
527 char *t;
529 if ((t = tigetstr(name)) != NULL &&
530 t != (char *)-1 && (len = strlen(t)) != 0) {
531 MALLOC_RET(sp, *elementp, char *, len + 1);
532 memmove(*elementp, t, len + 1);
534 return (0);
538 * cl_freecap --
539 * Free any allocated termcap/terminfo strings.
541 static void
542 cl_freecap(CL_PRIVATE *clp)
544 if (clp->el != NULL) {
545 free(clp->el);
546 clp->el = NULL;
548 if (clp->cup != NULL) {
549 free(clp->cup);
550 clp->cup = NULL;
552 if (clp->cuu1 != NULL) {
553 free(clp->cuu1);
554 clp->cuu1 = NULL;
556 if (clp->rmso != NULL) {
557 free(clp->rmso);
558 clp->rmso = NULL;
560 if (clp->smso != NULL) {
561 free(clp->smso);
562 clp->smso = NULL;
567 * cl_putenv --
568 * Put a value into the environment.
570 static int
571 cl_putenv(SCR *sp, const char *name, const char *str, u_long value)
573 char buf[40];
575 if (str == NULL) {
576 (void)snprintf(buf, sizeof(buf), "%lu", value);
577 return (cl_setenv(sp, name, buf));
578 } else
579 return (cl_setenv(sp, name, str));