1#! /usr/bin/awk -f
2#	$NetBSD: devlist2h.awk,v 1.2 1998/09/05 14:42:06 christos Exp $
3
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#
20# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31#
32# Copyright (c) 1995, 1996 Christopher G. Demetriou
33# All rights reserved.
34#
35# Redistribution and use in source and binary forms, with or without
36# modification, are permitted provided that the following conditions
37# are met:
38# 1. Redistributions of source code must retain the above copyright
39#    notice, this list of conditions and the following disclaimer.
40# 2. Redistributions in binary form must reproduce the above copyright
41#    notice, this list of conditions and the following disclaimer in the
42#    documentation and/or other materials provided with the distribution.
43# 3. All advertising materials mentioning features or use of this software
44#    must display the following acknowledgement:
45#      This model includes software developed by Christopher G. Demetriou.
46#      This model includes software developed by Christos Zoulas
47# 4. The name of the author(s) may not be used to endorse or promote models
48#    derived from this software without specific prior written permission
49#
50# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60#
61# $FreeBSD$
62#
63function collectline(f, line) {
64	oparen = 0
65	line = ""
66	while (f <= NF) {
67		if ($f == "#") {
68			line = line "("
69			oparen = 1
70			f++
71			continue
72		}
73		if (oparen) {
74			line = line $f
75			if (f < NF)
76				line = line " "
77			f++
78			continue
79		}
80		line = line $f
81		if (f < NF)
82			line = line " "
83		f++
84	}
85	if (oparen)
86		line = line ")"
87	return line
88}
89BEGIN {
90	nmodels = nouis = 0
91	hfile="miidevs.h"
92}
93NR == 1 {
94	VERSION = $0
95	gsub("\\$", "", VERSION)
96
97	printf("/* \$FreeBSD\$ */\n\n") > hfile
98	printf("/*\n") > hfile
99	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
100	    > hfile
101	printf(" *\n") > hfile
102	printf(" * generated from:\n") > hfile
103	printf(" *\t%s\n", VERSION) > hfile
104	printf(" */\n") > hfile
105
106	next
107}
108$1 == "oui" {
109	nuios++
110
111	ouiindex[$2] = nouis;		# record index for this name, for later.
112
113	ouis[nouis, 1] = $2;		# name
114	ouis[nouis, 2] = $3;		# id
115	printf("#define\tMII_OUI_%s\t%s\t", ouis[nouis, 1],
116	    ouis[nouis, 2]) > hfile
117	ouis[nouis, 3] = collectline(4, line)
118	printf("/* %s */\n", ouis[nouis, 3]) > hfile
119	next
120}
121$1 == "model" {
122	nmodels++
123
124	models[nmodels, 1] = $2;		# oui name
125	models[nmodels, 2] = $3;		# model id
126	models[nmodels, 3] = $4;		# id
127
128	printf("#define\tMII_MODEL_%s_%s\t%s\n", models[nmodels, 1],
129	    models[nmodels, 2], models[nmodels, 3]) > hfile
130
131	models[nmodels, 4] = collectline(5, line)
132
133	printf("#define\tMII_STR_%s_%s\t\"%s\"\n",
134	    models[nmodels, 1], models[nmodels, 2],
135	    models[nmodels, 4]) > hfile
136
137	next
138}
139{
140	print $0 > hfile
141}
142