]> git.cworth.org Git - apitrace/blob - cli/cli_retrace.cpp
062f51bdded2456bd6ca33959c421c10c72abecf
[apitrace] / cli / cli_retrace.cpp
1 /*********************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * Copyright 2012 Intel Corporation
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person
8  * obtaining a copy of this software and associated documentation
9  * files (the "Software"), to deal in the Software without
10  * restriction, including without limitation the rights to use, copy,
11  * modify, merge, publish, distribute, sublicense, and/or sell copies
12  * of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be
16  * included in all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
22  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
23  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  *
27  *********************************************************************/
28
29 #include <string.h>
30 #include <limits.h> // for CHAR_MAX
31 #include <getopt.h>
32 #include <iostream>
33
34 #include "os_string.hpp"
35 #include "os_process.hpp"
36
37 #include "trace_parser.hpp"
38 #include "cli_resources.hpp"
39
40 #include "cli.hpp"
41 #include "cli_retrace.hpp"
42
43
44 static trace::API
45 guessApi(const char *filename)
46 {
47     trace::Parser p;
48     if (!p.open(filename)) {
49         return trace::API_UNKNOWN;
50     }
51     trace::Call *call;
52     while ((call = p.parse_call())) {
53         delete call;
54
55         if (p.api != trace::API_UNKNOWN) {
56             return p.api;
57         }
58     }
59
60     return trace::API_UNKNOWN;
61 }
62
63 int
64 executeRetrace(const std::vector<const char *> & opts,
65                const char *traceName,
66                trace::API api) {
67     const char *retraceName;
68     switch (api) {
69     case trace::API_GL:
70         retraceName = "glretrace";
71         break;
72     case trace::API_EGL:
73         retraceName = "eglretrace";
74         break;
75     case trace::API_DX:
76     case trace::API_D3D7:
77     case trace::API_D3D8:
78     case trace::API_D3D9:
79     case trace::API_D3D10:
80     case trace::API_D3D10_1:
81     case trace::API_D3D11:
82         // Can be used with WINE
83         retraceName = "d3dretrace.exe";
84         break;
85     default:
86         std::cerr << "warning: could not guess trace's API\n";
87         retraceName = "glretrace";
88         break;
89     }
90
91     std::vector<const char *> command;
92     os::String retracePath = findProgram(retraceName);
93     if (retracePath.length()) {
94         command.push_back(retracePath);
95     } else {
96         command.push_back(retraceName);
97     }
98
99     command.insert(command.end(), opts.begin(), opts.end());
100
101     if (traceName) {
102         command.push_back(traceName);
103     }
104     command.push_back(NULL);
105
106     return os::execute((char * const *)&command[0]);
107 }
108
109 int
110 executeRetrace(const std::vector<const char *> & opts,
111                const char *traceName) {
112     trace::API api = guessApi(traceName);
113     return executeRetrace(opts, traceName, api);
114 }
115
116
117 static const char *synopsis = "Replay a trace.";
118
119 static void
120 usage(void)
121 {
122     std::vector<const char *>opts;
123     opts.push_back("--help");
124     trace::API api = trace::API_GL;
125     executeRetrace(opts, NULL, api);
126 }
127
128 static int
129 command(int argc, char *argv[])
130 {
131     std::vector<const char *> opts;
132     for (int i = 1; i < argc; ++i) {
133         opts.push_back(argv[i]);
134     }
135
136     trace::API api = trace::API_GL;
137     if (argc >= 1) {
138         const char *lastArg = argv[argc -1];
139         if (lastArg[0] != '-') {
140             api = guessApi(lastArg);
141         }
142     }
143
144     return executeRetrace(opts, NULL, api);
145 }
146
147 const Command retrace_command = {
148     "retrace",
149     synopsis,
150     usage,
151     command
152 };