blob: de5eb6b9fc4daa11fb959849cd02699b0fe4e509 [file] [log] [blame]
Carl Worthda96cbf2012-08-20 09:45:27 -07001/*********************************************************************
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 "cli.hpp"
35
36#include "os_string.hpp"
37#include "os_process.hpp"
38
José Fonsecadf8c8192012-11-21 01:18:49 +000039#include "trace_parser.hpp"
Carl Worthda96cbf2012-08-20 09:45:27 -070040#include "trace_resource.hpp"
41
42static const char *synopsis = "Replay a trace.";
43
44static void
45usage(void)
46{
José Fonseca3320d022012-11-18 15:45:27 +000047 std::cout << "usage apitrace retrace [OPTIONS] TRACE_FILE\n"
Carl Worthda96cbf2012-08-20 09:45:27 -070048 << synopsis << "\n"
49 "\n"
50 " -h, --help Show this help message and exit\n"
51 " -w, --wait Wait for user termination after the last frame\n"
52 "\n";
53}
54
55const static char *
56shortOptions = "hw";
57
58const static struct option
59longOptions[] = {
60 {"help", no_argument, 0, 'h'},
61 {"wait", required_argument, 0, 'w'},
62 {0, 0, 0, 0}
63};
64
José Fonsecadf8c8192012-11-21 01:18:49 +000065static trace::API
66guessApi(const char *filename)
67{
68 trace::Parser p;
69 if (!p.open(filename)) {
70 return trace::API_UNKNOWN;
71 }
72 trace::Call *call;
73 while ((call = p.parse_call())) {
74 delete call;
75
76 if (p.api != trace::API_UNKNOWN) {
77 return p.api;
78 }
79 }
80
81 return trace::API_UNKNOWN;
82}
83
Carl Worthda96cbf2012-08-20 09:45:27 -070084static int
85command(int argc, char *argv[])
86{
87 bool wait = false;
José Fonsecadf8c8192012-11-21 01:18:49 +000088 const char *traceName;
Carl Worthda96cbf2012-08-20 09:45:27 -070089
90 int opt;
91 while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
92 switch (opt) {
93 case 'h':
94 usage();
95 return 0;
96 case 'w':
97 wait = true;
98 break;
99 default:
100 std::cerr << "error: unexpected option `" << opt << "`\n";
101 usage();
102 return 1;
103 }
104 }
105
106 if (optind >= argc) {
José Fonseca3320d022012-11-18 15:45:27 +0000107 std::cerr << "error: apitrace retrace requires a trace file as an argument.\n";
Carl Worthda96cbf2012-08-20 09:45:27 -0700108 usage();
109 return 1;
110 }
111
112 if (optind < argc - 1) {
José Fonseca3320d022012-11-18 15:45:27 +0000113 std::cerr << "error: apitrace retrace can accept only a single trace file argument.\n";
Carl Worthda96cbf2012-08-20 09:45:27 -0700114 usage();
115 return 1;
116 }
117
José Fonsecadf8c8192012-11-21 01:18:49 +0000118 traceName = argv[optind];
119
120 trace::API api = guessApi(traceName);
Carl Worthda96cbf2012-08-20 09:45:27 -0700121
Carl Worthda96cbf2012-08-20 09:45:27 -0700122 std::vector<const char *> command;
José Fonsecadf8c8192012-11-21 01:18:49 +0000123 const char *retraceName;
124 switch (api) {
125 case trace::API_GL:
126 retraceName = "glretrace";
127 break;
128 case trace::API_EGL:
129 retraceName = "eglretrace";
130 break;
131 case trace::API_DX:
132 case trace::API_D3D7:
133 case trace::API_D3D8:
134 case trace::API_D3D9:
135 case trace::API_D3D10:
136 case trace::API_D3D10_1:
137 case trace::API_D3D11:
138 // Can be used with WINE
139 retraceName = "d3dretrace.exe";
140 break;
141 default:
142 std::cerr << "warning: could not guess trace's API\n";
143 retraceName = "glretrace";
144 break;
145 }
Carl Worthda96cbf2012-08-20 09:45:27 -0700146
José Fonsecadf8c8192012-11-21 01:18:49 +0000147 os::String retracePath = trace::findProgram(retraceName);
148 if (retracePath) {
149 command.push_back(retracePath);
150 } else {
151 command.push_back(retraceName);
152 }
Carl Worthda96cbf2012-08-20 09:45:27 -0700153
154 if (wait) {
155 command.push_back("--wait");
156 }
157
José Fonsecadf8c8192012-11-21 01:18:49 +0000158 command.push_back(traceName);
Carl Worthda96cbf2012-08-20 09:45:27 -0700159 command.push_back(NULL);
160
161 return os::execute((char * const *)&command[0]);
162}
163
José Fonseca3320d022012-11-18 15:45:27 +0000164const Command retrace_command = {
165 "retrace",
Carl Worthda96cbf2012-08-20 09:45:27 -0700166 synopsis,
167 usage,
168 command
169};