glapi: Do not include dlfcn.h on Windows.
[mesa.git] / src / mapi / glapi / gen / gl_gentable.py
1 #!/usr/bin/env python
2
3 # (C) Copyright IBM Corporation 2004, 2005
4 # (C) Copyright Apple Inc. 2011
5 # All Rights Reserved.
6 #
7 # Permission is hereby granted, free of charge, to any person obtaining a
8 # copy of this software and associated documentation files (the "Software"),
9 # to deal in the Software without restriction, including without limitation
10 # on the rights to use, copy, modify, merge, publish, distribute, sub
11 # license, and/or sell copies of the Software, and to permit persons to whom
12 # the Software is furnished to do so, subject to the following conditions:
13 #
14 # The above copyright notice and this permission notice (including the next
15 # paragraph) shall be included in all copies or substantial portions of the
16 # Software.
17 #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 # IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 # IN THE SOFTWARE.
25 #
26 # Authors:
27 # Jeremy Huddleston <jeremyhu@apple.com>
28 #
29 # Based on code ogiginally by:
30 # Ian Romanick <idr@us.ibm.com>
31
32 import license
33 import gl_XML, glX_XML
34 import sys, getopt
35
36 header = """/* GLXEXT is the define used in the xserver when the GLX extension is being
37 * built. Hijack this to determine whether this file is being built for the
38 * server or the client.
39 */
40 #ifdef HAVE_DIX_CONFIG_H
41 #include <dix-config.h>
42 #endif
43
44 #if (defined(GLXEXT) && defined(HAVE_BACKTRACE)) \\
45 || (!defined(GLXEXT) && defined(DEBUG) && !defined(_WIN32_WCE) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__OpenBSD__) && !defined(__NetBSD__))
46 #define USE_BACKTRACE
47 #endif
48
49 #ifdef USE_BACKTRACE
50 #include <execinfo.h>
51 #endif
52
53 #ifndef _WIN32
54 #include <dlfcn.h>
55 #endif
56 #include <stdlib.h>
57 #include <stdio.h>
58
59 #include "main/glheader.h"
60
61 #include "glapi.h"
62 #include "glapitable.h"
63
64 #ifdef GLXEXT
65 #include "os.h"
66 #endif
67
68 static void
69 __glapi_gentable_NoOp(void) {
70 const char *fstr = "Unknown";
71
72 /* Silence potential GCC warning for some #ifdef paths.
73 */
74 (void) fstr;
75 #if defined(USE_BACKTRACE)
76 #if !defined(GLXEXT)
77 if (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG"))
78 #endif
79 {
80 void *frames[2];
81
82 if(backtrace(frames, 2) == 2) {
83 Dl_info info;
84 dladdr(frames[1], &info);
85 if(info.dli_sname)
86 fstr = info.dli_sname;
87 }
88
89 #if !defined(GLXEXT)
90 fprintf(stderr, "Call to unimplemented API: %s\\n", fstr);
91 #endif
92 }
93 #endif
94 #if defined(GLXEXT)
95 LogMessage(X_ERROR, "GLX: Call to unimplemented API: %s\\n", fstr);
96 #endif
97 }
98
99 static void
100 __glapi_gentable_set_remaining_noop(struct _glapi_table *disp) {
101 GLuint entries = _glapi_get_dispatch_table_size();
102 void **dispatch = (void **) disp;
103 int i;
104
105 /* ISO C is annoying sometimes */
106 union {_glapi_proc p; void *v;} p;
107 p.p = __glapi_gentable_NoOp;
108
109 for(i=0; i < entries; i++)
110 if(dispatch[i] == NULL)
111 dispatch[i] = p.v;
112 }
113
114 struct _glapi_table *
115 _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
116 struct _glapi_table *disp = calloc(1, sizeof(struct _glapi_table));
117 char symboln[512];
118
119 if(!disp)
120 return NULL;
121
122 if(symbol_prefix == NULL)
123 symbol_prefix = "";
124 """
125
126 footer = """
127 __glapi_gentable_set_remaining_noop(disp);
128
129 return disp;
130 }
131 """
132
133 body_template = """
134 if(!disp->%(name)s) {
135 void ** procp = (void **) &disp->%(name)s;
136 snprintf(symboln, sizeof(symboln), "%%s%(entry_point)s", symbol_prefix);
137 *procp = dlsym(handle, symboln);
138 }
139 """
140
141 class PrintCode(gl_XML.gl_print_base):
142
143 def __init__(self):
144 gl_XML.gl_print_base.__init__(self)
145
146 self.name = "gl_gen_table.py (from Mesa)"
147 self.license = license.bsd_license_template % ( \
148 """Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
149 (C) Copyright IBM Corporation 2004, 2005
150 (C) Copyright Apple Inc 2011""", "BRIAN PAUL, IBM")
151
152 return
153
154
155 def get_stack_size(self, f):
156 size = 0
157 for p in f.parameterIterator():
158 if p.is_padding:
159 continue
160
161 size += p.get_stack_size()
162
163 return size
164
165
166 def printRealHeader(self):
167 print header
168 return
169
170
171 def printRealFooter(self):
172 print footer
173 return
174
175
176 def printBody(self, api):
177 for f in api.functionIterateByOffset():
178 for entry_point in f.entry_points:
179 vars = { 'entry_point' : entry_point,
180 'name' : f.name }
181
182 print body_template % vars
183 return
184
185 def show_usage():
186 print "Usage: %s [-f input_file_name]" % sys.argv[0]
187 sys.exit(1)
188
189 if __name__ == '__main__':
190 file_name = "gl_API.xml"
191
192 try:
193 (args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
194 except Exception,e:
195 show_usage()
196
197 for (arg,val) in args:
198 if arg == "-f":
199 file_name = val
200
201 printer = PrintCode()
202
203 api = gl_XML.parse_GL_API(file_name, glX_XML.glx_item_factory())
204 printer.Print(api)