2000-04-19 17:52:39 +04:00
|
|
|
/* $NetBSD: setterm.c,v 1.18 2000/04/19 13:52:39 blymn Exp $ */
|
1997-07-22 11:36:20 +04:00
|
|
|
|
1993-08-07 09:51:11 +04:00
|
|
|
/*
|
1994-08-18 01:51:41 +04:00
|
|
|
* Copyright (c) 1981, 1993, 1994
|
1993-11-09 06:34:01 +03:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-08-07 09:51:11 +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-07-22 11:36:20 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-08-07 09:51:11 +04:00
|
|
|
#ifndef lint
|
1997-07-22 11:36:20 +04:00
|
|
|
#if 0
|
1998-01-30 07:33:32 +03:00
|
|
|
static char sccsid[] = "@(#)setterm.c 8.8 (Berkeley) 10/25/94";
|
1997-07-22 11:36:20 +04:00
|
|
|
#else
|
2000-04-19 17:52:39 +04:00
|
|
|
__RCSID("$NetBSD: setterm.c,v 1.18 2000/04/19 13:52:39 blymn Exp $");
|
1997-07-22 11:36:20 +04:00
|
|
|
#endif
|
1993-08-07 09:51:11 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1994-08-18 01:51:41 +04:00
|
|
|
#include <sys/ioctl.h> /* TIOCGWINSZ on old systems. */
|
1993-08-07 09:51:11 +04:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1994-08-18 01:51:41 +04:00
|
|
|
#include <termios.h>
|
1993-08-07 09:51:11 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
|
1994-08-18 01:51:41 +04:00
|
|
|
#include "curses.h"
|
2000-04-13 01:45:30 +04:00
|
|
|
#include "curses_private.h"
|
1994-08-18 01:51:41 +04:00
|
|
|
|
2000-04-19 17:52:39 +04:00
|
|
|
static int zap(struct tinfo *tinfo);
|
|
|
|
|
|
|
|
struct tinfo *_cursesi_genbuf;
|
1993-08-07 09:51:11 +04:00
|
|
|
|
|
|
|
static char *sflags[] = {
|
2000-04-13 01:45:30 +04:00
|
|
|
/* am be bs cc da eo hc hl */
|
|
|
|
&AM, &BE, &BS, &CC, &DA, &EO, &HC, &HL,
|
|
|
|
/* in mi ms nc ns os ul xb */
|
|
|
|
&IN, &MI, &MS, &NC, &NS, &OS, &UL, &XB,
|
|
|
|
/* xn xt xs xx */
|
|
|
|
&XN, &XT, &XS, &XX
|
1993-08-07 09:51:11 +04:00
|
|
|
};
|
|
|
|
|
2000-04-13 01:45:30 +04:00
|
|
|
static int *svals[] = {
|
|
|
|
/* pa Co */
|
|
|
|
&PA, &cO, &nc
|
|
|
|
};
|
1993-08-07 09:51:11 +04:00
|
|
|
static char *_PC,
|
|
|
|
**sstrs[] = {
|
2000-04-11 17:57:08 +04:00
|
|
|
/* AC AE AL AS bc bl bt cd ce */
|
|
|
|
&AC, &AE, &AL, &AS, &BC, &BL, &BT, &CD, &CE,
|
|
|
|
/* cl cm cr cs dc DL dm do eA */
|
|
|
|
&CL, &CM, &CR, &CS, &DC, &DL, &DM, &DO, &Ea,
|
|
|
|
/* ed ei k0 k1 k2 k3 k4 k5 k6 */
|
|
|
|
&ED, &EI, &K0, &K1, &K2, &K3, &K4, &K5, &K6,
|
|
|
|
/* k7 k8 k9 ho ic im ip kd ke */
|
|
|
|
&K7, &K8, &K9, &HO, &IC, &IM, &IP, &KD, &KE,
|
|
|
|
/* kh kl kr ks ku ll ma mb md */
|
|
|
|
&KH, &KL, &KR, &KS, &KU, &LL, &MA, &MB, &MD,
|
2000-04-13 01:45:30 +04:00
|
|
|
/* me mh mk mp mr nd nl oc op */
|
|
|
|
&ME, &MH, &MK, &MP, &MR, &ND, &NL, &OC, &OP,
|
|
|
|
/* pc rc sc se SF so sp SR ta */
|
|
|
|
&_PC, &RC, &SC, &SE, &SF, &SO, &SP, &SR, &TA,
|
|
|
|
/* te ti uc ue up us vb vs ve */
|
|
|
|
&TE, &TI, &UC, &UE, &UP, &US, &VB, &VS, &VE,
|
|
|
|
/* AB AF al dl Ic Ip Sb Sf sf */
|
|
|
|
&ab, &af, &al, &dl, &iC, &iP, &sB, &sF, &sf,
|
|
|
|
/* sr AL DL UP DO */
|
2000-04-11 17:57:08 +04:00
|
|
|
&sr, &AL_PARM, &DL_PARM, &UP_PARM, &DOWN_PARM,
|
2000-04-13 01:45:30 +04:00
|
|
|
/* LE RI */
|
2000-04-11 17:57:08 +04:00
|
|
|
&LEFT_PARM, &RIGHT_PARM,
|
1993-08-07 09:51:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static char *aoftspace; /* Address of _tspace for relocation */
|
2000-04-19 17:52:39 +04:00
|
|
|
static char *tspace; /* Space for capability strings */
|
|
|
|
static size_t tspace_size; /* size of tspace */
|
1993-08-07 09:51:11 +04:00
|
|
|
|
|
|
|
char *ttytype;
|
|
|
|
|
|
|
|
int
|
2000-04-15 17:17:02 +04:00
|
|
|
setterm(char *type)
|
1993-08-07 09:51:11 +04:00
|
|
|
{
|
2000-04-19 17:52:39 +04:00
|
|
|
static char __ttytype[128], cm_buff[1024], tc[1024], *tcptr;
|
1998-02-03 22:12:13 +03:00
|
|
|
int unknown;
|
2000-04-19 17:52:39 +04:00
|
|
|
size_t limit;
|
1993-08-07 09:51:11 +04:00
|
|
|
struct winsize win;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
1993-11-09 06:34:01 +03:00
|
|
|
__CTRACE("setterm: (\"%s\")\nLINES = %d, COLS = %d\n",
|
1993-08-07 09:51:11 +04:00
|
|
|
type, LINES, COLS);
|
|
|
|
#endif
|
|
|
|
if (type[0] == '\0')
|
|
|
|
type = "xx";
|
|
|
|
unknown = 0;
|
2000-04-19 17:52:39 +04:00
|
|
|
if (t_getent(&_cursesi_genbuf, type) != 1) {
|
1993-08-07 09:51:11 +04:00
|
|
|
unknown++;
|
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
1993-11-09 06:34:01 +03:00
|
|
|
__CTRACE("setterm: tty = %s\n", type);
|
1993-08-07 09:51:11 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Try TIOCGWINSZ, and, if it fails, the termcap entry. */
|
|
|
|
if (ioctl(STDERR_FILENO, TIOCGWINSZ, &win) != -1 &&
|
|
|
|
win.ws_row != 0 && win.ws_col != 0) {
|
|
|
|
LINES = win.ws_row;
|
|
|
|
COLS = win.ws_col;
|
|
|
|
} else {
|
2000-04-19 17:52:39 +04:00
|
|
|
if (unknown) {
|
|
|
|
LINES = -1;
|
|
|
|
COLS = -1;
|
|
|
|
} else {
|
|
|
|
LINES = t_getnum(_cursesi_genbuf, "li");
|
|
|
|
COLS = t_getnum(_cursesi_genbuf, "co");
|
|
|
|
}
|
|
|
|
|
1993-08-07 09:51:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* POSIX 1003.2 requires that the environment override. */
|
1994-01-24 11:36:38 +03:00
|
|
|
if ((p = getenv("LINES")) != NULL)
|
1999-04-13 18:08:17 +04:00
|
|
|
LINES = (int) strtol(p, NULL, 10);
|
1993-08-07 09:51:11 +04:00
|
|
|
if ((p = getenv("COLUMNS")) != NULL)
|
1999-04-13 18:08:17 +04:00
|
|
|
COLS = (int) strtol(p, NULL, 10);
|
1993-08-07 09:51:11 +04:00
|
|
|
|
|
|
|
/*
|
1993-11-09 06:34:01 +03:00
|
|
|
* Want cols > 4, otherwise things will fail.
|
1993-08-07 09:51:11 +04:00
|
|
|
*/
|
1993-11-09 06:34:01 +03:00
|
|
|
if (COLS <= 4)
|
1993-08-07 09:51:11 +04:00
|
|
|
return (ERR);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
1993-11-09 06:34:01 +03:00
|
|
|
__CTRACE("setterm: LINES = %d, COLS = %d\n", LINES, COLS);
|
1993-08-07 09:51:11 +04:00
|
|
|
#endif
|
2000-04-19 17:52:39 +04:00
|
|
|
if (!unknown) {
|
|
|
|
if (zap(_cursesi_genbuf) == ERR) /* Get terminal description.*/
|
|
|
|
return ERR;
|
|
|
|
}
|
|
|
|
|
1993-11-09 06:34:01 +03:00
|
|
|
/* If we can't tab, we can't backtab, either. */
|
|
|
|
if (!GT)
|
1993-08-07 09:51:11 +04:00
|
|
|
BT = NULL;
|
|
|
|
|
1993-11-09 06:34:01 +03:00
|
|
|
/*
|
2000-04-19 17:52:39 +04:00
|
|
|
* Test for cursor motion capability.
|
1993-11-09 06:34:01 +03:00
|
|
|
*
|
|
|
|
*/
|
2000-04-19 17:52:39 +04:00
|
|
|
if (t_goto(_cursesi_genbuf, CM, 0, 0, cm_buff, 1023) < 0) {
|
1993-08-07 09:51:11 +04:00
|
|
|
CA = 0;
|
|
|
|
CM = 0;
|
|
|
|
} else
|
|
|
|
CA = 1;
|
|
|
|
|
|
|
|
PC = _PC ? _PC[0] : 0;
|
|
|
|
aoftspace = tspace;
|
2000-04-19 17:52:39 +04:00
|
|
|
if (unknown) {
|
|
|
|
strcpy(ttytype, "dumb");
|
|
|
|
} else {
|
|
|
|
tcptr = tc;
|
|
|
|
limit = 1023;
|
|
|
|
if (t_getterm(_cursesi_genbuf, &tcptr, &limit) < 0)
|
|
|
|
return ERR;
|
|
|
|
ttytype = __longname(tc, __ttytype);
|
|
|
|
}
|
|
|
|
|
1994-08-18 01:51:41 +04:00
|
|
|
/* If no scrolling commands, no quick change. */
|
|
|
|
__noqch =
|
2000-04-19 17:52:39 +04:00
|
|
|
(CS == NULL || HO == NULL ||
|
1997-07-22 11:36:20 +04:00
|
|
|
(SF == NULL && sf == NULL) || (SR == NULL && sr == NULL)) &&
|
|
|
|
((AL == NULL && al == NULL) || (DL == NULL && dl == NULL));
|
1993-11-09 06:34:01 +03:00
|
|
|
|
1993-08-07 09:51:11 +04:00
|
|
|
return (unknown ? ERR : OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* zap --
|
|
|
|
* Gets all the terminal flags from the termcap database.
|
|
|
|
*/
|
2000-04-19 17:52:39 +04:00
|
|
|
static int
|
|
|
|
zap(struct tinfo *tinfo)
|
1993-08-07 09:51:11 +04:00
|
|
|
{
|
2000-04-17 16:25:45 +04:00
|
|
|
const char *namp;
|
|
|
|
char ***sp;
|
2000-04-13 01:45:30 +04:00
|
|
|
int **vp;
|
1998-02-03 22:12:13 +03:00
|
|
|
char **fp;
|
1993-11-09 06:34:01 +03:00
|
|
|
char tmp[3];
|
2000-04-19 17:52:39 +04:00
|
|
|
size_t i;
|
1993-08-07 09:51:11 +04:00
|
|
|
#ifdef DEBUG
|
1998-02-03 22:12:13 +03:00
|
|
|
char *cp;
|
1993-08-07 09:51:11 +04:00
|
|
|
#endif
|
1993-11-09 06:34:01 +03:00
|
|
|
tmp[2] = '\0';
|
1993-08-07 09:51:11 +04:00
|
|
|
|
2000-04-13 01:45:30 +04:00
|
|
|
namp = "ambebsccdaeohchlinmimsncnsosulxbxnxtxsxx";
|
1993-08-07 09:51:11 +04:00
|
|
|
fp = sflags;
|
|
|
|
do {
|
1993-11-09 06:34:01 +03:00
|
|
|
*tmp = *namp;
|
|
|
|
*(tmp + 1) = *(namp + 1);
|
2000-04-19 17:52:39 +04:00
|
|
|
*(*fp++) = t_getflag(tinfo, tmp);
|
1993-08-07 09:51:11 +04:00
|
|
|
#ifdef DEBUG
|
1999-04-13 18:08:17 +04:00
|
|
|
__CTRACE("%2.2s = %s\n", namp, *fp[-1] ? "TRUE" : "FALSE");
|
1993-08-07 09:51:11 +04:00
|
|
|
#endif
|
|
|
|
namp += 2;
|
1999-06-28 17:32:43 +04:00
|
|
|
|
1993-08-07 09:51:11 +04:00
|
|
|
} while (*namp);
|
2000-04-13 01:45:30 +04:00
|
|
|
namp = "paCoNC";
|
|
|
|
vp = svals;
|
|
|
|
do {
|
|
|
|
*tmp = *namp;
|
|
|
|
*(tmp + 1) = *(namp + 1);
|
2000-04-19 17:52:39 +04:00
|
|
|
*(*vp++) = t_getnum(tinfo, tmp);
|
2000-04-13 01:45:30 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
__CTRACE("%2.2s = %d\n", namp, *vp[-1]);
|
|
|
|
#endif
|
|
|
|
namp += 2;
|
|
|
|
|
|
|
|
} while (*namp);
|
2000-04-19 17:52:39 +04:00
|
|
|
|
|
|
|
/* calculate the size of tspace.... */
|
|
|
|
namp = "acaeALasbcblbtcdceclcmcrcsdcDLdmdoeAedeik0k1k2k3k4k5k6k7k8k9hoicimipkdkekhklkrkskullmambmdmemhmkmpmrndnlocoppcprscseSFsospSRtatetiucueupusvbvsveABAFaldlIcIpSbSfsfsrALDLUPDOLERI";
|
|
|
|
tspace_size = 0;
|
|
|
|
do {
|
|
|
|
*tmp = *namp;
|
|
|
|
*(tmp + 1) = *(namp + 1);
|
|
|
|
t_getstr(tinfo, tmp, NULL, &i);
|
|
|
|
tspace_size += i;
|
|
|
|
namp += 2;
|
|
|
|
} while (*namp);
|
|
|
|
|
|
|
|
if ((tspace = (char *) malloc(tspace_size)) == NULL)
|
|
|
|
return ERR;
|
|
|
|
#ifdef DEBUG
|
|
|
|
__CTRACE("Allocated %d (0x%x) size buffer for tspace\n", tspace_size,
|
|
|
|
tspace_size);
|
|
|
|
#endif
|
|
|
|
aoftspace = tspace;
|
|
|
|
|
2000-04-13 01:45:30 +04:00
|
|
|
namp = "acaeALasbcblbtcdceclcmcrcsdcDLdmdoeAedeik0k1k2k3k4k5k6k7k8k9hoicimipkdkekhklkrkskullmambmdmemhmkmpmrndnlocoppcprscseSFsospSRtatetiucueupusvbvsveABAFaldlIcIpSbSfsfsrALDLUPDOLERI";
|
1993-08-07 09:51:11 +04:00
|
|
|
sp = sstrs;
|
|
|
|
do {
|
1993-11-09 06:34:01 +03:00
|
|
|
*tmp = *namp;
|
|
|
|
*(tmp + 1) = *(namp + 1);
|
2000-04-19 17:52:39 +04:00
|
|
|
*(*sp++) = t_getstr(tinfo, tmp, &aoftspace, NULL);
|
1993-08-07 09:51:11 +04:00
|
|
|
#ifdef DEBUG
|
1999-04-13 18:08:17 +04:00
|
|
|
__CTRACE("%2.2s = %s", namp, *sp[-1] == NULL ? "NULL\n" : "\"");
|
1993-08-07 09:51:11 +04:00
|
|
|
if (*sp[-1] != NULL) {
|
|
|
|
for (cp = *sp[-1]; *cp; cp++)
|
1999-12-07 06:18:52 +03:00
|
|
|
__CTRACE("%s", unctrl(*cp));
|
1993-11-09 06:34:01 +03:00
|
|
|
__CTRACE("\"\n");
|
1993-08-07 09:51:11 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
namp += 2;
|
|
|
|
} while (*namp);
|
|
|
|
if (XS)
|
|
|
|
SO = SE = NULL;
|
|
|
|
else {
|
2000-04-19 17:52:39 +04:00
|
|
|
if (t_getnum(tinfo, "sg") > 0)
|
1993-08-07 09:51:11 +04:00
|
|
|
SO = NULL;
|
2000-04-19 17:52:39 +04:00
|
|
|
if (t_getnum(tinfo, "ug") > 0)
|
1993-08-07 09:51:11 +04:00
|
|
|
US = NULL;
|
|
|
|
if (!SO && US) {
|
|
|
|
SO = US;
|
|
|
|
SE = UE;
|
|
|
|
}
|
|
|
|
}
|
2000-04-19 17:52:39 +04:00
|
|
|
|
|
|
|
return OK;
|
1993-08-07 09:51:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* getcap --
|
|
|
|
* Return a capability from termcap.
|
|
|
|
*/
|
1999-04-13 18:08:17 +04:00
|
|
|
char *
|
2000-04-15 17:17:02 +04:00
|
|
|
getcap(char *name)
|
1993-08-07 09:51:11 +04:00
|
|
|
{
|
2000-04-19 17:52:39 +04:00
|
|
|
size_t ent_size, offset;
|
|
|
|
char *new_tspace;
|
|
|
|
|
|
|
|
/* verify cap exists and grab size of it at the same time */
|
|
|
|
if (t_getstr(_cursesi_genbuf, name, NULL, &ent_size) == ERR)
|
|
|
|
return ERR;
|
|
|
|
|
|
|
|
/* grow tspace to hold the new cap */
|
|
|
|
if ((new_tspace = realloc(tspace, ent_size + tspace_size)) == NULL)
|
|
|
|
return ERR;
|
|
|
|
|
|
|
|
/* point aoftspace to the same place in the newly allocated buffer */
|
|
|
|
offset = aoftspace - tspace;
|
|
|
|
tspace = new_tspace + offset;
|
|
|
|
|
|
|
|
return (t_getstr(_cursesi_genbuf, name, &aoftspace, NULL));
|
1993-08-07 09:51:11 +04:00
|
|
|
}
|