blob: f5bd7f40ed75e135469b048a7a6905d0a1e101aa [file] [log] [blame]
Ian Romanick73f59b02004-05-18 18:33:40 +00001#!/usr/bin/python2
2
3# (C) Copyright IBM Corporation 2004
4# All Rights Reserved.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a
7# copy of this software and associated documentation files (the "Software"),
8# to deal in the Software without restriction, including without limitation
9# on the rights to use, copy, modify, merge, publish, distribute, sub
10# license, and/or sell copies of the Software, and to permit persons to whom
11# the Software is furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice (including the next
14# paragraph) shall be included in all copies or substantial portions of the
15# Software.
16#
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20# IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23# IN THE SOFTWARE.
24#
25# Authors:
26# Ian Romanick <idr@us.ibm.com>
27
28from xml.sax import saxutils
29from xml.sax import make_parser
30from xml.sax.handler import feature_namespaces
31
32import gl_XML
33import license
34import sys, getopt
35
36class PrintGlOffsets(gl_XML.FilterGLAPISpecBase):
37 name = "gl_offsets.py (from Mesa)"
38
39 def __init__(self):
40 gl_XML.FilterGLAPISpecBase.__init__(self)
Ian Romanick16c3c742005-01-28 19:00:54 +000041 self.header_tag = '_GLAPI_OFFSETS_H_'
Ian Romanick73f59b02004-05-18 18:33:40 +000042 self.license = license.bsd_license_template % ( \
43"""Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
44(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
45
46 def printFunction(self, f):
47 if f.fn_offset < 0: return
48 print '#define _gloffset_%s %d' % (f.name, f.fn_offset)
49
Ian Romanick73f59b02004-05-18 18:33:40 +000050
51def show_usage():
52 print "Usage: %s [-f input_file_name]" % sys.argv[0]
53 sys.exit(1)
54
55if __name__ == '__main__':
56 file_name = "gl_API.xml"
57
58 try:
59 (args, trail) = getopt.getopt(sys.argv[1:], "f:")
60 except Exception,e:
61 show_usage()
62
63 for (arg,val) in args:
64 if arg == "-f":
65 file_name = val
66
67 dh = PrintGlOffsets()
68
69 parser = make_parser()
70 parser.setFeature(feature_namespaces, 0)
71 parser.setContentHandler(dh)
72
73 f = open(file_name)
74
75 dh.printHeader()
76 parser.parse(f)
77 dh.printFooter()