]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/tools/pccarddevs2h.awk
This commit was generated by cvs2svn to compensate for changes in r133429,
[FreeBSD/FreeBSD.git] / sys / tools / pccarddevs2h.awk
1 #! /usr/bin/awk -f
2 #       $NetBSD: devlist2h.awk,v 1.3 1998/09/05 14:42:06 christos Exp $
3 # $FreeBSD$
4 #
5 # Copyright (c) 1998 The NetBSD Foundation, Inc.
6 # All rights reserved.
7 #
8 # This code is derived from software contributed to The NetBSD Foundation
9 # by Christos Zoulas.
10 #
11 # Redistribution and use in source and binary forms, with or without
12 # modification, are permitted provided that the following conditions
13 # are met:
14 # 1. Redistributions of source code must retain the above copyright
15 #    notice, this list of conditions and the following disclaimer.
16 # 2. Redistributions in binary form must reproduce the above copyright
17 #    notice, this list of conditions and the following disclaimer in the
18 #    documentation and/or other materials provided with the distribution.
19 # 3. All advertising materials mentioning features or use of this software
20 #    must display the following acknowledgement:
21 #        This product includes software developed by the NetBSD
22 #        Foundation, Inc. and its contributors.
23 # 4. Neither the name of The NetBSD Foundation nor the names of its
24 #    contributors may be used to endorse or promote products derived
25 #    from this software without specific prior written permission.
26 #
27 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 # POSSIBILITY OF SUCH DAMAGE.
38 #
39 # Copyright (c) 1995, 1996 Christopher G. Demetriou
40 # All rights reserved.
41 #
42 # Redistribution and use in source and binary forms, with or without
43 # modification, are permitted provided that the following conditions
44 # are met:
45 # 1. Redistributions of source code must retain the above copyright
46 #    notice, this list of conditions and the following disclaimer.
47 # 2. Redistributions in binary form must reproduce the above copyright
48 #    notice, this list of conditions and the following disclaimer in the
49 #    documentation and/or other materials provided with the distribution.
50 # 3. All advertising materials mentioning features or use of this software
51 #    must display the following acknowledgement:
52 #      This product includes software developed by Christopher G. Demetriou.
53 #      This product includes software developed by Christos Zoulas
54 # 4. The name of the author(s) may not be used to endorse or promote products
55 #    derived from this software without specific prior written permission
56 #
57 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
58 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
59 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
60 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
61 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
62 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
63 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
64 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
65 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
66 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67 #
68 function collectline(f, line) {
69         oparen = 0
70         line = ""
71         while (f <= NF) {
72                 if ($f == "#") {
73                         line = line "("
74                         oparen = 1
75                         f++
76                         continue
77                 }
78                 if (oparen) {
79                         line = line $f
80                         if (f < NF)
81                                 line = line " "
82                         f++
83                         continue
84                 }
85                 line = line $f
86                 if (f < NF)
87                         line = line " "
88                 f++
89         }
90         if (oparen)
91                 line = line ")"
92         return line
93 }
94 BEGIN {
95         nproducts = nvendors = 0
96         hfile="pccarddevs.h"
97 }
98 NR == 1 {
99         VERSION = $0
100         gsub("\\$", "", VERSION)
101
102         printf("/*\t\$FreeBSD\$\t*/\n\n") > hfile
103         printf("/*\n") > hfile
104         printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
105             > hfile
106         printf(" *\n") > hfile
107         printf(" * generated from:\n") > hfile
108         printf(" *\t%s\n", VERSION) > hfile
109         printf(" */\n") > hfile
110
111         next
112 }
113 $1 == "vendor" {
114         nvendors++
115
116         vendorindex[$2] = nvendors;             # record index for this name, for later.
117         vendors[nvendors, 1] = $2;              # name
118         if ($3 == "-1")
119                 $3 = "0xffffffff";
120         vendors[nvendors, 2] = $3;              # id
121         printf("#define\tPCMCIA_VENDOR_%s\t%s\t", vendors[nvendors, 1],
122             vendors[nvendors, 2]) > hfile
123         vendors[nvendors, 3] = collectline(4, line)
124         printf("/* %s */\n", vendors[nvendors, 3]) > hfile
125         next
126 }
127 $1 == "product" {
128         nproducts++
129
130         products[nproducts, 1] = $2;            # vendor name
131         if ($3 == "-1")
132                 $3 = "0xffffffff";
133         products[nproducts, 2] = $3;            # product id
134         products[nproducts, 3] = $4;            # id
135
136         f = 5;
137
138         if ($4 == "{") {
139                 products[nproducts, 3] = "0xffffffff";
140                 z = "{ "
141                 for (i = 0; i < 4; i++) {
142                         if (f <= NF) {
143                                 gsub("&sp", " ", $f)
144                                 gsub("&tab", "\t", $f)
145                                 gsub("&nl", "\n", $f)
146                                 z = z $f " "
147                                 f++
148                         }
149                         else {
150                                 if (i == 3)
151                                         z = z "NULL "
152                                 else
153                                         z = z "NULL, "
154                         }
155                 }
156                 products[nproducts, 4] = z $f
157                 f++
158         }
159         else {
160                 products[nproducts, 4] = "{ NULL, NULL, NULL, NULL }"
161         }
162         printf("#define\tPCMCIA_CIS_%s_%s\t%s\n",
163             products[nproducts, 1], products[nproducts, 2],
164             products[nproducts, 4]) > hfile
165         printf("#define\tPCMCIA_PRODUCT_%s_%s\t%s\n", products[nproducts, 1],
166             products[nproducts, 2], products[nproducts, 3]) > hfile
167
168         products[nproducts, 5] = collectline(f, line)
169
170         printf("#define\tPCMCIA_STR_%s_%s\t\"%s\"\n",
171             products[nproducts, 1], products[nproducts, 2],
172             products[nproducts, 5]) > hfile
173
174         next
175 }
176 {
177         print $0 > hfile
178 }