Home | History | Annotate | Line # | Download | only in pcmcia
devlist2h.awk revision 1.4
      1 #! /usr/bin/awk -f
      2 #	$NetBSD: devlist2h.awk,v 1.4 2001/11/08 09:02:17 haya Exp $
      3 #
      4 # Copyright (c) 1998 The NetBSD Foundation, Inc.
      5 # All rights reserved.
      6 #
      7 # This code is derived from software contributed to The NetBSD Foundation
      8 # by Christos Zoulas.
      9 #
     10 # Redistribution and use in source and binary forms, with or without
     11 # modification, are permitted provided that the following conditions
     12 # are met:
     13 # 1. Redistributions of source code must retain the above copyright
     14 #    notice, this list of conditions and the following disclaimer.
     15 # 2. Redistributions in binary form must reproduce the above copyright
     16 #    notice, this list of conditions and the following disclaimer in the
     17 #    documentation and/or other materials provided with the distribution.
     18 # 3. All advertising materials mentioning features or use of this software
     19 #    must display the following acknowledgement:
     20 #        This product includes software developed by the NetBSD
     21 #        Foundation, Inc. and its contributors.
     22 # 4. Neither the name of The NetBSD Foundation nor the names of its
     23 #    contributors may be used to endorse or promote products derived
     24 #    from this software without specific prior written permission.
     25 #
     26 # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27 # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29 # PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36 # POSSIBILITY OF SUCH DAMAGE.
     37 #
     38 # Copyright (c) 1995, 1996 Christopher G. Demetriou
     39 # All rights reserved.
     40 #
     41 # Redistribution and use in source and binary forms, with or without
     42 # modification, are permitted provided that the following conditions
     43 # are met:
     44 # 1. Redistributions of source code must retain the above copyright
     45 #    notice, this list of conditions and the following disclaimer.
     46 # 2. Redistributions in binary form must reproduce the above copyright
     47 #    notice, this list of conditions and the following disclaimer in the
     48 #    documentation and/or other materials provided with the distribution.
     49 # 3. All advertising materials mentioning features or use of this software
     50 #    must display the following acknowledgement:
     51 #      This product includes software developed by Christopher G. Demetriou.
     52 #      This product includes software developed by Christos Zoulas
     53 # 4. The name of the author(s) may not be used to endorse or promote products
     54 #    derived from this software without specific prior written permission
     55 #
     56 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     57 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     58 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     59 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     60 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     61 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     62 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     63 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     64 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     65 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     66 #
     67 function collectline(f, line) {
     68 	oparen = 0
     69 	line = ""
     70 	while (f <= NF) {
     71 		if ($f == "#") {
     72 			line = line "("
     73 			oparen = 1
     74 			f++
     75 			continue
     76 		}
     77 		if (oparen) {
     78 			line = line $f
     79 			if (f < NF)
     80 				line = line " "
     81 			f++
     82 			continue
     83 		}
     84 		line = line $f
     85 		if (f < NF)
     86 			line = line " "
     87 		f++
     88 	}
     89 	if (oparen)
     90 		line = line ")"
     91 	return line
     92 }
     93 BEGIN {
     94 	nproducts = nvendors = 0
     95 	dfile="pcmciadevs_data.h"
     96 	hfile="pcmciadevs.h"
     97 }
     98 NR == 1 {
     99 	VERSION = $0
    100 	gsub("\\$", "", VERSION)
    101 
    102 	printf("/*\t\$NetBSD\$\t*/\n\n") > dfile
    103 	printf("/*\n") > dfile
    104 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
    105 	    > dfile
    106 	printf(" *\n") > dfile
    107 	printf(" * generated from:\n") > dfile
    108 	printf(" *\t%s\n", VERSION) > dfile
    109 	printf(" */\n") > dfile
    110 
    111 	printf("/*\t\$NetBSD\$\t*/\n\n") > hfile
    112 	printf("/*\n") > hfile
    113 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
    114 	    > hfile
    115 	printf(" *\n") > hfile
    116 	printf(" * generated from:\n") > hfile
    117 	printf(" *\t%s\n", VERSION) > hfile
    118 	printf(" */\n") > hfile
    119 
    120 	next
    121 }
    122 $1 == "vendor" {
    123 	nvendors++
    124 
    125 	vendorindex[$2] = nvendors;		# record index for this name, for later.
    126 	vendors[nvendors, 1] = $2;		# name
    127 	vendors[nvendors, 2] = $3;		# id
    128 	printf("#define\tPCMCIA_VENDOR_%s\t%s\t", vendors[nvendors, 1],
    129 	    vendors[nvendors, 2]) > hfile
    130 	vendors[nvendors, 3] = collectline(4, line)
    131 	printf("/* %s */\n", vendors[nvendors, 3]) > hfile
    132 	next
    133 }
    134 $1 == "product" {
    135 	nproducts++
    136 
    137 	products[nproducts, 1] = $2;		# vendor name
    138 	products[nproducts, 2] = $3;		# product id
    139 	products[nproducts, 3] = $4;		# id
    140 
    141 	f = 5;
    142 
    143 	if ($4 == "{") {
    144 		products[nproducts, 3] = -1
    145 		z = "{ "
    146 		for (i = 0; i < 4; i++) {
    147 			if (f <= NF) {
    148 				gsub("&sp", " ", $f)
    149 				gsub("&tab", "\t", $f)
    150 				gsub("&nl", "\n", $f)
    151 				z = z $f " "
    152 				f++
    153 			}
    154 			else {
    155 				if (i == 3)
    156 					z = z "NULL "
    157 				else
    158 					z = z "NULL, "
    159 			}
    160 		}
    161 		products[nproducts, 4] = z $f
    162 		f++
    163 	}
    164 	else {
    165 		products[nproducts, 4] = "{ NULL, NULL, NULL, NULL }"
    166 	}
    167 	printf("#define\tPCMCIA_CIS_%s_%s\t%s\n",
    168 	    products[nproducts, 1], products[nproducts, 2],
    169 	    products[nproducts, 4]) > hfile
    170 	printf("#define\tPCMCIA_PRODUCT_%s_%s\t%s\n", products[nproducts, 1],
    171 	    products[nproducts, 2], products[nproducts, 3]) > hfile
    172 
    173 	products[nproducts, 5] = collectline(f, line)
    174 
    175 	printf("#define\tPCMCIA_STR_%s_%s\t\"%s\"\n",
    176 	    products[nproducts, 1], products[nproducts, 2],
    177 	    products[nproducts, 5]) > hfile
    178 
    179 	next
    180 }
    181 {
    182 	if ($0 == "")
    183 		blanklines++
    184 	print $0 > hfile
    185 	if (blanklines < 2)
    186 		print $0 > dfile
    187 }
    188 END {
    189 	# print out the match tables
    190 
    191 	printf("\n") > dfile
    192 
    193 	printf("struct pcmcia_knowndev {\n") > dfile
    194 	printf("\tint vendorid;\n") > dfile
    195 	printf("\tint productid;\n") > dfile
    196 	printf("\tstruct pcmcia_knowndev_cis {\n") > dfile
    197 	printf("\t\tchar *vendor;\n") > dfile
    198 	printf("\t\tchar *product;\n") > dfile
    199 	printf("\t\tchar *version;\n") > dfile
    200 	printf("\t\tchar *revision;\n") > dfile
    201 	printf("\t}cis;\n") > dfile
    202 	printf("\tint flags;\n") > dfile
    203 	printf("\tchar *vendorname;\n") > dfile
    204 	printf("\tchar *devicename;\n") > dfile
    205 	printf("\tint reserve;\n") > dfile
    206 	printf("};\n\n") > dfile
    207 	printf("#define	PCMCIA_CIS_INVALID\t\t{ NULL, NULL, NULL, NULL }\n") > dfile
    208 	printf("#define	PCMCIA_KNOWNDEV_NOPROD\t\t0\n\n") > dfile
    209 	printf("struct pcmcia_knowndev pcmcia_knowndevs[] = {\n") > dfile
    210 	for (i = 1; i <= nproducts; i++) {
    211 		printf("\t{\n") > dfile
    212 		if (products[i, 3] == -1) {
    213 			printf("\t    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_%s_%s,\n",
    214 			    products[i, 1], products[i, 2]) > dfile
    215 		} else {
    216 			printf("\t    PCMCIA_VENDOR_%s, PCMCIA_PRODUCT_%s_%s,\n",
    217 			    products[i, 1], products[i, 1], products[i, 2]) > dfile
    218 		}
    219 		printf("\t    PCMCIA_CIS_%s_%s,\n", 
    220 		    products[i, 1], products[i, 2]) > dfile
    221 		printf("\t    ") > dfile
    222 		printf("0") > dfile
    223 		printf(",\n") > dfile
    224 
    225 		vendi = vendorindex[products[i, 1]];
    226 		printf("\t    \"%s\",\n", vendors[vendi, 3]) > dfile
    227 		printf("\t    \"%s\",\t}\n", products[i, 5]) > dfile
    228 		printf("\t,\n") > dfile
    229 	}
    230 	for (i = 1; i <= nvendors; i++) {
    231 		printf("\t{\n") > dfile
    232 		printf("\t    PCMCIA_VENDOR_%s,\n", vendors[i, 1]) > dfile
    233 		printf("\t    PCMCIA_KNOWNDEV_NOPROD,\n") > dfile
    234 		printf("\t    PCMCIA_CIS_INVALID,\n") > dfile
    235 		printf("\t    0,\n") > dfile
    236 		printf("\t    \"%s\",\n", vendors[i, 3]) > dfile
    237 		printf("\t    NULL,\n") > dfile
    238 		printf("\t},\n") > dfile
    239 	}
    240 	printf("\t{ 0, 0, { NULL, NULL, NULL, NULL }, 0, NULL, NULL, }\n") > dfile
    241 	printf("};\n") > dfile
    242 }
    243