1#! /usr/bin/awk -f 2# $OpenBSD: devlist2h.awk,v 1.3 2023/01/04 14:42:46 jsg Exp $ 3# $NetBSD: devlist2h.awk,v 1.2 1998/09/05 14:42:06 christos Exp $ 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# 4. The name of the author(s) may not be used to endorse or promote models 47# derived from this software without specific prior written permission 48# 49# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 50# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 51# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 52# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 53# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 54# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 55# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 56# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 57# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 58# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 59# 60function collectline(f, line) { 61 oparen = 0 62 line = "" 63 while (f <= NF) { 64 if ($f == "#") { 65 line = line "(" 66 oparen = 1 67 f++ 68 continue 69 } 70 if (oparen) { 71 line = line $f 72 if (f < NF) 73 line = line " " 74 f++ 75 continue 76 } 77 line = line $f 78 if (f < NF) 79 line = line " " 80 f++ 81 } 82 if (oparen) 83 line = line ")" 84 return line 85} 86BEGIN { 87 nmodels = nouis = 0 88 hfile="miidevs.h" 89} 90NR == 1 { 91 VERSION = $0 92 gsub("\\$", "", VERSION) 93 94 printf("/*\t\$OpenBSD\$\t*/\n\n") > hfile 95 printf("/*\n") > hfile 96 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ 97 > hfile 98 printf(" *\n") > hfile 99 printf(" * generated from:\n") > hfile 100 printf(" *\t%s\n", VERSION) > hfile 101 printf(" */\n") > hfile 102 103 next 104} 105$1 == "oui" { 106 nuios++ 107 108 ouiindex[$2] = nouis; # record index for this name, for later. 109 110 ouis[nouis, 1] = $2; # name 111 ouis[nouis, 2] = $3; # id 112 printf("#define\tMII_OUI_%s\t%s\t", ouis[nouis, 1], 113 ouis[nouis, 2]) > hfile 114 ouis[nouis, 3] = collectline(4, line) 115 printf("/* %s */\n", ouis[nouis, 3]) > hfile 116 next 117} 118$1 == "model" { 119 nmodels++ 120 121 models[nmodels, 1] = $2; # oui name 122 models[nmodels, 2] = $3; # model id 123 models[nmodels, 3] = $4; # id 124 125 printf("#define\tMII_MODEL_%s_%s\t%s\n", models[nmodels, 1], 126 models[nmodels, 2], models[nmodels, 3]) > hfile 127 128 models[nmodels, 4] = collectline(5, line) 129 130 printf("#define\tMII_STR_%s_%s\t\"%s\"\n", 131 models[nmodels, 1], models[nmodels, 2], 132 models[nmodels, 4]) > hfile 133 134 next 135} 136{ 137 print $0 > hfile 138} 139