blob: 7585efa947cb8c255823d9962cbad2412cb3b2bd [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
Ian Romanick73f59b02004-05-18 18:33:40 +000028import gl_XML
29import license
30import sys, getopt
31
32class PrintGlTable(gl_XML.FilterGLAPISpecBase):
Ian Romanick73f59b02004-05-18 18:33:40 +000033 def __init__(self):
34 gl_XML.FilterGLAPISpecBase.__init__(self)
Ian Romanick497dd3e2005-05-26 16:34:58 +000035
Ian Romanick16c3c742005-01-28 19:00:54 +000036 self.header_tag = '_GLAPI_TABLE_H_'
Ian Romanick497dd3e2005-05-26 16:34:58 +000037 self.name = "gl_table.py (from Mesa)"
Ian Romanick73f59b02004-05-18 18:33:40 +000038 self.license = license.bsd_license_template % ( \
39"""Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
40(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
41
42
43 def printFunction(self, f):
44 if f.fn_offset < 0: return
45
46 arg_string = f.get_parameter_string()
47 print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % \
48 (f.fn_return_type, f.name, arg_string, f.fn_offset)
49
50 def printRealHeader(self):
Ian Romanick73f59b02004-05-18 18:33:40 +000051 print '#ifndef GLAPIENTRYP'
52 print '#define GLAPIENTRYP'
53 print '#endif'
54 print ''
55 print 'struct _glapi_table'
56 print '{'
57 return
58
59 def printRealFooter(self):
60 print '};'
Ian Romanick73f59b02004-05-18 18:33:40 +000061 return
62
63
64def show_usage():
65 print "Usage: %s [-f input_file_name]" % sys.argv[0]
66 sys.exit(1)
67
68if __name__ == '__main__':
69 file_name = "gl_API.xml"
70
71 try:
72 (args, trail) = getopt.getopt(sys.argv[1:], "f:")
73 except Exception,e:
74 show_usage()
75
76 for (arg,val) in args:
77 if arg == "-f":
78 file_name = val
79
80 dh = PrintGlTable()
Ian Romanick93d2d542005-04-18 19:42:23 +000081 gl_XML.parse_GL_API( dh, file_name )