1 /* $NetBSD: cl_main.c,v 1.2 2013/11/22 15:52:05 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.
14 static const char sccsid
[] = "Id: cl_main.c,v 10.54 2001/07/29 19:07:27 skimo Exp (Berkeley) Date: 2001/07/29 19:07:27 ";
17 #include <sys/types.h>
18 #include <sys/queue.h>
20 #include <bitstring.h>
30 #include "../common/common.h"
31 #include "ip_extern.h"
33 #include "pathnames.h"
35 GS
*__global_list
; /* GLOBAL: List of screens. */
36 sigset_t __sigblockset
; /* GLOBAL: Blocked signals. */
38 static void cl_func_std
__P((WIN
*));
40 static void cl_end
__P((CL_PRIVATE
*));
42 static CL_PRIVATE
*cl_init
__P((WIN
*));
43 __dead
static void perr
__P((const char *, const char *));
44 static int setsig
__P((int, struct sigaction
*, void (*)(int)));
45 static void sig_end
__P((GS
*));
46 static void term_init
__P((const char *, const char *));
50 * This is the main loop for the standalone curses editor.
53 main(int argc
, char **argv
)
64 /* If loaded at 0 and jumping through a NULL pointer, stop. */
68 /* Create and initialize the global structure. */
69 __global_list
= gp
= gs_init(argv
[0]);
72 * Strip out any arguments that vi isn't going to understand. There's
73 * no way to portably call getopt twice, so arguments parsed here must
74 * be removed from the argument list.
76 for (p_av
= t_av
= argv
;;) {
81 if (!strcmp(*t_av
, "--")) {
82 while ((*p_av
++ = *t_av
++) != NULL
);
88 /* Create new window */
91 /* Create and initialize the CL_PRIVATE structure. */
95 * Initialize the terminal information.
97 * We have to know what terminal it is from the start, since we may
98 * have to use termcap/terminfo to find out how big the screen is.
100 if ((ttype
= getenv("TERM")) == NULL
) {
101 if (isatty(STDIN_FILENO
))
102 fprintf(stderr
, "%s: warning: TERM is not set\n",
106 term_init(gp
->progname
, ttype
);
108 /* Add the terminal type to the global structure. */
109 if ((OG_D_STR(gp
, GO_TERM
) =
110 OG_STR(gp
, GO_TERM
) = strdup(ttype
)) == NULL
)
111 perr(gp
->progname
, NULL
);
113 /* Figure out how big the screen is. */
114 if (cl_ssize(NULL
, 0, &rows
, &cols
, NULL
))
117 /* Add the rows and columns to the global structure. */
118 OG_VAL(gp
, GO_LINES
) = OG_D_VAL(gp
, GO_LINES
) = rows
;
119 OG_VAL(gp
, GO_COLUMNS
) = OG_D_VAL(gp
, GO_COLUMNS
) = cols
;
121 /* Ex wants stdout to be buffered. */
122 (void)setvbuf(stdout
, NULL
, _IOFBF
, 0);
124 /* Start catching signals. */
125 if (sig_init(gp
, NULL
))
129 rval
= editor(wp
, argc
, argv
);
131 /* Clean out the global structure. */
134 /* Clean up signals. */
137 /* Clean up the terminal. */
142 * Reset the O_MESG option.
144 if (clp
->tgw
!= TGW_UNKNOWN
)
145 (void)cl_omesg(NULL
, clp
, clp
->tgw
== TGW_SET
);
149 * Reset the X11 xterm icon/window name.
151 if (F_ISSET(clp
, CL_RENAME
))
152 cl_setname(gp
, clp
->oname
);
154 /* If a killer signal arrived, pretend we just got it. */
155 if (clp
->killersig
) {
156 (void)signal(clp
->killersig
, SIG_DFL
);
157 (void)kill(getpid(), clp
->killersig
);
161 /* Free the global and CL private areas. */
162 #if defined(DEBUG) || defined(PURIFY) || defined(LIBRARY)
172 * Create and partially initialize the CL structure.
183 /* Allocate the CL private structure. */
184 CALLOC_NOMSG(NULL
, clp
, CL_PRIVATE
*, 1, sizeof(CL_PRIVATE
));
186 perr(gp
->progname
, NULL
);
187 gp
->cl_private
= clp
;
190 * Set the CL_STDIN_TTY flag. It's purpose is to avoid setting
191 * and resetting the tty if the input isn't from there. We also
192 * use the same test to determine if we're running a script or
195 if (isatty(STDIN_FILENO
))
196 F_SET(clp
, CL_STDIN_TTY
);
198 F_SET(gp
, G_SCRIPTED
);
201 * We expect that if we've lost our controlling terminal that the
202 * open() (but not the tcgetattr()) will fail.
204 if (F_ISSET(clp
, CL_STDIN_TTY
)) {
205 if (tcgetattr(STDIN_FILENO
, &clp
->orig
) == -1)
207 } else if ((fd
= open(_PATH_TTY
, O_RDONLY
, 0)) != -1) {
208 if (tcgetattr(fd
, &clp
->orig
) == -1) {
209 tcfail
: perr(gp
->progname
, "tcgetattr");
215 /* Initialize the list of curses functions. */
224 * Discard the CL structure.
227 cl_end(CL_PRIVATE
*clp
)
229 if (clp
->oname
!= NULL
)
237 * Initialize terminal information.
240 term_init(const char *name
, const char *ttype
)
244 /* Set up the terminal database information. */
245 setupterm(__UNCONST(ttype
), STDOUT_FILENO
, &err
);
248 (void)fprintf(stderr
,
249 "%s: No terminal database found\n", name
);
252 (void)fprintf(stderr
,
253 "%s: %s: unknown terminal type\n", name
, ttype
);
259 CL_PRIVATE *clp = GCLP(__global_list);
265 F_SET(clp
, CL_SIGHUP
);
266 clp
->killersig
= SIGHUP
;
274 F_SET(clp
, CL_SIGINT
);
282 F_SET(clp
, CL_SIGTERM
);
283 clp
->killersig
= SIGTERM
;
291 F_SET(clp
, CL_SIGWINCH
);
297 * Initialize signals.
299 * PUBLIC: int sig_init __P((GS *, SCR *));
302 sig_init(GS
*gp
, SCR
*sp
)
309 (void)sigemptyset(&__sigblockset
);
310 if (sigaddset(&__sigblockset
, SIGHUP
) ||
311 setsig(SIGHUP
, &clp
->oact
[INDX_HUP
], h_hup
) ||
312 sigaddset(&__sigblockset
, SIGINT
) ||
313 setsig(SIGINT
, &clp
->oact
[INDX_INT
], h_int
) ||
314 sigaddset(&__sigblockset
, SIGTERM
) ||
315 setsig(SIGTERM
, &clp
->oact
[INDX_TERM
], h_term
)
318 sigaddset(&__sigblockset
, SIGWINCH
) ||
319 setsig(SIGWINCH
, &clp
->oact
[INDX_WINCH
], h_winch
)
322 perr(gp
->progname
, NULL
);
326 if (setsig(SIGHUP
, NULL
, h_hup
) ||
327 setsig(SIGINT
, NULL
, h_int
) ||
328 setsig(SIGTERM
, NULL
, h_term
)
331 setsig(SIGWINCH
, NULL
, h_winch
)
334 msgq(sp
, M_SYSERR
, "signal-reset");
341 * Set a signal handler.
344 setsig(int signo
, struct sigaction
*oactp
, void (*handler
) (int))
346 struct sigaction act
;
349 * Use sigaction(2), not signal(3), since we don't always want to
350 * restart system calls. The example is when waiting for a command
351 * mode keystroke and SIGWINCH arrives. Besides, you can't portably
352 * restart system calls (thanks, POSIX!). On the other hand, you
353 * can't portably NOT restart system calls (thanks, Sun!). SunOS
354 * used SA_INTERRUPT as their extension to NOT restart read calls.
355 * We sure hope nobody else used it for anything else. Mom told me
356 * there'd be days like this. She just never told me that there'd
359 act
.sa_handler
= handler
;
360 sigemptyset(&act
.sa_mask
);
363 act
.sa_flags
= SA_INTERRUPT
;
367 return (sigaction(signo
, &act
, oactp
));
380 (void)sigaction(SIGHUP
, NULL
, &clp
->oact
[INDX_HUP
]);
381 (void)sigaction(SIGINT
, NULL
, &clp
->oact
[INDX_INT
]);
382 (void)sigaction(SIGTERM
, NULL
, &clp
->oact
[INDX_TERM
]);
384 (void)sigaction(SIGWINCH
, NULL
, &clp
->oact
[INDX_WINCH
]);
390 * Initialize the standard curses functions.
399 gp
->scr_addstr
= cl_addstr
;
400 gp
->scr_waddstr
= cl_waddstr
;
401 gp
->scr_attr
= cl_attr
;
402 gp
->scr_baud
= cl_baud
;
403 gp
->scr_bell
= cl_bell
;
405 gp
->scr_child
= NULL
;
406 gp
->scr_clrtoeol
= cl_clrtoeol
;
407 gp
->scr_cursor
= cl_cursor
;
408 gp
->scr_deleteln
= cl_deleteln
;
409 gp
->scr_reply
= NULL
;
410 gp
->scr_discard
= cl_discard
;
411 gp
->scr_event
= cl_event
;
412 gp
->scr_ex_adjust
= cl_ex_adjust
;
413 gp
->scr_fmap
= cl_fmap
;
414 gp
->scr_insertln
= cl_insertln
;
415 gp
->scr_keyval
= cl_keyval
;
416 gp
->scr_move
= cl_move
;
418 gp
->scr_optchange
= cl_optchange
;
419 gp
->scr_refresh
= cl_refresh
;
420 gp
->scr_rename
= cl_rename
;
421 gp
->scr_screen
= cl_screen
;
422 gp
->scr_split
= cl_split
;
423 gp
->scr_suspend
= cl_suspend
;
424 gp
->scr_usage
= cl_usage
;
429 * Print system error.
432 perr(const char *name
, const char *msg
)
434 (void)fprintf(stderr
, "%s:", name
);
436 (void)fprintf(stderr
, "%s:", msg
);
437 (void)fprintf(stderr
, "%s\n", strerror(errno
));