2 * Copyright (c) 2002 Tim J. Robbins.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.bin/tabs/tabs.c,v 1.3 2002/06/08 11:33:22 tjr Exp $
27 * $DragonFly: src/usr.bin/tabs/tabs.c,v 1.2 2006/01/12 13:43:11 corecode Exp $
31 * tabs -- set terminal tabs
33 * This utility displays a series of characters that clears the terminal
34 * hardware tab settings, then initialises them to specified values,
35 * and optionally sets a soft margin.
38 #include <sys/types.h>
51 /* Maximum number of tab stops allowed in table. */
54 #define NELEMS(a) (sizeof(a) / sizeof(a[0]))
56 /* Predefined formats, taken from IEEE Std 1003.1-2001. */
58 const char *name
; /* Format name used on cmd. line */
59 long stops
[NSTOPS
]; /* Column positions */
61 { "a", { 1, 10, 16, 36, 72 } },
62 { "a2", { 1, 10, 16, 40, 72 } },
63 { "c", { 1, 8, 12, 16, 20, 55 } },
64 { "c2", { 1, 6, 10, 14, 49 } },
65 { "c3", { 1, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58,
67 { "f", { 1, 7, 11, 15, 19, 23 } },
68 { "p", { 1, 5, 9, 13, 17, 21, 25, 29, 33, 37, 41, 45, 49, 53, 57,
70 { "s", { 1, 10, 55 } },
71 { "u", { 1, 12, 20, 44 } }
74 static void gettabs(char *, long *, long *);
75 static int ttywidth(void);
76 static void usage(void);
79 main(int argc __unused
, char *argv
[])
81 long cols
, i
, inc
, j
, margin
, nstops
, stops
[NSTOPS
];
82 const char *cr
, *ct
, *st
, *ML
;
83 char area
[1024], *ap
, *arg
, *end
;
85 setlocale(LC_ALL
, "");
90 while ((arg
= *++argv
) != NULL
&& (*arg
== '-' || *arg
== '+')) {
97 margin
= strtol(arg
, &end
, 10);
98 if (errno
!= 0 || *end
!= '\0' || margin
< 0)
99 errx(1, "%s: invalid margin width",
103 } else if (isdigit(arg
[1])) {
106 inc
= strtol(arg
+ 1, &end
, 10);
107 if (errno
!= 0 || *end
!= '\0' || inc
< 0)
108 errx(1, "%s: invalid increment", arg
+ 1);
109 } else if (arg
[1] == 'T') {
110 /* -Ttype or -T type */
111 if (arg
[2] != '\0') {
112 if (setenv("TERM", arg
+ 2, 1) == -1)
113 err(1, "setenv: cannot set TERM=%s", arg
+ 2);
116 if ((arg
= *++argv
) == NULL
)
118 if (setenv("TERM", arg
, 1) == -1)
119 err(1, "setenv: cannot set TERM=%s", arg
);
121 } else if (arg
[1] == '-') {
125 /* Predefined format */
126 for (i
= 0; i
< (int)NELEMS(formats
); i
++)
127 if (strcmp(formats
[i
].name
, arg
+ 1) == 0)
129 if (i
== NELEMS(formats
))
131 for (j
= nstops
= 0; j
< NSTOPS
&&
132 formats
[i
].stops
[j
] != 0; j
++)
133 stops
[nstops
++] = formats
[i
].stops
[j
];
140 gettabs(arg
, stops
, &nstops
);
143 /* Initialise terminal, get the strings we need */
144 setupterm(NULL
, 1, NULL
);
146 if ((ct
= tgetstr("ct", &ap
)) == NULL
)
147 errx(1, "terminal cannot clear tabs");
148 if ((st
= tgetstr("st", &ap
)) == NULL
)
149 errx(1, "terminal cannot set tabs");
150 if ((cr
= tgetstr("cr", &ap
)) == NULL
)
152 ML
= tgetstr("ML", &ap
);
155 /* Clear all tabs. */
161 * XXX Does this actually work?
164 printf("%*s", (int)margin
, "");
166 } else if (margin
!= 0)
167 warnx("terminal cannot set left margin");
169 /* Optionally output new tab stops. */
171 printf("%*s", (int)stops
[0] - 1, "");
173 for (i
= 1; i
< nstops
; i
++) {
174 printf("%*s", (int)(stops
[i
] - stops
[i
- 1]), "");
177 } else if (inc
> 0) {
178 for (i
= 0; i
< cols
/ inc
; i
++) {
180 printf("%*s", (int)inc
, "");
194 "usage: tabs [-n|-a|-a2|-c|-c2|-c3|-f|-p|-s|-u] [+m[n]] [-T type]\n");
196 " tabs [-T type] [+[n]] n1,[n2,...]\n");
201 gettabs(char *arg
, long stops
[], long *nstops
)
206 for (last
= *nstops
= 0, tok
= strtok(arg
, ","); tok
!= NULL
;
207 tok
= strtok(NULL
, ",")) {
208 if (*nstops
>= NSTOPS
)
209 errx(1, "too many tab stops (limit %d)", NSTOPS
);
211 stop
= strtol(tok
, &end
, 10);
212 if (errno
!= 0 || *end
!= '\0' || stop
<= 0)
213 errx(1, "%s: invalid tab stop", tok
);
216 errx(1, "%s: first tab may not be relative",
221 errx(1, "cannot go backwards");
222 last
= stops
[(*nstops
)++] = stop
;
232 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &ws
) != -1)
234 else if ((width
= tgetnum("co")) == 0) {
236 warnx("cannot find terminal width; defaulted to %d", width
);