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
|
/* tterm.c - minimalist information on the terminal
Copyright 1998-2017 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <inttypes.h>
#include <limits.h>
#include <termios.h>
#include <sys/ioctl.h>
#include "xstrtol.h"
#include "quotearg.h"
#include "error.h"
#include "tterm.h"
struct tterm
{
/* The number of chars per hardware tab stop. Setting this to zero
inhibits the use of TAB characters for separating columns. -T */
size_t tabsize;
/* The line length to use for breaking lines in many-per-line format.
Can be set with -w. */
size_t width;
};
/* Default setting */
static struct tterm tterm_default =
{
8, /* tabsize */
80 /* width */
};
/* Set the line width of TTERM to WIDTH. Returns the previous value. */
size_t
tterm_width_set (struct tterm * tterm, size_t width)
{
struct tterm *t = tterm ? tterm : &tterm_default;
size_t old = t->width;
t->width = width;
return old;
}
/* Return the line width of TTERM. */
size_t
tterm_width (struct tterm * tterm)
{
struct tterm *t = tterm ? tterm : &tterm_default;
return t->width;
}
/* Set the tab size of TTERM to SIZE. Returns the previous value. */
size_t
tterm_tabsize_set (struct tterm * tterm, size_t size)
{
struct tterm *t = tterm ? tterm : &tterm_default;
size_t old = t->tabsize;
t->tabsize = size;
return old;
}
/* Return the tab size of TTERM. */
size_t
tterm_tabsize (struct tterm * tterm)
{
struct tterm *t = tterm ? tterm : &tterm_default;
return t->tabsize;
}
/* Initialize the values taking the environment into account (for line
width, and tabsize). */
void
tterm_initialize (struct tterm *tterm, FILE *stream)
{
const char *cp;
struct tterm *t = tterm ? tterm : &tterm_default;
long int tmp_long;
/* Length of the line. */
if ((cp = getenv ("COLUMNS")) && *cp)
{
if (xstrtol (cp, NULL, 0, &tmp_long, NULL) == LONGINT_OK
&& 0 < tmp_long && tmp_long <= INT_MAX)
t->width = (size_t) tmp_long;
else
{
error (0, 0,
"ignoring invalid width in environment variable COLUMNS: %s",
quotearg (cp));
}
}
#ifdef TIOCGWINSZ
{
struct winsize ws;
if (ioctl (fileno (stream), TIOCGWINSZ, &ws) != -1 && ws.ws_col != 0)
t->width = ws.ws_col;
}
#endif
/* Tabulation size. */
/* Using the TABSIZE environment variable is not POSIX-approved.
Ignore it when POSIXLY_CORRECT is set. */
if (!getenv ("POSIXLY_CORRECT") && (cp = getenv ("TABSIZE")) && *cp)
{
if (xstrtol (cp, NULL, 0, &tmp_long, NULL) == LONGINT_OK
&& 0 <= tmp_long && tmp_long <= INT_MAX)
t->tabsize = (size_t) tmp_long;
else
{
error (0, 0,
"ignoring invalid tab size in environment variable TABSIZE: %s",
quotearg (cp));
}
}
}
/* Sample test of TinyTerm. */
#ifdef TEST
const char * program_name = "tterm";
int
main (int argc, char **argv)
{
tterm_init ();
printf ("Width = %d, Tabsize = %d\n",
tterm_width (NULL), tterm_tabsize (NULL));
return 0;
}
#endif
|