Mammoth update to the Python code generator scripts that live in
[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 self.printFunctionString( func.name )
91 table.append((base_offset, func.name, func.name))
92
93 # The length of the function's name, plus 2 for "gl",
94 # plus 1 for the NUL.
95
96 base_offset += len(func.name) + 3
97
98
99 for func in api.functionIterateByOffset():
100 for n in func.entry_points:
101 if n != func.name:
102 self.printFunctionString( n )
103 table.append((base_offset, n, func.name))
104 base_offset += len(n) + 3
105
106
107 if self.long_strings:
108 print ' ;'
109 else:
110 print '};'
111
112 print ''
113 print 'static const glprocs_table_t static_functions[] = {'
114
115 for (offset, disp_name, real_name) in table:
116 print ' NAME_FUNC_OFFSET( % 5u, gl%s, _gloffset_%s ),' % (offset, disp_name, real_name)
117
118 print ' NAME_FUNC_OFFSET( -1, NULL, 0 )'
119 print '};'
120 return
121
122
123 def show_usage():
124 print "Usage: %s [-f input_file_name] [-m mode]" % sys.argv[0]
125 print "mode can be one of:"
126 print " long - Create code for compilers that can handle very "
127 print " long string constants. (default)"
128 print " short - Create code for compilers that can only handle "
129 print " ANSI C89 string constants."
130 sys.exit(1)
131
132 if __name__ == '__main__':
133 file_name = "gl_API.xml"
134
135 try:
136 (args, trail) = getopt.getopt(sys.argv[1:], "f:m:")
137 except Exception,e:
138 show_usage()
139
140 long_string = 1
141 for (arg,val) in args:
142 if arg == "-f":
143 file_name = val
144 elif arg == "-m":
145 if val == "short":
146 long_string = 0
147 elif val == "long":
148 long_string = 1
149 else:
150 show_usage()
151
152 api = gl_XML.parse_GL_API( file_name )
153
154 printer = PrintGlProcs( long_string )
155 printer.Print( api )