1 /*********************************************************************
3 * Copyright 2011 Jose Fonseca
4 * Copyright 2012 Intel Corporation
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:
15 * The above copyright notice and this permission notice shall be
16 * included in all copies or substantial portions of the Software.
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
27 *********************************************************************/
30 #include <limits.h> // for CHAR_MAX
34 #include "os_string.hpp"
35 #include "os_process.hpp"
37 #include "trace_parser.hpp"
38 #include "cli_resources.hpp"
41 #include "cli_retrace.hpp"
45 guessApi(const char *filename)
48 if (!p.open(filename)) {
50 return trace::API_UNKNOWN;
53 while ((call = p.parse_call())) {
56 if (p.api != trace::API_UNKNOWN) {
61 return trace::API_UNKNOWN;
65 executeRetrace(const std::vector<const char *> & opts,
66 const char *traceName,
68 const char *retraceName;
71 retraceName = "glretrace";
74 retraceName = "eglretrace";
81 // Use prefix so that it can be used with WINE
82 retraceName = "d3dretrace.exe";
85 std::cerr << "warning: could not guess trace's API\n";
86 retraceName = "glretrace";
90 std::vector<const char *> command;
91 os::String retracePath = findProgram(retraceName);
92 if (retracePath.length()) {
93 command.push_back(retracePath);
95 command.push_back(retraceName);
98 command.insert(command.end(), opts.begin(), opts.end());
101 command.push_back(traceName);
103 command.push_back(NULL);
105 return os::execute((char * const *)&command[0]);
109 executeRetrace(const std::vector<const char *> & opts,
110 const char *traceName) {
111 trace::API api = guessApi(traceName);
112 return executeRetrace(opts, traceName, api);
116 static const char *synopsis = "Replay a trace.";
121 std::vector<const char *>opts;
122 opts.push_back("--help");
123 trace::API api = trace::API_GL;
124 executeRetrace(opts, NULL, api);
128 command(int argc, char *argv[])
130 std::vector<const char *> opts;
131 for (int i = 1; i < argc; ++i) {
132 opts.push_back(argv[i]);
135 trace::API api = trace::API_GL;
137 const char *lastArg = argv[argc -1];
138 if (lastArg[0] != '-') {
139 api = guessApi(lastArg);
143 return executeRetrace(opts, NULL, api);
146 const Command retrace_command = {