]> git.cworth.org Git - apitrace/blob - glretrace_main.cpp
9212ff61fb8cb42f3a5e20b435c61f5c1c822a38
[apitrace] / glretrace_main.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
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 #include <string.h>
28
29 #include "image.hpp"
30 #include "retrace.hpp"
31 #include "glproc.hpp"
32 #include "glstate.hpp"
33 #include "glretrace.hpp"
34
35
36 namespace glretrace {
37
38 bool double_buffer = true;
39 bool insideGlBeginEnd = false;
40 Trace::Parser parser;
41 glws::Visual *visual = NULL;
42 glws::Drawable *drawable = NULL;
43 glws::Context *context = NULL;
44
45 unsigned frame = 0;
46 long long startTime = 0;
47 bool wait = false;
48
49 bool benchmark = false;
50 const char *compare_prefix = NULL;
51 const char *snapshot_prefix = NULL;
52 enum frequency snapshot_frequency = FREQUENCY_NEVER;
53
54 unsigned dump_state = ~0;
55
56 void
57 checkGlError(Trace::Call &call) {
58     GLenum error = glGetError();
59     if (error == GL_NO_ERROR) {
60         return;
61     }
62
63     std::ostream & os = retrace::warning(call);
64
65     os << "glGetError(";
66     os << call.name();
67     os << ") = ";
68
69     switch (error) {
70     case GL_INVALID_ENUM:
71         os << "GL_INVALID_ENUM";
72         break;
73     case GL_INVALID_VALUE:
74         os << "GL_INVALID_VALUE";
75         break;
76     case GL_INVALID_OPERATION:
77         os << "GL_INVALID_OPERATION";
78         break;
79     case GL_STACK_OVERFLOW:
80         os << "GL_STACK_OVERFLOW";
81         break;
82     case GL_STACK_UNDERFLOW:
83         os << "GL_STACK_UNDERFLOW";
84         break;
85     case GL_OUT_OF_MEMORY:
86         os << "GL_OUT_OF_MEMORY";
87         break;
88     case GL_INVALID_FRAMEBUFFER_OPERATION:
89         os << "GL_INVALID_FRAMEBUFFER_OPERATION";
90         break;
91     case GL_TABLE_TOO_LARGE:
92         os << "GL_TABLE_TOO_LARGE";
93         break;
94     default:
95         os << error;
96         break;
97     }
98     os << "\n";
99 }
100
101 /**
102  * Grow the current drawble.
103  *
104  * We need to infer the drawable size from GL calls because the drawable sizes
105  * are specified by OS specific calls which we do not trace.
106  */
107 void
108 updateDrawable(int width, int height) {
109     if (!drawable) {
110         return;
111     }
112
113     if (drawable->visible &&
114         width  <= drawable->width &&
115         height <= drawable->height) {
116         return;
117     }
118
119     // Check for bound framebuffer last, as this may have a performance impact.
120     GLint draw_framebuffer = 0;
121     glGetIntegerv(GL_DRAW_FRAMEBUFFER_BINDING, &draw_framebuffer);
122     if (draw_framebuffer != 0) {
123         return;
124     }
125
126     drawable->resize(width, height);
127     drawable->show();
128
129     glScissor(0, 0, width, height);
130 }
131
132
133 void snapshot(unsigned call_no) {
134     if (!drawable ||
135         (!snapshot_prefix && !compare_prefix)) {
136         return;
137     }
138
139     Image::Image *ref = NULL;
140
141     if (compare_prefix) {
142         char filename[PATH_MAX];
143         snprintf(filename, sizeof filename, "%s%010u.png", compare_prefix, call_no);
144         ref = Image::readPNG(filename);
145         if (!ref) {
146             return;
147         }
148         if (retrace::verbosity >= 0) {
149             std::cout << "Read " << filename << "\n";
150         }
151     }
152
153     Image::Image *src = glstate::getDrawBufferImage(GL_RGBA);
154     if (!src) {
155         return;
156     }
157
158     if (snapshot_prefix) {
159         if (snapshot_prefix[0] == '-' && snapshot_prefix[1] == 0) {
160             char comment[21];
161             snprintf(comment, sizeof comment, "%u", call_no);
162             src->writePNM(std::cout, comment);
163         } else {
164             char filename[PATH_MAX];
165             snprintf(filename, sizeof filename, "%s%010u.png", snapshot_prefix, call_no);
166             if (src->writePNG(filename) && retrace::verbosity >= 0) {
167                 std::cout << "Wrote " << filename << "\n";
168             }
169         }
170     }
171
172     if (ref) {
173         std::cout << "Snapshot " << call_no << " average precision of " << src->compare(*ref) << " bits\n";
174         delete ref;
175     }
176
177     delete src;
178 }
179
180
181 void frame_complete(Trace::Call &call) {
182     ++frame;
183
184     if (!drawable) {
185         return;
186     }
187
188     if (!drawable->visible) {
189         retrace::warning(call) << "could not infer drawable size (glViewport never called)\n";
190     }
191
192     if (snapshot_frequency == FREQUENCY_FRAME ||
193         snapshot_frequency == FREQUENCY_FRAMEBUFFER) {
194         snapshot(call.no);
195     }
196 }
197
198
199 static void display(void) {
200     retrace::Retracer retracer;
201
202     retracer.addCallbacks(gl_callbacks);
203     retracer.addCallbacks(glx_callbacks);
204     retracer.addCallbacks(wgl_callbacks);
205     retracer.addCallbacks(cgl_callbacks);
206
207     startTime = OS::GetTime();
208     Trace::Call *call;
209
210     while ((call = parser.parse_call())) {
211         retracer.retrace(*call);
212
213         if (!insideGlBeginEnd &&
214             drawable && context &&
215             call->no >= dump_state) {
216             glstate::dumpCurrentContext(std::cout);
217             exit(0);
218         }
219
220         delete call;
221     }
222
223     // Reached the end of trace
224     glFlush();
225
226     long long endTime = OS::GetTime();
227     float timeInterval = (endTime - startTime) * 1.0E-6;
228
229     if (retrace::verbosity >= -1) { 
230         std::cout << 
231             "Rendered " << frame << " frames"
232             " in " <<  timeInterval << " secs,"
233             " average of " << (frame/timeInterval) << " fps\n";
234     }
235
236     if (wait) {
237         while (glws::processEvents()) {}
238     } else {
239         exit(0);
240     }
241 }
242
243
244 static void usage(void) {
245     std::cout << 
246         "Usage: glretrace [OPTION] TRACE\n"
247         "Replay TRACE.\n"
248         "\n"
249         "  -b           benchmark mode (no error checking or warning messages)\n"
250         "  -c PREFIX    compare against snapshots\n"
251         "  -db          use a double buffer visual (default)\n"
252         "  -sb          use a single buffer visual\n"
253         "  -s PREFIX    take snapshots; `-` for PNM stdout output\n"
254         "  -S FREQUENCY snapshot frequency: frame (default), framebuffer, or draw\n"
255         "  -v           verbose output\n"
256         "  -D CALLNO    dump state at specific call no\n"
257         "  -w           wait on final frame\n";
258 }
259
260 extern "C"
261 int main(int argc, char **argv)
262 {
263
264     int i;
265     for (i = 1; i < argc; ++i) {
266         const char *arg = argv[i];
267
268         if (arg[0] != '-') {
269             break;
270         }
271
272         if (!strcmp(arg, "--")) {
273             break;
274         } else if (!strcmp(arg, "-b")) {
275             benchmark = true;
276             retrace::verbosity = -1;
277             glws::debug = false;
278         } else if (!strcmp(arg, "-c")) {
279             compare_prefix = argv[++i];
280             if (snapshot_frequency == FREQUENCY_NEVER) {
281                 snapshot_frequency = FREQUENCY_FRAME;
282             }
283         } else if (!strcmp(arg, "-D")) {
284             dump_state = atoi(argv[++i]);
285             retrace::verbosity = -2;
286         } else if (!strcmp(arg, "-db")) {
287             double_buffer = true;
288         } else if (!strcmp(arg, "-sb")) {
289             double_buffer = false;
290         } else if (!strcmp(arg, "--help")) {
291             usage();
292             return 0;
293         } else if (!strcmp(arg, "-s")) {
294             snapshot_prefix = argv[++i];
295             if (snapshot_frequency == FREQUENCY_NEVER) {
296                 snapshot_frequency = FREQUENCY_FRAME;
297             }
298             if (snapshot_prefix[0] == '-' && snapshot_prefix[1] == 0) {
299                 retrace::verbosity = -2;
300             }
301         } else if (!strcmp(arg, "-S")) {
302             arg = argv[++i];
303             if (!strcmp(arg, "frame")) {
304                 snapshot_frequency = FREQUENCY_FRAME;
305             } else if (!strcmp(arg, "framebuffer")) {
306                 snapshot_frequency = FREQUENCY_FRAMEBUFFER;
307             } else if (!strcmp(arg, "draw")) {
308                 snapshot_frequency = FREQUENCY_DRAW;
309             } else {
310                 std::cerr << "error: unknown frequency " << arg << "\n";
311                 usage();
312                 return 1;
313             }
314             if (snapshot_prefix == NULL) {
315                 snapshot_prefix = "";
316             }
317         } else if (!strcmp(arg, "-v")) {
318             ++retrace::verbosity;
319         } else if (!strcmp(arg, "-w")) {
320             wait = true;
321         } else {
322             std::cerr << "error: unknown option " << arg << "\n";
323             usage();
324             return 1;
325         }
326     }
327
328     glws::init();
329     visual = glws::createVisual(double_buffer);
330
331     for ( ; i < argc; ++i) {
332         if (!parser.open(argv[i])) {
333             std::cerr << "error: failed to open " << argv[i] << "\n";
334             return 1;
335         }
336
337         display();
338
339         parser.close();
340     }
341     
342     delete visual;
343     glws::cleanup();
344
345     return 0;
346 }
347
348 } /* namespace glretrace */