]> git.cworth.org Git - apitrace/blob - glretrace.py
e73561ddd8bbeb87626672b6e9f70306e72e3162
[apitrace] / glretrace.py
1 ##########################################################################
2 #
3 # Copyright 2010 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 import base
28 import gl
29
30
31
32 class ConstRemover(base.Rebuilder):
33
34     def visit_const(self, const):
35         return const.type
36
37     def visit_opaque(self, opaque):
38         expr = opaque.expr
39         if expr.startswith('const '):
40             expr = expr[6:]
41         return base.Opaque(expr)
42
43
44 class ValueExtractor(base.Visitor):
45
46     def visit_literal(self, literal, lvalue, rvalue):
47         print '    %s = %s;' % (lvalue, rvalue)
48
49     def visit_alias(self, alias, lvalue, rvalue):
50         self.visit(alias.type, lvalue, rvalue)
51     
52     def visit_enum(self, enum, lvalue, rvalue):
53         print '    %s = %s;' % (lvalue, rvalue)
54
55     def visit_bitmask(self, bitmask, lvalue, rvalue):
56         self.visit(bitmask.type, lvalue, rvalue)
57
58     def visit_array(self, array, lvalue, rvalue):
59         print '    const Trace::Array *__a%s = dynamic_cast<const Trace::Array *>(&%s);' % (array.id, rvalue)
60         print '    if (__a%s) {' % (array.id)
61         length = '__a%s->values.size()' % array.id
62         print '        %s = new %s[%s];' % (lvalue, array.type, length)
63         index = '__i' + array.id
64         print '        for(size_t {i} = 0; {i} < {length}; ++{i}) {{'.format(i = index, length = length)
65         try:
66             self.visit(array.type, '%s[%s]' % (lvalue, index), '*__a%s->values[%s]' % (array.id, index))
67         finally:
68             print '        }'
69             print '    } else {'
70             print '        %s = NULL;' % lvalue
71             print '    }'
72
73     def visit_blob(self, blob, lvalue, rvalue):
74         print '    %s = static_cast<%s>((%s).blob());' % (lvalue, blob, rvalue)
75     
76     def visit_string(self, string, lvalue, rvalue):
77         print '    %s = (%s).string();' % (lvalue, rvalue)
78
79
80
81 def retrace_function(function):
82     print 'static void retrace_%s(Trace::Call &call) {' % function.name
83     success = True
84     for arg in function.args:
85         arg.type = ConstRemover().visit(arg.type)
86         print '    %s %s;' % (arg.type, arg.name)
87         rvalue = 'call.arg("%s")' % (arg.name,)
88         lvalue = arg.name
89         try:
90             ValueExtractor().visit(arg.type, lvalue, rvalue)
91         except NotImplementedError:
92             success = False
93             print '    %s = 0; // FIXME' % arg.name
94     if not success:
95         print '    std::cerr << "warning: unsupported call %s\\n";' % function.name
96         print '    return;'
97     arg_names = ", ".join([arg.name for arg in function.args])
98     print '    %s(%s);' % (function.name, arg_names)
99     print '}'
100     print
101
102
103 def retrace_functions(functions):
104     for function in functions:
105         if function.sideeffects:
106             retrace_function(function)
107
108     print 'static bool retrace_call(Trace::Call &call) {'
109     for function in functions:
110         if not function.sideeffects:
111             print '    if (call.name == "%s") {' % function.name
112             print '        return true;'
113             print '    }'
114     print
115     print '    std::cout << call;'
116     print '    std::cout.flush();'
117     print
118     for function in functions:
119         if function.sideeffects:
120             print '    if (call.name == "%s") {' % function.name
121             print '        retrace_%s(call);' % function.name
122             print '        return true;'
123             print '    }'
124     print '    std::cerr << "warning: unsupported call " << call.name << "\\n";'
125     print '    return false;'
126     print '}'
127     print
128
129
130 if __name__ == '__main__':
131     print
132     print '#include <stdlib.h>'
133     print '#include <string.h>'
134     print '#include <GL/glew.h>'
135     print '#include <GL/glut.h>'
136     print
137     print '#include "trace_parser.hpp"'
138     print
139
140     functions = gl.basic_functions(base.Function) + gl.extended_functions(base.Function)
141     retrace_functions(functions)
142
143     print '''
144
145 Trace::Parser parser;
146
147 static void display(void) {
148    Trace::Call *call;
149
150    while ((call = parser.parse_call())) {
151       if (call->name == "glFlush()" ||
152           call->name == "glXSwapBuffers" ||
153           call->name == "wglSwapBuffers") {
154          glFlush();
155          return;
156       }
157       
158       retrace_call(*call);
159
160       GLenum error = glGetError();
161       if (error != GL_NO_ERROR) {
162          std::cerr << "warning: glGetError() = ";
163          switch (error) {
164          case GL_INVALID_ENUM:
165             std::cerr << "GL_INVALID_ENUM";
166             break;
167          case GL_INVALID_VALUE:
168             std::cerr << "GL_INVALID_VALUE";
169             break;
170          case GL_INVALID_OPERATION:
171             std::cerr << "GL_INVALID_OPERATION";
172             break;
173          case GL_STACK_OVERFLOW:
174             std::cerr << "GL_STACK_OVERFLOW";
175             break;
176          case GL_STACK_UNDERFLOW:
177             std::cerr << "GL_STACK_UNDERFLOW";
178             break;
179          case GL_OUT_OF_MEMORY:
180             std::cerr << "GL_OUT_OF_MEMORY";
181             break;
182          case GL_TABLE_TOO_LARGE:
183             std::cerr << "GL_TABLE_TOO_LARGE";
184             break;
185          default:
186             std::cerr << error;
187             break;
188          }
189          std::cerr << "\\n";
190       }
191    }
192
193    glFlush();
194    glutIdleFunc(NULL);
195 }
196
197 static void idle(void) {
198    glutPostRedisplay();
199 }
200
201 int main(int argc, char **argv)
202 {
203    glutInit(&argc, argv);
204    glutInitWindowPosition(0, 0);
205    glutInitWindowSize(800, 600);
206    glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_SINGLE);
207    glutCreateWindow(argv[0]);
208    glewInit();
209
210    glutDisplayFunc(&display);
211    glutIdleFunc(&idle);
212
213    for (int i = 1; i < argc; ++i) {
214       if (parser.open(argv[i])) {
215          glutMainLoop();
216          parser.close();
217       }
218    }
219
220    return 0;
221 }
222
223 '''