Add two new gl_function methods. dispatch_name returns the name of
[mesa.git] / src / mesa / glapi / gl_procs.py
1 #!/usr/bin/env python
2
3 # (C) Copyright IBM Corporation 2004, 2005
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
28 import license
29 import gl_XML
30 import sys, getopt
31
32 class PrintGlProcs(gl_XML.gl_print_base):
33 def __init__(self, long_strings):
34 gl_XML.gl_print_base.__init__(self)
35
36 self.long_strings = long_strings
37 self.name = "gl_procs.py (from Mesa)"
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
42
43 def printRealHeader(self):
44 print '/* This file is only included by glapi.c and is used for'
45 print ' * the GetProcAddress() function'
46 print ' */'
47 print ''
48 print 'typedef struct {'
49 print ' GLint Name_offset;'
50 print '#ifdef NEED_FUNCTION_POINTER'
51 print ' _glapi_proc Address;'
52 print '#endif'
53 print ' GLuint Offset;'
54 print '} glprocs_table_t;'
55 print ''
56 print '#ifdef NEED_FUNCTION_POINTER'
57 print '# define NAME_FUNC_OFFSET(n,f,o) { n , (_glapi_proc) f , o }'
58 print '#else'
59 print '# define NAME_FUNC_OFFSET(n,f,o) { n , o }'
60 print '#endif'
61 print ''
62 return
63
64 def printRealFooter(self):
65 print ''
66 print '#undef NAME_FUNC_OFFSET'
67 return
68
69 def printFunctionString(self, name):
70 if self.long_strings:
71 print ' "gl%s\\0"' % (name)
72 else:
73 print " 'g','l',",
74 for c in name:
75 print "'%s'," % (c),
76
77 print "'\\0',"
78
79
80 def printBody(self, api):
81 print ''
82 if self.long_strings:
83 print 'static const char gl_string_table[] ='
84 else:
85 print 'static const char gl_string_table[] = {'
86
87 base_offset = 0
88 table = []
89 for func in api.functionIterateByOffset():
90 name = func.dispatch_name()
91 self.printFunctionString(func.name)
92 table.append((base_offset, name, func.name))
93
94 # The length of the function's name, plus 2 for "gl",
95 # plus 1 for the NUL.
96
97 base_offset += len(func.name) + 3
98
99
100 for func in api.functionIterateByOffset():
101 for n in func.entry_points:
102 if n != func.name:
103 name = func.dispatch_name()
104 self.printFunctionString( n )
105 table.append((base_offset, name, func.name))
106 base_offset += len(n) + 3
107
108
109 if self.long_strings:
110 print ' ;'
111 else:
112 print '};'
113
114 print ''
115 print '/* FIXME: Having these (incorrect) prototypes here is ugly. */'
116 print '#ifdef NEED_FUNCTION_POINTER'
117 for func in api.functionIterateByOffset():
118 for n in func.entry_points:
119 if not func.is_static_entry_point(func.name):
120 print 'extern void gl_dispatch_stub_%u(void);' % (func.offset)
121 break
122
123 print '#endif /* NEED_FUNCTION_POINTER */'
124
125 print ''
126 print 'static const glprocs_table_t static_functions[] = {'
127
128 for (offset, disp_name, real_name) in table:
129 print ' NAME_FUNC_OFFSET( %5u, gl%s, _gloffset_%s ),' % (offset, disp_name, real_name)
130
131 print ' NAME_FUNC_OFFSET( -1, NULL, 0 )'
132 print '};'
133 return
134
135
136 def show_usage():
137 print "Usage: %s [-f input_file_name] [-m mode]" % sys.argv[0]
138 print "mode can be one of:"
139 print " long - Create code for compilers that can handle very "
140 print " long string constants. (default)"
141 print " short - Create code for compilers that can only handle "
142 print " ANSI C89 string constants."
143 sys.exit(1)
144
145 if __name__ == '__main__':
146 file_name = "gl_API.xml"
147
148 try:
149 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:")
150 except Exception,e:
151 show_usage()
152
153 long_string = 1
154 for (arg,val) in args:
155 if arg == "-f":
156 file_name = val
157 elif arg == "-m":
158 if val == "short":
159 long_string = 0
160 elif val == "long":
161 long_string = 1
162 else:
163 show_usage()
164
165 api = gl_XML.parse_GL_API( file_name )
166
167 printer = PrintGlProcs( long_string )
168 printer.Print( api )