Home | History | Annotate | Line # | Download | only in gio
devlist2h.awk revision 1.1
      1 #! /usr/bin/awk -f
      2 #	$NetBSD: devlist2h.awk,v 1.1 2004/01/10 02:26:44 sekiya 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 = blanklines = 0
     95 	dfile="giodevs.h"
     96 	line=""
     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 
    108 	next
    109 }
    110 NF > 0 && $1 == "product" {
    111 	nproducts++
    112 
    113 	products[nproducts, 1] = $2;
    114 	products[nproducts, 2] = collectline(3, line)
    115 
    116 	next
    117 }
    118 {
    119 	if ($0 == "")
    120 		blanklines++
    121 	if (blanklines < 2)
    122 		print $0 > dfile
    123 }
    124 END {
    125 	# print out the match tables
    126 
    127 	printf("\n") > dfile
    128 
    129 	printf("struct gio_knowndev {\n") > dfile
    130 	printf("\tint productid;\n") > dfile
    131 	printf("\tchar *product;\n") > dfile
    132 	printf("};\n") > dfile
    133 	printf("\nstruct gio_knowndev gio_knowndevs[] = {\n") > dfile
    134 	for (i = 1; i <= nproducts; i++) {
    135 		printf("\t{ %s, \"%s\" },\n",
    136 		    products[i, 1], products[i, 2]) > dfile
    137 	}
    138 	printf("\t{ 0, NULL }\n") > dfile
    139 	printf("};\n") > dfile
    140 	close(dfile)
    141 }
    142