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
|
/*
* termsbr.c -- termcap support
*
* $Id: termsbr.c,v 1.5 2008/04/11 14:12:55 opk Exp $
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include <h/mh.h>
#ifdef HAVE_TERMIOS_H
# include <termios.h>
#else
# ifdef HAVE_TERMIO_H
# include <termio.h>
# else
# include <sgtty.h>
# endif
#endif
#ifdef HAVE_TERMCAP_H
# include <termcap.h>
#endif
/* <sys/ioctl.h> is need anyway for ioctl()
#ifdef GWINSZ_IN_SYS_IOCTL
*/
# include <sys/ioctl.h>
/*
#endif
*/
#ifdef WINSIZE_IN_PTEM
# include <sys/stream.h>
# include <sys/ptem.h>
#endif
#if BUFSIZ<2048
# define TXTSIZ 2048
#else
# define TXTSIZ BUFSIZ
#endif
/*
* These variables are sometimes defined in,
* and needed by the termcap library.
*/
#ifdef HAVE_OSPEED
# ifdef MUST_DEFINE_OSPEED
extern short ospeed;
extern char PC;
# endif
#else
short ospeed;
char PC;
#endif
static long speedcode;
static int initLI = 0;
static int initCO = 0;
static int HC = 0; /* are we on a hardcopy terminal? */
static int LI = 40; /* number of lines */
static int CO = 80; /* number of colums */
static char *CL = NULL; /* termcap string to clear screen */
static char *SE = NULL; /* termcap string to end standout mode */
static char *SO = NULL; /* termcap string to begin standout mode */
static char termcap[TXTSIZ];
static void
read_termcap(void)
{
char *bp, *cp;
char *term;
#ifndef TGETENT_ACCEPTS_NULL
char termbuf[TXTSIZ];
#endif
#ifdef HAVE_TERMIOS_H
struct termios tio;
#else
# ifdef HAVE_TERMIO_H
struct termio tio;
# else
struct sgttyb tio;
# endif
#endif
static int inited = 0;
if (inited++)
return;
if (!(term = getenv ("TERM")))
return;
/*
* If possible, we let tgetent allocate its own termcap buffer
*/
#ifdef TGETENT_ACCEPTS_NULL
if (tgetent (NULL, term) != TGETENT_SUCCESS)
return;
#else
if (tgetent (termbuf, term) != TGETENT_SUCCESS)
return;
#endif
#ifdef HAVE_TERMIOS_H
speedcode = cfgetospeed(&tio);
#else
# ifdef HAVE_TERMIO_H
speedcode = ioctl(fileno(stdout), TCGETA, &tio) != NOTOK ? tio.c_cflag & CBAUD : 0;
# else
speedcode = ioctl(fileno(stdout), TIOCGETP, (char *) &tio) != NOTOK ? tio.sg_ospeed : 0;
# endif
#endif
HC = tgetflag ("hc");
if (!initCO && (CO = tgetnum ("co")) <= 0)
CO = 80;
if (!initLI && (LI = tgetnum ("li")) <= 0)
LI = 24;
cp = termcap;
CL = tgetstr ("cl", &cp);
if ((bp = tgetstr ("pc", &cp)))
PC = *bp;
if (tgetnum ("sg") <= 0) {
SE = tgetstr ("se", &cp);
SO = tgetstr ("so", &cp);
}
}
int
sc_width (void)
{
#ifdef TIOCGWINSZ
struct winsize win;
int width;
if (ioctl (fileno (stderr), TIOCGWINSZ, &win) != NOTOK
&& (width = win.ws_col) > 0) {
CO = width;
initCO++;
} else
#endif /* TIOCGWINSZ */
read_termcap();
return CO;
}
int
sc_length (void)
{
#ifdef TIOCGWINSZ
struct winsize win;
if (ioctl (fileno (stderr), TIOCGWINSZ, &win) != NOTOK
&& (LI = win.ws_row) > 0)
initLI++;
else
#endif /* TIOCGWINSZ */
read_termcap();
return LI;
}
static int
outc (int c)
{
return putchar(c);
}
void
clear_screen (void)
{
read_termcap ();
if (CL && speedcode)
tputs (CL, LI, outc);
else {
printf ("\f");
if (speedcode)
printf ("\200");
}
fflush (stdout);
}
/*
* print in standout mode
*/
int
SOprintf (char *fmt, ...)
{
va_list ap;
read_termcap ();
if (!(SO && SE))
return NOTOK;
tputs (SO, 1, outc);
va_start(ap, fmt);
vprintf (fmt, ap);
va_end(ap);
tputs (SE, 1, outc);
return OK;
}
/*
* Is this a hardcopy terminal?
*/
int
sc_hardcopy(void)
{
read_termcap();
return HC;
}
|