]> git.cworth.org Git - apitrace/blob - cgltrace.py
trace_write -> trace_writer
[apitrace] / cgltrace.py
1 ##########################################################################
2 #
3 # Copyright 2011 VMware, Inc.
4 # All Rights Reserved.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a copy
7 # of this software and associated documentation files (the "Software"), to deal
8 # in the Software without restriction, including without limitation the rights
9 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 # copies of the Software, and to permit persons to whom the Software is
11 # furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included in
14 # all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 # THE SOFTWARE.
23 #
24 ##########################################################################/
25
26
27 """Cgl tracing generator."""
28
29
30 from stdapi import API
31 from glapi import glapi
32 from cglapi import cglapi
33 from gltrace import GlTracer
34
35
36 class CglTracer(GlTracer):
37
38     def is_public_function(self, function):
39         # The symbols visible in libGL.dylib can vary, so expose them all
40         return True
41
42
43 if __name__ == '__main__':
44     print
45     print '#include <stdlib.h>'
46     print '#include <string.h>'
47     print
48     print '#ifndef _GNU_SOURCE'
49     print '#define _GNU_SOURCE // for dladdr'
50     print '#endif'
51     print '#include <dlfcn.h>'
52     print
53     print '#include "trace_writer.hpp"'
54     print
55     print '// To validate our prototypes'
56     print '#define GL_GLEXT_PROTOTYPES'
57     print
58     print '#include "glproc.hpp"'
59     print '#include "glsize.hpp"'
60     print
61
62     api = API()
63     api.add_api(cglapi)
64     api.add_api(glapi)
65     tracer = CglTracer()
66     tracer.trace_api(api)
67
68     print r'''
69
70
71 /*
72  * Handle to the true libGL.so
73  */
74 static void *libgl_handle = NULL;
75
76
77 /*
78  * Lookup a libGL symbol
79  */
80 static void * __dlsym(const char *symbol)
81 {
82     void *result;
83     if (!libgl_handle) {
84         const char * libgl_filename;
85
86         /* 
87          * Unfortunately we can't just dlopen
88          * /System/Library/Frameworks/OpenGL.framework/Libraries/libGL.dylib
89          * because DYLD_LIBRARY_PATH takes precedence, even for absolute paths.
90          */
91         libgl_filename = "libGL.system.dylib";
92
93         libgl_handle = dlopen(libgl_filename, RTLD_LOCAL | RTLD_NOW | RTLD_FIRST);
94         if (!libgl_handle) {
95             OS::DebugMessage("error: couldn't load %s\n", libgl_filename);
96             return NULL;
97         }
98     }
99
100     result = dlsym(libgl_handle, symbol);
101
102     if (result == dlsym(RTLD_SELF, symbol)) {
103         OS::DebugMessage("error: symbol lookup recursion\n");
104         OS::Abort();
105         return NULL;
106     }
107
108     return result;
109 }
110
111
112 PUBLIC
113 void * gll_noop = 0;
114
115 '''