]> git.cworth.org Git - apitrace/blob - glretrace.py
Cleanup generated log code.
[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 bool insideGlBeginEnd;
148
149 static void display(void) {
150    Trace::Call *call;
151
152    while ((call = parser.parse_call())) {
153       if (call->name == "glFlush" ||
154           call->name == "glXSwapBuffers" ||
155           call->name == "wglSwapBuffers") {
156          glFlush();
157          return;
158       }
159       
160       retrace_call(*call);
161
162       if (call->name == "glBegin") {
163          insideGlBeginEnd = true;
164       }
165       
166       if (call->name == "glEnd") {
167          insideGlBeginEnd = false;
168       }
169
170       if (!insideGlBeginEnd) {
171          GLenum error = glGetError();
172          if (error != GL_NO_ERROR) {
173             std::cerr << "warning: glGetError() = ";
174             switch (error) {
175             case GL_INVALID_ENUM:
176                std::cerr << "GL_INVALID_ENUM";
177                break;
178             case GL_INVALID_VALUE:
179                std::cerr << "GL_INVALID_VALUE";
180                break;
181             case GL_INVALID_OPERATION:
182                std::cerr << "GL_INVALID_OPERATION";
183                break;
184             case GL_STACK_OVERFLOW:
185                std::cerr << "GL_STACK_OVERFLOW";
186                break;
187             case GL_STACK_UNDERFLOW:
188                std::cerr << "GL_STACK_UNDERFLOW";
189                break;
190             case GL_OUT_OF_MEMORY:
191                std::cerr << "GL_OUT_OF_MEMORY";
192                break;
193             case GL_TABLE_TOO_LARGE:
194                std::cerr << "GL_TABLE_TOO_LARGE";
195                break;
196             default:
197                std::cerr << error;
198                break;
199             }
200             std::cerr << "\\n";
201          }
202       }
203    }
204
205    glFlush();
206    glutIdleFunc(NULL);
207 }
208
209 static void idle(void) {
210    glutPostRedisplay();
211 }
212
213 int main(int argc, char **argv)
214 {
215    glutInit(&argc, argv);
216    glutInitWindowPosition(0, 0);
217    glutInitWindowSize(800, 600);
218    glutInitDisplayMode(GLUT_DEPTH | GLUT_RGB | GLUT_SINGLE);
219    glutCreateWindow(argv[0]);
220    glewInit();
221
222    glutDisplayFunc(&display);
223    glutIdleFunc(&idle);
224
225    for (int i = 1; i < argc; ++i) {
226       if (parser.open(argv[i])) {
227          glutMainLoop();
228          parser.close();
229       }
230    }
231
232    return 0;
233 }
234
235 '''