]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/tset/tset.c
This commit was generated by cvs2svn to compensate for changes in r61911,
[FreeBSD/FreeBSD.git] / usr.bin / tset / tset.c
1 /*-
2  * Copyright (c) 1980, 1991, 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 const char copyright[] =
36 "@(#) Copyright (c) 1980, 1991, 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[] = "@(#)tset.c      8.1 (Berkeley) 6/9/93";
43 #endif
44 static const char rcdif[] =
45   "$FreeBSD$";
46 #endif /* not lint */
47
48 #include <sys/types.h>
49 #include <sys/ioctl.h>
50 #include <ctype.h>
51 #include <err.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <unistd.h>
56 #include <termios.h>
57 #include "extern.h"
58
59 void    obsolete __P((char *[]));
60 void    report __P((char *, int, u_int));
61 void    usage __P((void));
62
63 struct termios mode, oldmode;
64
65 int     erasechar;              /* new erase character */
66 int     intrchar;               /* new interrupt character */
67 int     isreset;                /* invoked as reset */
68 int     killchar;               /* new kill character */
69 int     Lines, Columns;         /* window size */
70 speed_t Ospeed;
71
72 int
73 main(argc, argv)
74         int argc;
75         char *argv[];
76 {
77 #ifdef TIOCGWINSZ
78         struct winsize win;
79 #endif
80         int ch, noinit, noset, quiet, Sflag, sflag, showterm, usingupper;
81         char *p, *t, *tcapbuf, *ttype;
82
83         if (tcgetattr(STDERR_FILENO, &mode) < 0)
84                 err(1, "standard error");
85
86         oldmode = mode;
87         Ospeed = cfgetospeed(&mode);
88
89         if ((p = strrchr(*argv, '/')))
90                 ++p;
91         else
92                 p = *argv;
93         usingupper = isupper(*p);
94         if (!strcasecmp(p, "reset")) {
95                 isreset = 1;
96                 reset_mode();
97         }
98
99         obsolete(argv);
100         noinit = noset = quiet = Sflag = sflag = showterm = 0;
101         while ((ch = getopt(argc, argv, "-a:d:e:Ii:k:m:np:QSrs")) != -1) {
102                 switch (ch) {
103                 case '-':               /* display term only */
104                         noset = 1;
105                         break;
106                 case 'a':               /* OBSOLETE: map identifier to type */
107                         add_mapping("arpanet", optarg);
108                         break;
109                 case 'd':               /* OBSOLETE: map identifier to type */
110                         add_mapping("dialup", optarg);
111                         break;
112                 case 'e':               /* erase character */
113                         erasechar = optarg[0] == '^' && optarg[1] != '\0' ?
114                             optarg[1] == '?' ? '\177' : CTRL(optarg[1]) :
115                             optarg[0];
116                         break;
117                 case 'I':               /* no initialization strings */
118                         noinit = 1;
119                         break;
120                 case 'i':               /* interrupt character */
121                         intrchar = optarg[0] == '^' && optarg[1] != '\0' ?
122                             optarg[1] == '?' ? '\177' : CTRL(optarg[1]) :
123                             optarg[0];
124                         break;
125                 case 'k':               /* kill character */
126                         killchar = optarg[0] == '^' && optarg[1] != '\0' ?
127                             optarg[1] == '?' ? '\177' : CTRL(optarg[1]) :
128                             optarg[0];
129                         break;
130                 case 'm':               /* map identifier to type */
131                         add_mapping(NULL, optarg);
132                         break;
133                 case 'n':               /* OBSOLETE: set new tty driver */
134                         break;
135                 case 'p':               /* OBSOLETE: map identifier to type */
136                         add_mapping("plugboard", optarg);
137                         break;
138                 case 'Q':               /* don't output control key settings */
139                         quiet = 1;
140                         break;
141                 case 'S':               /* output TERM/TERMCAP strings */
142                         Sflag = 1;
143                         break;
144                 case 'r':               /* display term on stderr */
145                         showterm = 1;
146                         break;
147                 case 's':               /* output TERM/TERMCAP strings */
148                         sflag = 1;
149                         break;
150                 case '?':
151                 default:
152                         usage();
153                 }
154         }
155         argc -= optind;
156         argv += optind;
157
158         if (argc > 1)
159                 usage();
160
161         ttype = get_termcap_entry(*argv, &tcapbuf);
162
163         if (!noset) {
164                 Columns = tgetnum("co");
165                 Lines = tgetnum("li");
166
167 #ifdef TIOCGWINSZ
168                 /* Set window size */
169                 (void)ioctl(STDERR_FILENO, TIOCGWINSZ, &win);
170                 if (win.ws_row == 0 && win.ws_col == 0 &&
171                     Lines > 0 && Columns > 0) {
172                         win.ws_row = Lines;
173                         win.ws_col = Columns;
174                         (void)ioctl(STDERR_FILENO, TIOCSWINSZ, &win);
175                 }
176 #endif
177                 set_control_chars();
178                 set_conversions(usingupper);
179
180                 if (!noinit)
181                         set_init();
182
183                 /* Set the modes if they've changed. */
184                 if (memcmp(&mode, &oldmode, sizeof(mode)))
185                         tcsetattr(STDERR_FILENO, TCSADRAIN, &mode);
186         }
187
188         if (noset)
189                 (void)printf("%s\n", ttype);
190         else {
191                 if (showterm)
192                         (void)fprintf(stderr, "Terminal type is %s.\n", ttype);
193                 /*
194                  * If erase, kill and interrupt characters could have been
195                  * modified and not -Q, display the changes.
196                  */
197                 if (!quiet) {
198                         report("Erase", VERASE, CERASE);
199                         report("Kill", VKILL, CKILL);
200                         report("Interrupt", VINTR, CINTR);
201                 }
202         }
203
204         if (Sflag) {
205                 (void)printf("%s ", ttype);
206                 if (strlen(tcapbuf) > 0)
207                         wrtermcap(tcapbuf);
208         }
209
210         if (sflag) {
211                 /*
212                  * Figure out what shell we're using.  A hack, we look for an
213                  * environmental variable SHELL ending in "csh".
214                  */
215                 if ((p = getenv("SHELL")) &&
216                     !strcmp(p + strlen(p) - 3, "csh")) {
217                         printf("set noglob;\nsetenv TERM %s;\n", ttype);
218                         if (strlen(tcapbuf) > 0) {
219                                 printf("setenv TERMCAP '");
220                                 wrtermcap(tcapbuf);
221                                 printf("';\n");
222                         }
223                         printf("unset noglob;\n");
224                 } else {
225                         printf("TERM=%s;\n", ttype);
226                         if (strlen(tcapbuf) > 0) {
227                                 printf("TERMCAP='");
228                                 wrtermcap(tcapbuf);
229                                 printf("';\nexport TERMCAP;\n");
230                         }
231                         printf("export TERM;\n");
232                 }
233         }
234
235         exit(0);
236 }
237
238 /*
239  * Tell the user if a control key has been changed from the default value.
240  */
241 void
242 report(name, which, def)
243         char *name;
244         int which;
245         u_int def;
246 {
247         u_int old, new;
248
249         new = mode.c_cc[which];
250         old = oldmode.c_cc[which];
251
252         if (old == new && old == def)
253                 return;
254
255         (void)fprintf(stderr, "%s %s ", name, old == new ? "is" : "set to");
256
257         if (new == 010)
258                 (void)fprintf(stderr, "backspace.\n");
259         else if (new == 0177)
260                 (void)fprintf(stderr, "delete.\n");
261         else if (new < 040) {
262                 new ^= 0100;
263                 (void)fprintf(stderr, "control-%c (^%c).\n", new, new);
264         } else
265                 (void)fprintf(stderr, "%c.\n", new);
266 }
267
268 /*
269  * Convert the obsolete argument form into something that getopt can handle.
270  * This means that -e, -i and -k get default arguments supplied for them.
271  */
272 void
273 obsolete(argv)
274         char *argv[];
275 {
276         for (; *argv; ++argv) {
277                 if (argv[0][0] != '-' || (argv[1] && argv[1][0] != '-') ||
278                     (argv[0][1] != 'e' && argv[0][1] != 'i' && argv[0][1] != 'k') ||
279                         argv[0][2] != '\0')
280                         continue;
281                 switch(argv[0][1]) {
282                 case 'e':
283                         argv[0] = "-e^H";
284                         break;
285                 case 'i':
286                         argv[0] = "-i^C";
287                         break;
288                 case 'k':
289                         argv[0] = "-k^U";
290                         break;
291                 }
292         }
293 }
294
295 void
296 usage()
297 {
298         (void)fprintf(stderr, "%s\n%s\n",
299 "usage: tset  [-IQrSs] [-] [-e ch] [-i ch] [-k ch] [-m mapping] [terminal]",
300 "       reset [-IQrSs] [-] [-e ch] [-i ch] [-k ch] [-m mapping] [terminal]");
301         exit(1);
302 }
303