]> git.cworth.org Git - apitrace/blob - cli/cli_retrace.cpp
e4d8f788f972d40b23b3803f02721500b7a2e879
[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_DXGI:
80         // Use prefix so that it can be used with WINE
81         retraceName = "d3dretrace.exe";
82         break;
83     default:
84         std::cerr << "warning: could not guess trace's API\n";
85         retraceName = "glretrace";
86         break;
87     }
88
89     std::vector<const char *> command;
90     os::String retracePath = findProgram(retraceName);
91     if (retracePath.length()) {
92         command.push_back(retracePath);
93     } else {
94         command.push_back(retraceName);
95     }
96
97     command.insert(command.end(), opts.begin(), opts.end());
98
99     if (traceName) {
100         command.push_back(traceName);
101     }
102     command.push_back(NULL);
103
104     return os::execute((char * const *)&command[0]);
105 }
106
107 int
108 executeRetrace(const std::vector<const char *> & opts,
109                const char *traceName) {
110     trace::API api = guessApi(traceName);
111     return executeRetrace(opts, traceName, api);
112 }
113
114
115 static const char *synopsis = "Replay a trace.";
116
117 static void
118 usage(void)
119 {
120     std::vector<const char *>opts;
121     opts.push_back("--help");
122     trace::API api = trace::API_GL;
123     executeRetrace(opts, NULL, api);
124 }
125
126 static int
127 command(int argc, char *argv[])
128 {
129     std::vector<const char *> opts;
130     for (int i = 1; i < argc; ++i) {
131         opts.push_back(argv[i]);
132     }
133
134     trace::API api = trace::API_GL;
135     if (argc >= 1) {
136         const char *lastArg = argv[argc -1];
137         if (lastArg[0] != '-') {
138             api = guessApi(lastArg);
139         }
140     }
141
142     return executeRetrace(opts, NULL, api);
143 }
144
145 const Command retrace_command = {
146     "retrace",
147     synopsis,
148     usage,
149     command
150 };