1 /* $NetBSD: cl_screen.c,v 1.1.1.2 2008/05/18 14:29:38 aymeric Exp $ */
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.
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";
18 #include <sys/types.h>
19 #include <sys/queue.h>
21 #include <bitstring.h>
30 #include "../common/common.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
));
42 * Switch screen types.
44 * PUBLIC: int cl_screen __P((SCR *, u_int32_t));
47 cl_screen(SCR
*sp
, u_int32_t flags
)
55 win
= CLSP(sp
) ? CLSP(sp
) : stdscr
;
57 /* See if the current information is incorrect. */
58 if (F_ISSET(gp
, G_SRESTART
)) {
61 sp
->cl_private
= NULL
;
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
)))
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
82 if (F_ISSET(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
)) {
98 if (sp
->q
.cqe_next
!= (void *)&sp
->wp
->scrq
) {
99 (void)wmove(win
, RLNO(sp
, sp
->rows
), 0);
102 (void)wmove(win
, RLNO(sp
, sp
->rows
) - 1, 0);
106 /* Enter the requested mode. */
107 if (LF_ISSET(SC_EX
)) {
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
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
);
122 F_CLR(clp
, CL_IN_EX
);
123 F_SET(clp
, CL_SCR_VI_INIT
);
130 * Shutdown the screens.
132 * PUBLIC: int cl_quit __P((GS *));
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
))
150 /* Clean up the terminal mappings. */
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
))
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
))
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
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
);
182 * Initialize the curses vi screen.
189 char *o_cols
, *o_lines
, *o_term
;
195 /* If already initialized, just set the terminal modes. */
196 if (F_ISSET(clp
, CL_SCR_VI_INIT
))
199 /* Curses vi always reads from (and writes to) a terminal. */
200 if (!F_ISSET(clp
, CL_STDIN_TTY
) || !isatty(STDOUT_FILENO
)) {
202 "016|Vi's standard input and output must be a terminal");
206 /* We'll need a terminal type. */
207 if (opts_empty(sp
, O_TERM
, 0))
209 ttype
= O_STR(sp
, O_TERM
);
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.
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.
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
246 * The HP/UX newterm doesn't support the NULL first argument, so we
247 * have to specify the terminal type.
250 if (newterm(__UNCONST(ttype
), stdout
, stdin
) == NULL
) {
252 msgq(sp
, M_SYSERR
, "%s", ttype
);
254 msgq(sp
, M_ERR
, "%s: unknown terminal type", ttype
);
259 cl_unsetenv(sp
, "TERM");
261 cl_unsetenv(sp
, "LINES");
263 cl_unsetenv(sp
, "COLUMNS");
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
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.
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
);
293 * The screen TI sequence just got sent. See the comment in
294 * cl_funcs.c:cl_attr().
296 clp
->ti_te
= TI_SENT
;
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
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
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");
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
;
348 clp
->vi_enter
.c_cc
[VDSUSP
] = _POSIX_VDISABLE
;
350 clp
->vi_enter
.c_cc
[VQUIT
] = _POSIX_VDISABLE
;
351 clp
->vi_enter
.c_cc
[VSUSP
] = _POSIX_VDISABLE
;
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.
360 clp
->vi_enter
.c_cc
[VDISCARD
] = _POSIX_VDISABLE
;
363 clp
->vi_enter
.c_cc
[VLNEXT
] = _POSIX_VDISABLE
;
366 clp
->vi_enter
.c_cc
[VSTATUS
] = _POSIX_VDISABLE
;
369 /* Initialize terminal based information. */
370 if (cl_term_init(sp
))
373 fast
: /* Set the terminal modes. */
374 if (tcsetattr(STDIN_FILENO
, TCSASOFT
| TCSADRAIN
, &clp
->vi_enter
)) {
377 msgq(sp
, M_SYSERR
, "tcsetattr");
378 err
: (void)cl_vi_end(sp
->gp
);
386 * Shutdown the vi screen.
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
405 if (!F_ISSET(clp
, CL_IN_EX
)) {
408 (void)move(LINES
- 1, 0);
414 /* End curses window. */
419 * The screen TE sequence just got sent. See the comment in
420 * cl_funcs.c:cl_attr().
422 clp
->ti_te
= TE_SENT
;
429 * Initialize the ex screen.
438 /* If already initialized, just set the terminal modes. */
439 if (F_ISSET(clp
, CL_SCR_EX_INIT
))
442 /* If not reading from a file, we're done. */
443 if (!F_ISSET(clp
, CL_STDIN_TTY
))
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
) {
459 if (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
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
;
481 clp
->ex_enter
.c_lflag
|= ECHOCTL
;
484 clp
->ex_enter
.c_lflag
|= ECHOKE
;
486 clp
->ex_enter
.c_iflag
|= ICRNL
;
487 clp
->ex_enter
.c_oflag
|= OPOST
;
489 clp
->ex_enter
.c_oflag
|= ONLCR
;
492 fast
: if (tcsetattr(STDIN_FILENO
, TCSADRAIN
| TCSASOFT
, &clp
->ex_enter
)) {
495 msgq(sp
, M_SYSERR
, "tcsetattr");
503 * Shutdown the ex screen.
519 * Retrieve termcap/terminfo strings.
521 * PUBLIC: int cl_getcap __P((SCR *, char *, char **));
524 cl_getcap(SCR
*sp
, const char *name
, char **elementp
)
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);
539 * Free any allocated termcap/terminfo strings.
542 cl_freecap(CL_PRIVATE
*clp
)
544 if (clp
->el
!= NULL
) {
548 if (clp
->cup
!= NULL
) {
552 if (clp
->cuu1
!= NULL
) {
556 if (clp
->rmso
!= NULL
) {
560 if (clp
->smso
!= NULL
) {
568 * Put a value into the environment.
571 cl_putenv(SCR
*sp
, const char *name
, const char *str
, u_long value
)
576 (void)snprintf(buf
, sizeof(buf
), "%lu", value
);
577 return (cl_setenv(sp
, name
, buf
));
579 return (cl_setenv(sp
, name
, str
));