]> git.cworth.org Git - apitrace/blob - glretrace_main.cpp
Don't create an initial window.
[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 "glretrace.hpp"
33
34
35 namespace glretrace {
36
37 bool double_buffer = false;
38 bool insideGlBeginEnd = false;
39 Trace::Parser parser;
40 glws::WindowSystem *ws = NULL;
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
53 unsigned dump_state = ~0;
54
55 void
56 checkGlError(int callIdx) {
57     if (benchmark || insideGlBeginEnd) {
58         return;
59     }
60
61     GLenum error = glGetError();
62     if (error == GL_NO_ERROR) {
63         return;
64     }
65
66     if (callIdx >= 0) {
67         std::cerr << callIdx << ": ";
68     }
69
70     std::cerr << "warning: glGetError() = ";
71     switch (error) {
72     case GL_INVALID_ENUM:
73         std::cerr << "GL_INVALID_ENUM";
74         break;
75     case GL_INVALID_VALUE:
76         std::cerr << "GL_INVALID_VALUE";
77         break;
78     case GL_INVALID_OPERATION:
79         std::cerr << "GL_INVALID_OPERATION";
80         break;
81     case GL_STACK_OVERFLOW:
82         std::cerr << "GL_STACK_OVERFLOW";
83         break;
84     case GL_STACK_UNDERFLOW:
85         std::cerr << "GL_STACK_UNDERFLOW";
86         break;
87     case GL_OUT_OF_MEMORY:
88         std::cerr << "GL_OUT_OF_MEMORY";
89         break;
90     case GL_INVALID_FRAMEBUFFER_OPERATION:
91         std::cerr << "GL_INVALID_FRAMEBUFFER_OPERATION";
92         break;
93     case GL_TABLE_TOO_LARGE:
94         std::cerr << "GL_TABLE_TOO_LARGE";
95         break;
96     default:
97         std::cerr << error;
98         break;
99     }
100     std::cerr << "\n";
101 }
102
103
104 static void snapshot(Image::Image &image) {
105     GLint drawbuffer = double_buffer ? GL_BACK : GL_FRONT;
106     GLint readbuffer = double_buffer ? GL_BACK : GL_FRONT;
107     glGetIntegerv(GL_DRAW_BUFFER, &drawbuffer);
108     glGetIntegerv(GL_READ_BUFFER, &readbuffer);
109     glReadBuffer(drawbuffer);
110     glReadPixels(0, 0, image.width, image.height, GL_RGBA, GL_UNSIGNED_BYTE, image.pixels);
111     checkGlError();
112     glReadBuffer(readbuffer);
113 }
114
115
116 void frame_complete(unsigned call_no) {
117     ++frame;
118     
119     if (drawable &&
120         (snapshot_prefix || compare_prefix)) {
121         Image::Image *ref = NULL;
122         if (compare_prefix) {
123             char filename[PATH_MAX];
124             snprintf(filename, sizeof filename, "%s%010u.png", compare_prefix, call_no);
125             ref = Image::readPNG(filename);
126             if (!ref) {
127                 return;
128             }
129             if (retrace::verbosity >= 0)
130                 std::cout << "Read " << filename << "\n";
131         }
132         
133         Image::Image src(drawable->width, drawable->height, true);
134         snapshot(src);
135
136         if (snapshot_prefix) {
137             char filename[PATH_MAX];
138             snprintf(filename, sizeof filename, "%s%010u.png", snapshot_prefix, call_no);
139             if (src.writePNG(filename) && retrace::verbosity >= 0) {
140                 std::cout << "Wrote " << filename << "\n";
141             }
142         }
143
144         if (ref) {
145             std::cout << "Snapshot " << call_no << " average precision of " << src.compare(*ref) << " bits\n";
146             delete ref;
147         }
148     }
149
150 }
151
152
153 static void display(void) {
154     Trace::Call *call;
155
156     while ((call = parser.parse_call())) {
157         const std::string &name = call->name();
158
159         if (retrace::verbosity >= 1) {
160             std::cout << *call;
161             std::cout.flush();
162         }
163
164         if (name[0] == 'w' && name[1] == 'g' && name[2] == 'l') {
165             glretrace::retrace_call_wgl(*call);
166         }
167         else if (name[0] == 'g' && name[1] == 'l' && name[2] == 'X') {
168             glretrace::retrace_call_glx(*call);
169         } else {
170             retrace::retrace_call(*call);
171         }
172
173         if (!insideGlBeginEnd &&
174             drawable && context &&
175             call->no >= dump_state) {
176             state_dump(std::cout);
177             exit(0);
178         }
179
180         delete call;
181     }
182
183     // Reached the end of trace
184     glFlush();
185
186     long long endTime = OS::GetTime();
187     float timeInterval = (endTime - startTime) * 1.0E-6;
188
189     if (retrace::verbosity >= -1) { 
190         std::cout << 
191             "Rendered " << frame << " frames"
192             " in " <<  timeInterval << " secs,"
193             " average of " << (frame/timeInterval) << " fps\n";
194     }
195
196     if (wait) {
197         while (ws->processEvents()) {}
198     } else {
199         exit(0);
200     }
201 }
202
203
204 static void usage(void) {
205     std::cout << 
206         "Usage: glretrace [OPTION] TRACE\n"
207         "Replay TRACE.\n"
208         "\n"
209         "  -b           benchmark (no glgeterror; no messages)\n"
210         "  -c PREFIX    compare against snapshots\n"
211         "  -db          use a double buffer visual\n"
212         "  -s PREFIX    take snapshots\n"
213         "  -v           verbose output\n"
214         "  -D CALLNO    dump state at specific call no\n"
215         "  -w           wait on final frame\n";
216 }
217
218 extern "C"
219 int main(int argc, char **argv)
220 {
221
222     int i;
223     for (i = 1; i < argc; ++i) {
224         const char *arg = argv[i];
225
226         if (arg[0] != '-') {
227             break;
228         }
229
230         if (!strcmp(arg, "--")) {
231             break;
232         } else if (!strcmp(arg, "-b")) {
233             benchmark = true;
234             retrace::verbosity = -1;
235         } else if (!strcmp(arg, "-c")) {
236             compare_prefix = argv[++i];
237         } else if (!strcmp(arg, "-D")) {
238             dump_state = atoi(argv[++i]);
239             retrace::verbosity = -2;
240         } else if (!strcmp(arg, "-db")) {
241             double_buffer = true;
242         } else if (!strcmp(arg, "--help")) {
243             usage();
244             return 0;
245         } else if (!strcmp(arg, "-s")) {
246             snapshot_prefix = argv[++i];
247         } else if (!strcmp(arg, "-v")) {
248             ++retrace::verbosity;
249         } else if (!strcmp(arg, "-w")) {
250             wait = true;
251         } else {
252             std::cerr << "error: unknown option " << arg << "\n";
253             usage();
254             return 1;
255         }
256     }
257
258     ws = glws::createNativeWindowSystem();
259     visual = ws->createVisual(double_buffer);
260
261     for ( ; i < argc; ++i) {
262         if (parser.open(argv[i])) {
263             startTime = OS::GetTime();
264             display();
265             parser.close();
266         }
267     }
268
269     return 0;
270 }
271
272 } /* namespace glretrace */