]> git.cworth.org Git - apitrace/blob - glretrace_main.cpp
beaac82dd4e7429ae31d1d054e1b0387ce3fca46
[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::WindowSystem *ws = NULL;
42 glws::Visual *visual = NULL;
43 glws::Drawable *drawable = NULL;
44 glws::Context *context = NULL;
45
46 unsigned frame = 0;
47 long long startTime = 0;
48 bool wait = false;
49
50 bool benchmark = false;
51 const char *compare_prefix = NULL;
52 const char *snapshot_prefix = NULL;
53 enum frequency snapshot_frequency = FREQUENCY_NEVER;
54
55 unsigned dump_state = ~0;
56
57 void
58 checkGlError(Trace::Call &call) {
59     GLenum error = glGetError();
60     if (error == GL_NO_ERROR) {
61         return;
62     }
63
64     if (retrace::verbosity == 0) {
65         std::cout << call;
66         std::cout.flush();
67     }
68
69     std::cerr << call.no << ": ";
70     std::cerr << "warning: glGetError(";
71     std::cerr << call.name();
72     std::cerr << ") = ";
73
74     switch (error) {
75     case GL_INVALID_ENUM:
76         std::cerr << "GL_INVALID_ENUM";
77         break;
78     case GL_INVALID_VALUE:
79         std::cerr << "GL_INVALID_VALUE";
80         break;
81     case GL_INVALID_OPERATION:
82         std::cerr << "GL_INVALID_OPERATION";
83         break;
84     case GL_STACK_OVERFLOW:
85         std::cerr << "GL_STACK_OVERFLOW";
86         break;
87     case GL_STACK_UNDERFLOW:
88         std::cerr << "GL_STACK_UNDERFLOW";
89         break;
90     case GL_OUT_OF_MEMORY:
91         std::cerr << "GL_OUT_OF_MEMORY";
92         break;
93     case GL_INVALID_FRAMEBUFFER_OPERATION:
94         std::cerr << "GL_INVALID_FRAMEBUFFER_OPERATION";
95         break;
96     case GL_TABLE_TOO_LARGE:
97         std::cerr << "GL_TABLE_TOO_LARGE";
98         break;
99     default:
100         std::cerr << error;
101         break;
102     }
103     std::cerr << "\n";
104 }
105
106
107 void snapshot(unsigned call_no) {
108     if (!drawable ||
109         (!snapshot_prefix && !compare_prefix)) {
110         return;
111     }
112
113     Image::Image *ref = NULL;
114
115     if (compare_prefix) {
116         char filename[PATH_MAX];
117         snprintf(filename, sizeof filename, "%s%010u.png", compare_prefix, call_no);
118         ref = Image::readPNG(filename);
119         if (!ref) {
120             return;
121         }
122         if (retrace::verbosity >= 0) {
123             std::cout << "Read " << filename << "\n";
124         }
125     }
126
127     Image::Image *src = glstate::getDrawBufferImage(GL_RGBA);
128     if (!src) {
129         return;
130     }
131
132     if (snapshot_prefix) {
133         char filename[PATH_MAX];
134         snprintf(filename, sizeof filename, "%s%010u.png", snapshot_prefix, call_no);
135         if (src->writePNG(filename) && retrace::verbosity >= 0) {
136             std::cout << "Wrote " << filename << "\n";
137         }
138     }
139
140     if (ref) {
141         std::cout << "Snapshot " << call_no << " average precision of " << src->compare(*ref) << " bits\n";
142         delete ref;
143     }
144
145     delete src;
146 }
147
148
149 void frame_complete(unsigned call_no) {
150     ++frame;
151
152     if (snapshot_frequency == FREQUENCY_FRAME ||
153         snapshot_frequency == FREQUENCY_FRAMEBUFFER) {
154         snapshot(call_no);
155     }
156 }
157
158
159 static void display(void) {
160     startTime = OS::GetTime();
161     Trace::Call *call;
162
163     while ((call = parser.parse_call())) {
164         const char *name = call->name();
165
166         if (retrace::verbosity >= 1) {
167             std::cout << *call;
168             std::cout.flush();
169         }
170
171         if (name[0] == 'C' && name[1] == 'G' && name[2] == 'L') {
172             glretrace::retrace_call_cgl(*call);
173         }
174         else if (name[0] == 'w' && name[1] == 'g' && name[2] == 'l') {
175             glretrace::retrace_call_wgl(*call);
176         }
177         else if (name[0] == 'g' && name[1] == 'l' && name[2] == 'X') {
178             glretrace::retrace_call_glx(*call);
179         } else {
180             retrace::retrace_call(*call);
181         }
182
183         if (!insideGlBeginEnd &&
184             drawable && context &&
185             call->no >= dump_state) {
186             glstate::dumpCurrentContext(std::cout);
187             exit(0);
188         }
189
190         delete call;
191     }
192
193     // Reached the end of trace
194     glFlush();
195
196     long long endTime = OS::GetTime();
197     float timeInterval = (endTime - startTime) * 1.0E-6;
198
199     if (retrace::verbosity >= -1) { 
200         std::cout << 
201             "Rendered " << frame << " frames"
202             " in " <<  timeInterval << " secs,"
203             " average of " << (frame/timeInterval) << " fps\n";
204     }
205
206     if (wait) {
207         while (ws->processEvents()) {}
208     } else {
209         exit(0);
210     }
211 }
212
213
214 static void usage(void) {
215     std::cout << 
216         "Usage: glretrace [OPTION] TRACE\n"
217         "Replay TRACE.\n"
218         "\n"
219         "  -b           benchmark mode (no error checking or warning messages)\n"
220         "  -c PREFIX    compare against snapshots\n"
221         "  -db          use a double buffer visual (default)\n"
222         "  -sb          use a single buffer visual\n"
223         "  -s PREFIX    take snapshots\n"
224         "  -S FREQUENCY snapshot frequency: frame (default), framebuffer, or draw\n"
225         "  -v           verbose output\n"
226         "  -D CALLNO    dump state at specific call no\n"
227         "  -w           wait on final frame\n";
228 }
229
230 extern "C"
231 int main(int argc, char **argv)
232 {
233
234     int i;
235     for (i = 1; i < argc; ++i) {
236         const char *arg = argv[i];
237
238         if (arg[0] != '-') {
239             break;
240         }
241
242         if (!strcmp(arg, "--")) {
243             break;
244         } else if (!strcmp(arg, "-b")) {
245             benchmark = true;
246             retrace::verbosity = -1;
247         } else if (!strcmp(arg, "-c")) {
248             compare_prefix = argv[++i];
249             if (snapshot_frequency == FREQUENCY_NEVER) {
250                 snapshot_frequency = FREQUENCY_FRAME;
251             }
252         } else if (!strcmp(arg, "-D")) {
253             dump_state = atoi(argv[++i]);
254             retrace::verbosity = -2;
255         } else if (!strcmp(arg, "-db")) {
256             double_buffer = true;
257         } else if (!strcmp(arg, "-sb")) {
258             double_buffer = false;
259         } else if (!strcmp(arg, "--help")) {
260             usage();
261             return 0;
262         } else if (!strcmp(arg, "-s")) {
263             snapshot_prefix = argv[++i];
264             if (snapshot_frequency == FREQUENCY_NEVER) {
265                 snapshot_frequency = FREQUENCY_FRAME;
266             }
267         } else if (!strcmp(arg, "-S")) {
268             arg = argv[++i];
269             if (!strcmp(arg, "frame")) {
270                 snapshot_frequency = FREQUENCY_FRAME;
271             } else if (!strcmp(arg, "framebuffer")) {
272                 snapshot_frequency = FREQUENCY_FRAMEBUFFER;
273             } else if (!strcmp(arg, "draw")) {
274                 snapshot_frequency = FREQUENCY_DRAW;
275             } else {
276                 std::cerr << "error: unknown frequency " << arg << "\n";
277                 usage();
278                 return 1;
279             }
280             if (snapshot_prefix == NULL) {
281                 snapshot_prefix = "";
282             }
283         } else if (!strcmp(arg, "-v")) {
284             ++retrace::verbosity;
285         } else if (!strcmp(arg, "-w")) {
286             wait = true;
287         } else {
288             std::cerr << "error: unknown option " << arg << "\n";
289             usage();
290             return 1;
291         }
292     }
293
294     ws = glws::createNativeWindowSystem();
295     visual = ws->createVisual(double_buffer);
296
297     for ( ; i < argc; ++i) {
298         if (!parser.open(argv[i])) {
299             std::cerr << "error: failed to open " << argv[i] << "\n";
300             return 1;
301         }
302
303         display();
304
305         parser.close();
306     }
307
308     return 0;
309 }
310
311 } /* namespace glretrace */