Home | History | Annotate | Line # | Download | only in mca
devlist2h.awk revision 1.1
      1 #! /usr/bin/awk -f
      2 #	$NetBSD: devlist2h.awk,v 1.1 2000/05/11 15:42:04 jdolecek Exp $
      3 #
      4 # Copyright (c) 1995, 1996 Christopher G. Demetriou
      5 # All rights reserved.
      6 #
      7 # Redistribution and use in source and binary forms, with or without
      8 # modification, are permitted provided that the following conditions
      9 # are met:
     10 # 1. Redistributions of source code must retain the above copyright
     11 #    notice, this list of conditions and the following disclaimer.
     12 # 2. Redistributions in binary form must reproduce the above copyright
     13 #    notice, this list of conditions and the following disclaimer in the
     14 #    documentation and/or other materials provided with the distribution.
     15 # 3. All advertising materials mentioning features or use of this software
     16 #    must display the following acknowledgement:
     17 #      This product includes software developed by Christopher G. Demetriou.
     18 # 4. The name of the author may not be used to endorse or promote products
     19 #    derived from this software without specific prior written permission
     20 #
     21 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31 #
     32 
     33 # Adapted for MCA needs by Jaromir Dolecek.
     34 
     35 BEGIN {
     36 	nproducts = nvendors = 0
     37 	dfile="mcadevs_data.h"
     38 	hfile="mcadevs.h"
     39 	FS=" "
     40 	alias=""
     41 	id=""
     42 }
     43 NR == 1 {
     44 	VERSION = $0
     45 	gsub("\\$", "", VERSION)
     46 
     47 	printf("/*\t\$NetBSD\$\t*/\n\n") > dfile
     48 	printf("/*\n") > dfile
     49 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
     50 	    > dfile
     51 	printf(" *\n") > dfile
     52 	printf(" * generated from:\n") > dfile
     53 	printf(" *\t%s\n", VERSION) > dfile
     54 	printf(" */\n") > dfile
     55 
     56 	printf("/*\t\$NetBSD\$\t*/\n\n") > hfile
     57 	printf("/*\n") > hfile
     58 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
     59 	    > hfile
     60 	printf(" *\n") > hfile
     61 	printf(" * generated from:\n") > hfile
     62 	printf(" *\t%s\n", VERSION) > hfile
     63 	printf(" */\n") > hfile
     64 
     65 	next
     66 }
     67 
     68 $1 == "product" {
     69 	nproducts++
     70 
     71 	alias = $3
     72 	id = $2
     73 
     74 	products[nproducts, 1] = $2;		# product id
     75 
     76 	# get name - it's enclosed in parenthesis
     77 	sub("[^\"]*\"", "")
     78 	sub("\".*", "")
     79 	products[nproducts, 2] = $0;		# name
     80 
     81 	# if third parameter is an alias, print appropriate entry to hfile,
     82 	# otherwise just store the entry for later processing
     83 	if (substr(alias, 1, 1) != "\"") {
     84 		printf("#define\tMCA_PRODUCT_%s\t%s\t/* %s */\n", alias, id,\
     85 			$0) > hfile
     86 	}
     87 
     88 }
     89 {
     90 	if ($0 == "")
     91 		blanklines++
     92 	if (blanklines < 2) {
     93 		print $0 > hfile
     94 		print $0 > dfile
     95 	}
     96 	else if (blanklines == 2) {
     97 		printf("\n/*\n * List of known MCA devices\n */\n\n") > dfile
     98 		printf("\n/*\n * Supported MCA devices\n */\n\n") > hfile
     99 	}
    100 
    101 	next
    102 }
    103 END {
    104 	# print out the match tables
    105 
    106 	printf("const struct mca_knowndev mca_knowndevs[] = {\n") > dfile
    107 	for (i = 1; i <= nproducts; i++) {
    108 		printf("    { %s,\t\"%s\" },\n", products[i, 1],
    109 			products[i, 2]) > dfile
    110 	}
    111 	printf("    { 0, NULL, }\n") > dfile
    112 	printf("};\n") > dfile
    113 }
    114