]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/tput/tput.c
This commit was generated by cvs2svn to compensate for changes in r64496,
[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 static char sccsid[] = "@(#)tput.c      8.2 (Berkeley) 3/19/94";
42 #endif /* not lint */
43
44 #include <termios.h>
45
46 #include <err.h>
47 #include <termcap.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <unistd.h>
51
52 #undef putchar
53 #define outc putchar
54
55 static void   prlongname __P((char *));
56 static void   usage __P((void));
57 static char **process __P((char *, char *, char **));
58
59 int
60 main(argc, argv)
61         int argc;
62         char **argv;
63 {
64         extern char *optarg;
65         extern int optind;
66         int ch, exitval, n;
67         char *cptr, *p, *term, buf[1024], tbuf[1024];
68
69         term = NULL;
70         while ((ch = getopt(argc, argv, "T:")) != -1)
71                 switch(ch) {
72                 case 'T':
73                         term = optarg;
74                         break;
75                 case '?':
76                 default:
77                         usage();
78                 }
79         argc -= optind;
80         argv += optind;
81
82         if (!term && !(term = getenv("TERM")))
83 errx(2, "no terminal type specified and no TERM environmental variable.");
84         if (tgetent(tbuf, term) != 1)
85                 err(2, "tgetent failure");
86         for (exitval = 0; (p = *argv) != NULL; ++argv) {
87                 switch (*p) {
88                 case 'c':
89                         if (!strcmp(p, "clear"))
90                                 p = "cl";
91                         break;
92                 case 'i':
93                         if (!strcmp(p, "init"))
94                                 p = "is";
95                         break;
96                 case 'l':
97                         if (!strcmp(p, "longname")) {
98                                 prlongname(tbuf);
99                                 continue;
100                         }
101                         break;
102                 case 'r':
103                         if (!strcmp(p, "reset"))
104                                 p = "rs";
105                         break;
106                 }
107                 cptr = buf;
108                 if (tgetstr(p, &cptr))
109                         argv = process(p, buf, argv);
110                 else if ((n = tgetnum(p)) != -1)
111                         (void)printf("%d\n", n);
112                 else
113                         exitval = !tgetflag(p);
114         }
115         exit(exitval);
116 }
117
118 static void
119 prlongname(buf)
120         char *buf;
121 {
122         int savech;
123         char *p, *savep;
124
125         for (p = buf; *p && *p != ':'; ++p);
126         savech = *(savep = p);
127         for (*p = '\0'; p >= buf && *p != '|'; --p);
128         (void)printf("%s\n", p + 1);
129         *savep = savech;
130 }
131
132 static char **
133 process(cap, str, argv)
134         char *cap, *str, **argv;
135 {
136         static char errfew[] =
137             "not enough arguments (%d) for capability `%s'";
138         static char errmany[] =
139             "too many arguments (%d) for capability `%s'";
140         static 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                             default:
165                                 /*
166                                  * hpux has lot's of them, but we complain
167                                  */
168                                  warnx(erresc, *cp, cap);
169                             }
170
171         /* And print them. */
172         switch (arg_need) {
173         case 0:
174                 (void)tputs(str, 1, outc);
175                 break;
176         case 1:
177                 arg_cols = 0;
178
179                 if (*++argv == NULL || *argv[0] == '\0')
180                         errx(2, errfew, 1, cap);
181                 arg_rows = atoi(*argv);
182
183                 (void)tputs(tgoto(str, arg_cols, arg_rows), 1, outc);
184                 break;
185         case 2:
186                 if (*++argv == NULL || *argv[0] == '\0')
187                         errx(2, errfew, 2, cap);
188                 arg_cols = atoi(*argv);
189
190                 if (*++argv == NULL || *argv[0] == '\0')
191                         errx(2, errfew, 2, cap);
192                 arg_rows = atoi(*argv);
193
194                 (void) tputs(tgoto(str, arg_cols, arg_rows), arg_rows, outc);
195                 break;
196
197         default:
198                 errx(2, errmany, arg_need, cap);
199         }
200         return (argv);
201 }
202
203 static void
204 usage()
205 {
206         (void)fprintf(stderr, "usage: tput [-T term] attribute ...\n");
207         exit(1);
208 }