blob: 75bb844a335823c138ed7288d0000a934d3614cd [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 license
29import gl_XML
30import sys, getopt
31
32class PrintGlProcs(gl_XML.FilterGLAPISpecBase):
33 name = "gl_procs.py (from Mesa)"
34
Ian Romanick78677992004-05-27 00:05:13 +000035 def __init__(self, long_strings):
36 self.long_strings = long_strings
Ian Romanick73f59b02004-05-18 18:33:40 +000037 gl_XML.FilterGLAPISpecBase.__init__(self)
38 self.license = license.bsd_license_template % ( \
39"""Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
40(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
41
Ian Romanick78677992004-05-27 00:05:13 +000042
Ian Romanick73f59b02004-05-18 18:33:40 +000043 def printRealHeader(self):
Ian Romanick73f59b02004-05-18 18:33:40 +000044 print '/* This file is only included by glapi.c and is used for'
45 print ' * the GetProcAddress() function'
46 print ' */'
47 print ''
Ian Romanick78677992004-05-27 00:05:13 +000048 print 'typedef struct {'
Brian Paula760ccf2004-12-03 15:24:34 +000049 print ' GLint Name_offset;'
Ian Romanick78677992004-05-27 00:05:13 +000050 print '#ifdef NEED_FUNCTION_POINTER'
Brian Paul767e15a2004-11-27 03:51:11 +000051 print ' _glapi_proc Address;'
Ian Romanick78677992004-05-27 00:05:13 +000052 print '#endif'
Brian Paula760ccf2004-12-03 15:24:34 +000053 print ' GLuint Offset;'
Ian Romanick78677992004-05-27 00:05:13 +000054 print '} glprocs_table_t;'
55 print ''
56 print '#ifdef NEED_FUNCTION_POINTER'
Brian Paul767e15a2004-11-27 03:51:11 +000057 print '# define NAME_FUNC_OFFSET(n,f,o) { n , (_glapi_proc) f , o }'
Ian Romanick78677992004-05-27 00:05:13 +000058 print '#else'
59 print '# define NAME_FUNC_OFFSET(n,f,o) { n , o }'
60 print '#endif'
61 print ''
Ian Romanick73f59b02004-05-18 18:33:40 +000062 return
63
64 def printRealFooter(self):
Ian Romanick78677992004-05-27 00:05:13 +000065 print ''
66 print '#undef NAME_FUNC_OFFSET'
67 return
68
69 def printFunctionString(self, f):
70 if self.long_strings:
71 print ' "gl%s\\0"' % (f.name)
72 else:
73 print " 'g','l',",
74 for c in f.name:
75 print "'%s'," % (c),
76
77 print "'\\0',"
78
79 def printFunctionOffset(self, f, offset_of_name):
80 print ' NAME_FUNC_OFFSET( % 5u, gl%s, _gloffset_%s ),' % (offset_of_name, f.name, f.real_name)
81
82
83 def printFunctions(self):
84 print ''
85 if self.long_strings:
86 print 'static const char gl_string_table[] ='
87 else:
88 print 'static const char gl_string_table[] = {'
89
Ian Romanick38e6e092005-01-25 23:53:13 +000090 for f in self.functionIterator():
91 self.printFunctionString(f)
Ian Romanick78677992004-05-27 00:05:13 +000092
93 if self.long_strings:
94 print ' ;'
95 else:
96 print '};'
97
98 print ''
99 print 'static const glprocs_table_t static_functions[] = {'
100
Ian Romanick78677992004-05-27 00:05:13 +0000101 base_offset = 0
Ian Romanick38e6e092005-01-25 23:53:13 +0000102
103 for f in self.functionIterator():
104 self.printFunctionOffset(f, base_offset)
Ian Romanick78677992004-05-27 00:05:13 +0000105
106 # The length of the function's name, plus 2 for "gl",
107 # plus 1 for the NUL.
108
Ian Romanick38e6e092005-01-25 23:53:13 +0000109 base_offset += len(f.name) + 3
Ian Romanick78677992004-05-27 00:05:13 +0000110
Brian Paula760ccf2004-12-03 15:24:34 +0000111 print ' NAME_FUNC_OFFSET( -1, NULL, 0 )'
Ian Romanick73f59b02004-05-18 18:33:40 +0000112 print '};'
113 return
114
Ian Romanick73f59b02004-05-18 18:33:40 +0000115
116def show_usage():
Ian Romanick78677992004-05-27 00:05:13 +0000117 print "Usage: %s [-f input_file_name] [-m mode]" % sys.argv[0]
118 print "mode can be one of:"
119 print " long - Create code for compilers that can handle very "
120 print " long string constants. (default)"
121 print " short - Create code for compilers that can only handle "
122 print " ANSI C89 string constants."
Ian Romanick73f59b02004-05-18 18:33:40 +0000123 sys.exit(1)
124
125if __name__ == '__main__':
126 file_name = "gl_API.xml"
Ian Romanick93d2d542005-04-18 19:42:23 +0000127
Ian Romanick73f59b02004-05-18 18:33:40 +0000128 try:
Ian Romanick78677992004-05-27 00:05:13 +0000129 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:")
Ian Romanick73f59b02004-05-18 18:33:40 +0000130 except Exception,e:
131 show_usage()
132
Ian Romanick78677992004-05-27 00:05:13 +0000133 long_string = 1
Ian Romanick73f59b02004-05-18 18:33:40 +0000134 for (arg,val) in args:
135 if arg == "-f":
136 file_name = val
Ian Romanick78677992004-05-27 00:05:13 +0000137 elif arg == "-m":
138 if val == "short":
139 long_string = 0
140 elif val == "long":
141 long_string = 1
142 else:
143 show_usage()
Ian Romanick73f59b02004-05-18 18:33:40 +0000144
Ian Romanick78677992004-05-27 00:05:13 +0000145 dh = PrintGlProcs( long_string )
Ian Romanick93d2d542005-04-18 19:42:23 +0000146 gl_XML.parse_GL_API( dh, file_name )