1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/***************************************************************************
* COPYRIGHT NOTICE *
****************************************************************************
* ncurses is copyright (C) 1992-1995 *
* Zeyd M. Ben-Halim *
* zmbenhal@netcom.com *
* Eric S. Raymond *
* esr@snark.thyrsus.com *
* *
* Permission is hereby granted to reproduce and distribute ncurses *
* by any means and for any fee, whether alone or as part of a *
* larger distribution, in source or in binary form, PROVIDED *
* this notice is included with any such distribution, and is not *
* removed from any of its header files. Mention of ncurses in any *
* applications linked with it is highly appreciated. *
* *
* ncurses comes AS IS with no warranty, implied or expressed. *
* *
***************************************************************************/
/*
* Terminal setup routines common to termcap and terminfo:
*
* use_env(bool)
* setupterm(char *, int, int *)
*/
#include "curses.priv.h"
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#if !HAVE_EXTERN_ERRNO
extern int errno;
#endif
#ifdef SVR4_TERMIO
#define _POSIX_SOURCE
#endif
#include "term.h" /* lines, columns, cur_term */
/****************************************************************************
*
* Terminal size computation
*
****************************************************************************/
#if !defined(sun) || !HAVE_TERMIOS_H
#include <sys/ioctl.h>
#endif
static int _use_env = TRUE;
static void do_prototype(void);
void use_env(bool f)
{
_use_env = f;
}
int LINES, COLS, TABSIZE;
void _nc_get_screensize(void)
/* set LINES and COLS from the environment and/or terminfo entry */
{
char *rows, *cols;
/* figure out the size of the screen */
T(("screen size: terminfo lines = %d columns = %d", lines, columns));
if (!_use_env)
{
LINES = (int)lines;
COLS = (int)columns;
}
else /* usually want to query LINES and COLUMNS from environment */
{
LINES = COLS = 0;
/* first, look for environment variables */
rows = getenv("LINES");
if (rows != (char *)NULL)
LINES = atoi(rows);
cols = getenv("COLUMNS");
if (cols != (char *)NULL)
COLS = atoi(cols);
T(("screen size: environment LINES = %d COLUMNS = %d",LINES,COLS));
#if defined(TIOCGWINSZ) && !defined(BROKEN_TIOCGWINSZ)
/* if that didn't work, maybe we can try asking the OS */
if (LINES <= 0 || COLS <= 0)
{
if (isatty(cur_term->Filedes))
{
struct winsize size;
errno = 0;
do {
if (ioctl(cur_term->Filedes, TIOCGWINSZ, &size) < 0
&& errno != EINTR)
goto failure;
} while
(errno == EINTR);
LINES = (int)size.ws_row;
COLS = (int)size.ws_col;
}
/* FALLTHRU */
failure:;
}
#endif /* defined(TIOCGWINSZ) && !defined(BROKEN_TIOCGWINSZ) */
/* if we can't get dynamic info about the size, use static */
if (LINES <= 0 || COLS <= 0)
if (lines > 0 && columns > 0)
{
LINES = (int)lines;
COLS = (int)columns;
}
/* the ultimate fallback, assume fixed 24x80 size */
if (LINES <= 0 || COLS <= 0)
{
LINES = 24;
COLS = 80;
}
/*
* Put the derived values back in the screen-size caps, so
* tigetnum() and tgetnum() will do the right thing.
*/
lines = (short)LINES;
columns = (short)COLS;
}
T(("screen size is %dx%d", LINES, COLS));
#ifdef init_tabs
if (init_tabs != -1)
TABSIZE = (int)init_tabs;
else
#endif /* init_tabs */
TABSIZE = 8;
T(("TABSIZE = %d", TABSIZE));
}
/****************************************************************************
*
* Terminal setup
*
****************************************************************************/
#define ret_error(code, fmt, arg) if (errret) {\
*errret = code;\
return(ERR);\
} else {\
fprintf(stderr, fmt, arg);\
exit(1);\
}
#define ret_error0(code, msg) if (errret) {\
*errret = code;\
return(ERR);\
} else {\
fprintf(stderr, msg);\
exit(1);\
}
static int grab_entry(const char *const tn, TERMTYPE *const tp)
/* return 1 if entry found, 0 if not found, -1 if database not accessible */
{
char filename[PATH_MAX];
int status;
if ((status = _nc_read_entry(tn, filename, tp)) == 1)
return(1);
#ifndef PURE_TERMINFO
/*
* Try falling back on the termcap file. Note: allowing this call
* links the entire terminfo/termcap compiler into the startup code.
* It's preferable to build a real terminfo database and use that.
*/
status = _nc_read_termcap_entry(tn, tp);
#endif /* PURE_TERMINFO */
return(status);
}
char ttytype[NAMESIZE];
/*
* setupterm(termname, Filedes, errret)
*
* Find and read the appropriate object file for the terminal
* Make cur_term point to the structure.
*
*/
int setupterm(const char *tname, int Filedes, int *errret)
{
struct term *term_ptr;
T(("setupterm(%s,%d,%p) called", tname, Filedes, errret));
if (tname == NULL) {
tname = getenv("TERM");
if (tname == NULL)
ret_error0(-1, "TERM environment variable not set.\n");
}
T(("your terminal name is %s", tname));
if (_nc_name_match(ttytype, tname, "|") == FALSE || isendwin()) {
int status;
if (isendwin()) {
T(("deleting cur_term"));
T(("must be resizing"));
del_curterm(cur_term);
}
term_ptr = (struct term *) calloc(1, sizeof(struct term));
if (term_ptr == NULL)
ret_error0(-1, "Not enough memory to create terminal structure.\n") ;
status = grab_entry(tname, &term_ptr->type);
/* try fallback list if entry on disk */
if (status != 1)
{
const TERMTYPE *fallback = _nc_fallback(tname);
if (fallback)
{
memcpy(&term_ptr->type, fallback, sizeof(TERMTYPE));
status = 1;
}
}
if (status == -1)
{
ret_error0(-1, "terminals database is inaccessible\n");
}
else if (status == 0)
{
ret_error(0, "'%s': unknown terminal type.\n", tname);
}
cur_term = term_ptr;
if (generic_type)
ret_error(0, "'%s': I need something more specific.\n", tname);
if (hard_copy)
ret_error(1, "'%s': I can't handle hardcopy terminals.\n", tname);
if (command_character && getenv("CC"))
do_prototype();
strncpy(ttytype, cur_term->type.term_names, NAMESIZE - 1);
ttytype[NAMESIZE - 1] = '\0';
/*
* Allow output redirection. This is what SVr3 does.
* If stdout is directed to a file, screen updates go
* to standard error.
*/
if (Filedes == STDOUT_FILENO && !isatty(Filedes))
Filedes = STDERR_FILENO;
cur_term->Filedes = Filedes;
_nc_get_screensize();
}
if (errret)
*errret = 1;
return(OK);
}
/*
** do_prototype()
**
** Take the real command character out of the CC environment variable
** and substitute it in for the prototype given in 'command_character'.
**
*/
static void
do_prototype(void)
{
int i, j;
char CC;
char proto;
char *tmp;
tmp = getenv("CC");
CC = *tmp;
proto = *command_character;
for (i=0; i < STRCOUNT; i++) {
j = 0;
while (cur_term->type.Strings[i][j]) {
if (cur_term->type.Strings[i][j] == proto)
cur_term->type.Strings[i][j] = CC;
j++;
}
}
}
|