2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
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.
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.
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
33 * @(#)map.c 8.1 (Berkeley) 6/9/93
34 * $FreeBSD: src/usr.bin/tset/map.c,v 1.7 1999/08/30 08:27:30 peter Exp $
35 * $DragonFly: src/usr.bin/tset/map.c,v 1.5 2004/08/30 18:06:50 eirikn Exp $
38 #include <sys/types.h>
45 extern speed_t Ospeed
;
46 speed_t
tset_baudrate(char *);
48 /* Baud rate conditionals for mapping. */
57 struct map
*next
; /* Linked list of maps. */
58 char *porttype
; /* Port type, or "" for any. */
59 char *type
; /* Terminal type to select. */
60 int conditional
; /* Baud rate conditionals bitmask. */
61 speed_t speed
; /* Baud rate to compare against. */
68 * [port-type][test baudrate]:terminal-type
69 * The baud rate tests are: >, <, @, =, !
72 add_mapping(char *port
, char *arg
)
75 char *copy
, *p
, *termp
;
78 mapp
= malloc((u_int
)sizeof(MAP
));
79 if (copy
== NULL
|| mapp
== NULL
)
90 mapp
->conditional
= 0;
92 arg
= strpbrk(arg
, "><@=!:");
94 if (arg
== NULL
) { /* [?]term */
95 mapp
->type
= mapp
->porttype
;
96 mapp
->porttype
= NULL
;
100 if (arg
== mapp
->porttype
) /* [><@=! baud]:term */
101 termp
= mapp
->porttype
= NULL
;
105 for (;; ++arg
) /* Optional conditionals. */
108 if (mapp
->conditional
& GT
)
110 mapp
->conditional
|= LT
;
113 if (mapp
->conditional
& LT
)
115 mapp
->conditional
|= GT
;
118 case '=': /* Not documented. */
119 mapp
->conditional
|= EQ
;
122 mapp
->conditional
|= NOT
;
128 next
: if (*arg
== ':') {
129 if (mapp
->conditional
)
132 } else { /* Optional baudrate. */
133 arg
= strchr(p
= arg
, ':');
137 mapp
->speed
= tset_baudrate(p
);
140 if (*arg
== '\0') /* Non-optional type. */
145 /* Terminate porttype, if specified. */
149 /* If a NOT conditional, reverse the test. */
150 if (mapp
->conditional
& NOT
)
151 mapp
->conditional
= ~mapp
->conditional
& (EQ
| GT
| LT
);
153 /* If user specified a port with an option flag, set it. */
156 badmopt
: errx(1, "illegal -m option format: %s", copy
);
157 mapp
->porttype
= port
;
161 (void)printf("port: %s\n", mapp
->porttype
? mapp
->porttype
: "ANY");
162 (void)printf("type: %s\n", mapp
->type
);
163 (void)printf("conditional: ");
165 if (mapp
->conditional
& GT
) {
169 if (mapp
->conditional
& EQ
) {
170 (void)printf("%sEQ", p
);
173 if (mapp
->conditional
& LT
)
174 (void)printf("%sLT", p
);
175 (void)printf("\nspeed: %d\n", mapp
->speed
);
180 * Return the type of terminal to use for a port of type 'type', as specified
181 * by the first applicable mapping in 'map'. If no mappings apply, return
190 for (mapp
= maplist
; mapp
; mapp
= mapp
->next
)
191 if (mapp
->porttype
== NULL
|| !strcmp(mapp
->porttype
, type
)) {
192 switch (mapp
->conditional
) {
193 case 0: /* No test specified. */
197 match
= (Ospeed
== mapp
->speed
);
200 match
= (Ospeed
>= mapp
->speed
);
203 match
= (Ospeed
> mapp
->speed
);
206 match
= (Ospeed
<= mapp
->speed
);
209 match
= (Ospeed
< mapp
->speed
);
215 /* No match found; return given type. */
219 typedef struct speeds
{
233 tset_baudrate(char *rate
)
238 /* The baudrate number can be preceded by a 'B', which is ignored. */
242 for (sp
= speeds
; sp
->string
; ++sp
)
243 if (!strcasecmp(rate
, sp
->string
))
247 errx(1, "unknown baud rate %s", rate
);