The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/cardbus/devlist2h.awk

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #! /usr/bin/awk -f
    2 #       $NetBSD: devlist2h.awk,v 1.4 2003/12/15 07:32:20 jmc 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 BEGIN {
   33         nproducts = nvendors = blanklines = 0
   34         dfile="cardbusdevs_data.h"
   35         hfile="cardbusdevs.h"
   36 }
   37 NR == 1 {
   38         VERSION = $0
   39         gsub("\\$", "", VERSION)
   40 
   41         printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
   42         printf("/*\n") > dfile
   43         printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
   44             > dfile
   45         printf(" *\n") > dfile
   46         printf(" * generated from:\n") > dfile
   47         printf(" *\t%s\n", VERSION) > dfile
   48         printf(" */\n") > dfile
   49 
   50         printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
   51         printf("/*\n") > hfile
   52         printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
   53             > hfile
   54         printf(" *\n") > hfile
   55         printf(" * generated from:\n") > hfile
   56         printf(" *\t%s\n", VERSION) > hfile
   57         printf(" */\n") > hfile
   58 
   59         next
   60 }
   61 NF > 0 && $1 == "vendor" {
   62         nvendors++
   63 
   64         vendorindex[$2] = nvendors;             # record index for this name, for later.
   65         vendors[nvendors, 1] = $2;              # name
   66         vendors[nvendors, 2] = $3;              # id
   67         printf("#define\tCARDBUS_VENDOR_%s\t%s\t", vendors[nvendors, 1],
   68             vendors[nvendors, 2]) > hfile
   69 
   70         i = 3; f = 4;
   71 
   72         # comments
   73         ocomment = oparen = 0
   74         if (f <= NF) {
   75                 printf("\t/* ") > hfile
   76                 ocomment = 1;
   77         }
   78         while (f <= NF) {
   79                 if ($f == "#") {
   80                         printf("(") > hfile
   81                         oparen = 1
   82                         f++
   83                         continue
   84                 }
   85                 if (oparen) {
   86                         printf("%s", $f) > hfile
   87                         if (f < NF)
   88                                 printf(" ") > hfile
   89                         f++
   90                         continue
   91                 }
   92                 vendors[nvendors, i] = $f
   93                 printf("%s", vendors[nvendors, i]) > hfile
   94                 if (f < NF)
   95                         printf(" ") > hfile
   96                 i++; f++;
   97         }
   98         if (oparen)
   99                 printf(")") > hfile
  100         if (ocomment)
  101                 printf(" */") > hfile
  102         printf("\n") > hfile
  103 
  104         next
  105 }
  106 NF > 0 && $1 == "product" {
  107         nproducts++
  108 
  109         products[nproducts, 1] = $2;            # vendor name
  110         products[nproducts, 2] = $3;            # product id
  111         products[nproducts, 3] = $4;            # id
  112         printf("#define\tCARDBUS_PRODUCT_%s_%s\t%s\t", products[nproducts, 1],
  113             products[nproducts, 2], products[nproducts, 3]) > hfile
  114 
  115         i=4; f = 5;
  116 
  117         # comments
  118         ocomment = oparen = 0
  119         if (f <= NF) {
  120                 printf("\t/* ") > hfile
  121                 ocomment = 1;
  122         }
  123         while (f <= NF) {
  124                 if ($f == "#") {
  125                         printf("(") > hfile
  126                         oparen = 1
  127                         f++
  128                         continue
  129                 }
  130                 if (oparen) {
  131                         printf("%s", $f) > hfile
  132                         if (f < NF)
  133                                 printf(" ") > hfile
  134                         f++
  135                         continue
  136                 }
  137                 products[nproducts, i] = $f
  138                 printf("%s", products[nproducts, i]) > hfile
  139                 if (f < NF)
  140                         printf(" ") > hfile
  141                 i++; f++;
  142         }
  143         if (oparen)
  144                 printf(")") > hfile
  145         if (ocomment)
  146                 printf(" */") > hfile
  147         printf("\n") > hfile
  148 
  149         next
  150 }
  151 {
  152         if ($0 == "")
  153                 blanklines++
  154         print $0 > hfile
  155         if (blanklines < 2)
  156                 print $0 > dfile
  157 }
  158 END {
  159         # print out the match tables
  160 
  161         printf("\n") > dfile
  162         printf("struct cardbus_knowndev {\n") > dfile
  163         printf("\tu_int32_t vendorid;\n") > dfile
  164         printf("\tu_int32_t deviceid;\n") > dfile
  165         printf("\tint flags;\n") > dfile
  166         printf("\tchar *vendorname;\n") > dfile
  167         printf("\tchar *devicename;\n") > dfile
  168         printf("};\n\n") > dfile
  169         printf("#define CARDBUS_KNOWNDEV_NOPROD 0x01\n") > dfile
  170         printf("\n") > dfile
  171 
  172         printf("struct cardbus_knowndev cardbus_knowndevs[] = {\n") > dfile
  173         for (i = 1; i <= nproducts; i++) {
  174                 printf("\t{\n") > dfile
  175                 printf("\t    CARDBUS_VENDOR_%s, CARDBUS_PRODUCT_%s_%s,\n",
  176                     products[i, 1], products[i, 1], products[i, 2]) \
  177                     > dfile
  178                 printf("\t    ") > dfile
  179                 printf("0") > dfile
  180                 printf(",\n") > dfile
  181 
  182                 vendi = vendorindex[products[i, 1]];
  183                 printf("\t    \"") > dfile
  184                 j = 3;
  185                 needspace = 0;
  186                 while ((vendi, j) in vendors) {
  187                         if (needspace)
  188                                 printf(" ") > dfile
  189                         printf("%s", vendors[vendi, j]) > dfile
  190                         needspace = 1
  191                         j++
  192                 }
  193                 printf("\",\n") > dfile
  194 
  195                 printf("\t    \"") > dfile
  196                 j = 4;
  197                 needspace = 0;
  198                 while ((i, j) in products) {
  199                         if (needspace)
  200                                 printf(" ") > dfile
  201                         printf("%s", products[i, j]) > dfile
  202                         needspace = 1
  203                         j++
  204                 }
  205                 printf("\",\n") > dfile
  206                 printf("\t},\n") > dfile
  207         }
  208         for (i = 1; i <= nvendors; i++) {
  209                 printf("\t{\n") > dfile
  210                 printf("\t    CARDBUS_VENDOR_%s, 0,\n", vendors[i, 1]) \
  211                     > dfile
  212                 printf("\t    CARDBUS_KNOWNDEV_NOPROD,\n") \
  213                     > dfile
  214                 printf("\t    \"") > dfile
  215                 j = 3;
  216                 needspace = 0;
  217                 while ((i, j) in vendors) {
  218                         if (needspace)
  219                                 printf(" ") > dfile
  220                         printf("%s", vendors[i, j]) > dfile
  221                         needspace = 1
  222                         j++
  223                 }
  224                 printf("\",\n") > dfile
  225                 printf("\t    NULL,\n") > dfile
  226                 printf("\t},\n") > dfile
  227         }
  228         printf("\t{ 0, 0, 0, NULL, NULL, }\n") > dfile
  229         printf("};\n") > dfile
  230         close(dfile)
  231         close(hfile)
  232 }

Cache object: d8b449f216dac8d02791acc4922af1b6


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.