2000-05-31 09:50:05 +04:00
|
|
|
/* $NetBSD: term.c,v 1.14 2000/05/31 05:50:06 blymn Exp $ */
|
1994-12-07 08:08:04 +03:00
|
|
|
|
1993-04-09 16:58:42 +04:00
|
|
|
/*-
|
1994-12-07 08:08:04 +03:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-04-09 16:58:42 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-10-14 06:07:55 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-04-09 16:58:42 +04:00
|
|
|
#ifndef lint
|
1994-12-07 08:08:04 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)term.c 8.1 (Berkeley) 6/9/93";
|
|
|
|
#endif
|
2000-05-31 09:50:05 +04:00
|
|
|
__RCSID("$NetBSD: term.c,v 1.14 2000/05/31 05:50:06 blymn Exp $");
|
1993-04-09 16:58:42 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1997-10-20 05:07:48 +04:00
|
|
|
#include <err.h>
|
1993-04-09 16:58:42 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1997-10-14 06:07:55 +04:00
|
|
|
#include <termcap.h>
|
|
|
|
#include <ttyent.h>
|
|
|
|
#include <unistd.h>
|
1993-04-09 16:58:42 +04:00
|
|
|
#include "extern.h"
|
|
|
|
|
2000-05-25 16:53:55 +04:00
|
|
|
char *tbuf; /* Termcap entry. */
|
1993-04-09 16:58:42 +04:00
|
|
|
|
1998-07-27 03:03:30 +04:00
|
|
|
const char *askuser __P((const char *));
|
1993-04-09 16:58:42 +04:00
|
|
|
char *ttys __P((char *));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure out what kind of terminal we're dealing with, and then read in
|
|
|
|
* its termcap entry.
|
|
|
|
*/
|
1998-07-27 03:03:30 +04:00
|
|
|
const char *
|
2000-05-31 09:50:05 +04:00
|
|
|
get_termcap_entry(userarg, tcapbufp, extended)
|
1998-07-27 03:03:30 +04:00
|
|
|
const char *userarg;
|
|
|
|
char **tcapbufp;
|
2000-05-31 09:50:05 +04:00
|
|
|
int extended;
|
1993-04-09 16:58:42 +04:00
|
|
|
{
|
|
|
|
struct ttyent *t;
|
|
|
|
int rval;
|
1998-07-27 03:03:30 +04:00
|
|
|
char *p, *ttypath;
|
|
|
|
const char *ttype;
|
2000-05-25 16:53:55 +04:00
|
|
|
char zz[1024], *zz_ptr;
|
|
|
|
char *ext_tc, *newptr;
|
1993-04-09 16:58:42 +04:00
|
|
|
|
|
|
|
if (userarg) {
|
|
|
|
ttype = userarg;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try the environment. */
|
1997-10-14 06:07:55 +04:00
|
|
|
if ((ttype = getenv("TERM")) != NULL)
|
1993-04-09 16:58:42 +04:00
|
|
|
goto map;
|
|
|
|
|
|
|
|
/* Try ttyname(3); check for dialup or other mapping. */
|
1997-10-14 06:07:55 +04:00
|
|
|
if ((ttypath = ttyname(STDERR_FILENO)) != NULL) {
|
|
|
|
if ((p = strrchr(ttypath, '/')) != NULL)
|
1993-05-18 11:37:51 +04:00
|
|
|
++p;
|
1993-04-09 16:58:42 +04:00
|
|
|
else
|
1993-05-18 11:37:51 +04:00
|
|
|
p = ttypath;
|
|
|
|
if ((t = getttynam(p))) {
|
1993-04-09 16:58:42 +04:00
|
|
|
ttype = t->ty_type;
|
|
|
|
goto map;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If still undefined, use "unknown". */
|
|
|
|
ttype = "unknown";
|
|
|
|
|
|
|
|
map: ttype = mapped(ttype);
|
|
|
|
|
|
|
|
/*
|
1993-05-18 11:37:51 +04:00
|
|
|
* If not a path, remove TERMCAP from the environment so we get a
|
|
|
|
* real entry from /etc/termcap. This prevents us from being fooled
|
|
|
|
* by out of date stuff in the environment.
|
1993-04-09 16:58:42 +04:00
|
|
|
*/
|
1993-05-18 11:37:51 +04:00
|
|
|
found: if ((p = getenv("TERMCAP")) != NULL && *p != '/')
|
|
|
|
unsetenv("TERMCAP");
|
1993-04-09 16:58:42 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ttype now contains a pointer to the type of the terminal.
|
|
|
|
* If the first character is '?', ask the user.
|
|
|
|
*/
|
1998-08-26 00:59:36 +04:00
|
|
|
if (ttype[0] == '?') {
|
1993-05-18 11:37:51 +04:00
|
|
|
if (ttype[1] != '\0')
|
|
|
|
ttype = askuser(ttype + 1);
|
|
|
|
else
|
|
|
|
ttype = askuser(NULL);
|
1998-08-26 00:59:36 +04:00
|
|
|
}
|
1993-04-09 16:58:42 +04:00
|
|
|
/* Find the termcap entry. If it doesn't exist, ask the user. */
|
2000-05-25 16:53:55 +04:00
|
|
|
if ((tbuf = (char *) malloc(1024)) == NULL) {
|
|
|
|
fprintf(stderr, "Could not malloc termcap buffer\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1993-04-09 16:58:42 +04:00
|
|
|
while ((rval = tgetent(tbuf, ttype)) == 0) {
|
1997-10-20 05:07:48 +04:00
|
|
|
warnx("terminal type %s is unknown", ttype);
|
1993-04-09 16:58:42 +04:00
|
|
|
ttype = askuser(NULL);
|
|
|
|
}
|
1997-10-20 05:07:48 +04:00
|
|
|
if (rval == -1) {
|
|
|
|
if (!errno)
|
|
|
|
errno = ENOENT;
|
1999-11-09 18:06:30 +03:00
|
|
|
err(1, NULL);
|
1997-10-20 05:07:48 +04:00
|
|
|
}
|
2000-05-25 16:53:55 +04:00
|
|
|
|
|
|
|
/* check if we get a truncated termcap entry, fish back the full
|
2000-05-31 09:50:05 +04:00
|
|
|
* one if need be and the user has asked for it.
|
2000-05-25 16:53:55 +04:00
|
|
|
*/
|
|
|
|
zz_ptr = zz;
|
2000-05-31 09:50:05 +04:00
|
|
|
if ((extended == 1) && (tgetstr("ZZ", &zz_ptr) != NULL)) {
|
2000-05-25 16:53:55 +04:00
|
|
|
/* it was, fish back the full termcap */
|
|
|
|
sscanf(zz, "%p", &ext_tc);
|
|
|
|
if ((newptr = (char *) realloc(tbuf, strlen(ext_tc) + 1))
|
|
|
|
== NULL) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"reallocate of termcap falied\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(newptr, ext_tc);
|
|
|
|
tbuf = newptr;
|
|
|
|
}
|
|
|
|
|
1993-04-09 16:58:42 +04:00
|
|
|
*tcapbufp = tbuf;
|
|
|
|
return (ttype);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prompt the user for a terminal type. */
|
1998-07-27 03:03:30 +04:00
|
|
|
const char *
|
1993-04-09 16:58:42 +04:00
|
|
|
askuser(dflt)
|
1998-07-27 03:03:30 +04:00
|
|
|
const char *dflt;
|
1993-04-09 16:58:42 +04:00
|
|
|
{
|
|
|
|
static char answer[256];
|
|
|
|
char *p;
|
|
|
|
|
1993-05-18 11:37:51 +04:00
|
|
|
/* We can get recalled; if so, don't continue uselessly. */
|
|
|
|
if (feof(stdin) || ferror(stdin)) {
|
|
|
|
(void)fprintf(stderr, "\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
1993-04-09 16:58:42 +04:00
|
|
|
for (;;) {
|
|
|
|
if (dflt)
|
|
|
|
(void)fprintf(stderr, "Terminal type? [%s] ", dflt);
|
|
|
|
else
|
|
|
|
(void)fprintf(stderr, "Terminal type? ");
|
|
|
|
(void)fflush(stderr);
|
|
|
|
|
1993-04-10 01:36:14 +04:00
|
|
|
if (fgets(answer, sizeof(answer), stdin) == NULL) {
|
1993-05-18 11:37:51 +04:00
|
|
|
if (dflt == NULL) {
|
|
|
|
(void)fprintf(stderr, "\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return (dflt);
|
1993-04-10 01:36:14 +04:00
|
|
|
}
|
1993-04-09 16:58:42 +04:00
|
|
|
|
1997-10-14 06:07:55 +04:00
|
|
|
if ((p = strchr(answer, '\n')) != NULL)
|
1993-04-09 16:58:42 +04:00
|
|
|
*p = '\0';
|
1993-05-18 11:37:51 +04:00
|
|
|
if (answer[0])
|
|
|
|
return (answer);
|
|
|
|
if (dflt != NULL)
|
|
|
|
return (dflt);
|
1993-04-09 16:58:42 +04:00
|
|
|
}
|
|
|
|
}
|