]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/tput/tput.c
This commit was generated by cvs2svn to compensate for changes in r67957,
[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 #ifndef lint
35 static char copyright[] =
36 "@(#) Copyright (c) 1980, 1988, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)tput.c      8.2 (Berkeley) 3/19/94";
43 #endif
44 static char rcsid[] =
45 "$FreeBSD$";
46 #endif /* not lint */
47
48 #include <termios.h>
49
50 #include <err.h>
51 #include <termcap.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <unistd.h>
55
56 #undef putchar
57 #define outc putchar
58
59 static void   prlongname __P((char *));
60 static void   usage __P((void));
61 static char **process __P((char *, char *, char **));
62
63 int
64 main(argc, argv)
65         int argc;
66         char **argv;
67 {
68         int ch, exitval, n;
69         char *cptr, *p, *term, buf[1024], tbuf[1024];
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(2, "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(buf)
122         char *buf;
123 {
124         int savech;
125         char *p, *savep;
126
127         for (p = buf; *p && *p != ':'; ++p);
128         savech = *(savep = p);
129         for (*p = '\0'; p >= buf && *p != '|'; --p);
130         (void)printf("%s\n", p + 1);
131         *savep = savech;
132 }
133
134 static char **
135 process(cap, str, argv)
136         char *cap, *str, **argv;
137 {
138         static char errfew[] =
139             "not enough arguments (%d) for capability `%s'";
140         static char errmany[] =
141             "too many arguments (%d) for capability `%s'";
142         static char erresc[] =
143             "unknown %% escape `%c' for capability `%s'";
144         char *cp;
145         int arg_need, arg_rows, arg_cols;
146
147         /* Count how many values we need for this capability. */
148         for (cp = str, arg_need = 0; *cp != '\0'; cp++)
149                 if (*cp == '%')
150                             switch (*++cp) {
151                             case 'd':
152                             case '2':
153                             case '3':
154                             case '.':
155                             case '+':
156                                     arg_need++;
157                                     break;
158                             case '%':
159                             case '>':
160                             case 'i':
161                             case 'r':
162                             case 'n':
163                             case 'B':
164                             case 'D':
165                                     break;
166                             default:
167                                 /*
168                                  * hpux has lot's of them, but we complain
169                                  */
170                                  warnx(erresc, *cp, cap);
171                             }
172
173         /* And print them. */
174         switch (arg_need) {
175         case 0:
176                 (void)tputs(str, 1, outc);
177                 break;
178         case 1:
179                 arg_cols = 0;
180
181                 if (*++argv == NULL || *argv[0] == '\0')
182                         errx(2, errfew, 1, cap);
183                 arg_rows = atoi(*argv);
184
185                 (void)tputs(tgoto(str, arg_cols, arg_rows), 1, outc);
186                 break;
187         case 2:
188                 if (*++argv == NULL || *argv[0] == '\0')
189                         errx(2, errfew, 2, cap);
190                 arg_cols = atoi(*argv);
191
192                 if (*++argv == NULL || *argv[0] == '\0')
193                         errx(2, errfew, 2, cap);
194                 arg_rows = atoi(*argv);
195
196                 (void) tputs(tgoto(str, arg_cols, arg_rows), arg_rows, outc);
197                 break;
198
199         default:
200                 errx(2, errmany, arg_need, cap);
201         }
202         return (argv);
203 }
204
205 static void
206 usage()
207 {
208         (void)fprintf(stderr, "usage: tput [-T term] attribute ...\n");
209         exit(1);
210 }