]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/tput/tput.c
ANSIify function definitions.
[FreeBSD/FreeBSD.git] / usr.bin / tput / tput.c
1 /*-
2  * Copyright (c) 1980, 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35
36 __FBSDID("$FreeBSD$");
37
38 #ifndef lint
39 static const char copyright[] =
40 "@(#) Copyright (c) 1980, 1988, 1993\n\
41         The Regents of the University of California.  All rights reserved.\n";
42 #endif
43
44 #ifndef lint
45 static const char sccsid[] = "@(#)tput.c        8.2 (Berkeley) 3/19/94";
46 #endif
47
48 #include <termios.h>
49
50 #include <err.h>
51 #include <termcap.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <unistd.h>
56
57 #undef putchar
58 #define outc putchar
59
60 static void   prlongname(char *);
61 static void   usage(void);
62 static char **process(const char *, char *, char **);
63
64 int
65 main(int argc, char **argv)
66 {
67         int ch, exitval, n;
68         char *cptr, *term, buf[1024], tbuf[1024];
69         const char *p;
70
71         term = NULL;
72         while ((ch = getopt(argc, argv, "T:")) != -1)
73                 switch(ch) {
74                 case 'T':
75                         term = optarg;
76                         break;
77                 case '?':
78                 default:
79                         usage();
80                 }
81         argc -= optind;
82         argv += optind;
83
84         if (!term && !(term = getenv("TERM")))
85 errx(2, "no terminal type specified and no TERM environmental variable.");
86         if (tgetent(tbuf, term) != 1)
87                 err(3, "tgetent failure");
88         for (exitval = 0; (p = *argv) != NULL; ++argv) {
89                 switch (*p) {
90                 case 'c':
91                         if (!strcmp(p, "clear"))
92                                 p = "cl";
93                         break;
94                 case 'i':
95                         if (!strcmp(p, "init"))
96                                 p = "is";
97                         break;
98                 case 'l':
99                         if (!strcmp(p, "longname")) {
100                                 prlongname(tbuf);
101                                 continue;
102                         }
103                         break;
104                 case 'r':
105                         if (!strcmp(p, "reset"))
106                                 p = "rs";
107                         break;
108                 }
109                 cptr = buf;
110                 if (tgetstr(p, &cptr))
111                         argv = process(p, buf, argv);
112                 else if ((n = tgetnum(p)) != -1)
113                         (void)printf("%d\n", n);
114                 else
115                         exitval = !tgetflag(p);
116         }
117         exit(exitval);
118 }
119
120 static void
121 prlongname(char *buf)
122 {
123         int savech;
124         char *p, *savep;
125
126         for (p = buf; *p && *p != ':'; ++p);
127         savech = *(savep = p);
128         for (*p = '\0'; p >= buf && *p != '|'; --p);
129         (void)printf("%s\n", p + 1);
130         *savep = savech;
131 }
132
133 static char **
134 process(const char *cap, char *str, char **argv)
135 {
136         static const char errfew[] =
137             "not enough arguments (%d) for capability `%s'";
138         static const char errmany[] =
139             "too many arguments (%d) for capability `%s'";
140         static const char erresc[] =
141             "unknown %% escape `%c' for capability `%s'";
142         char *cp;
143         int arg_need, arg_rows, arg_cols;
144
145         /* Count how many values we need for this capability. */
146         for (cp = str, arg_need = 0; *cp != '\0'; cp++)
147                 if (*cp == '%')
148                             switch (*++cp) {
149                             case 'd':
150                             case '2':
151                             case '3':
152                             case '.':
153                             case '+':
154                                     arg_need++;
155                                     break;
156                             case '%':
157                             case '>':
158                             case 'i':
159                             case 'r':
160                             case 'n':
161                             case 'B':
162                             case 'D':
163                                     break;
164                             case 'p':
165                                     if (cp[1]) {
166                                         cp++;
167                                         break;
168                                     }
169                             default:
170                                 /*
171                                  * hpux has lot's of them, but we complain
172                                  */
173                                  warnx(erresc, *cp, cap);
174                             }
175
176         /* And print them. */
177         switch (arg_need) {
178         case 0:
179                 (void)tputs(str, 1, outc);
180                 break;
181         case 1:
182                 arg_cols = 0;
183
184                 if (*++argv == NULL || *argv[0] == '\0')
185                         errx(2, errfew, 1, cap);
186                 arg_rows = atoi(*argv);
187
188                 (void)tputs(tgoto(str, arg_cols, arg_rows), 1, outc);
189                 break;
190         case 2:
191                 if (*++argv == NULL || *argv[0] == '\0')
192                         errx(2, errfew, 2, cap);
193                 arg_cols = atoi(*argv);
194
195                 if (*++argv == NULL || *argv[0] == '\0')
196                         errx(2, errfew, 2, cap);
197                 arg_rows = atoi(*argv);
198
199                 (void) tputs(tgoto(str, arg_cols, arg_rows), arg_rows, outc);
200                 break;
201
202         default:
203                 errx(2, errmany, arg_need, cap);
204         }
205         return (argv);
206 }
207
208 static void
209 usage(void)
210 {
211         (void)fprintf(stderr, "usage: tput [-T term] attribute ...\n");
212         exit(2);
213 }