blob: a2dbd09986b86ffc5d31ab5318b02849699f8d4e [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
Carl Worthda96cbf2012-08-20 09:45:27 -070034#include "os_string.hpp"
35#include "os_process.hpp"
36
José Fonsecadf8c8192012-11-21 01:18:49 +000037#include "trace_parser.hpp"
Carl Worthda96cbf2012-08-20 09:45:27 -070038#include "trace_resource.hpp"
39
José Fonsecad7a44872012-11-21 08:58:42 +000040#include "cli.hpp"
41#include "cli_retrace.hpp"
42
Carl Worthda96cbf2012-08-20 09:45:27 -070043
José Fonsecadf8c8192012-11-21 01:18:49 +000044static trace::API
45guessApi(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
José Fonsecad7a44872012-11-21 08:58:42 +000063int
64executeRetrace(const std::vector<const char *> & opts,
65 const char *traceName,
66 trace::API api) {
José Fonsecadf8c8192012-11-21 01:18:49 +000067 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 }
Carl Worthda96cbf2012-08-20 09:45:27 -070090
José Fonsecad7a44872012-11-21 08:58:42 +000091 std::vector<const char *> command;
José Fonsecadf8c8192012-11-21 01:18:49 +000092 os::String retracePath = trace::findProgram(retraceName);
José Fonsecad7a44872012-11-21 08:58:42 +000093 if (retracePath.length()) {
José Fonsecadf8c8192012-11-21 01:18:49 +000094 command.push_back(retracePath);
95 } else {
96 command.push_back(retraceName);
97 }
Carl Worthda96cbf2012-08-20 09:45:27 -070098
José Fonsecad7a44872012-11-21 08:58:42 +000099 command.insert(command.end(), opts.begin(), opts.end());
Carl Worthda96cbf2012-08-20 09:45:27 -0700100
José Fonsecaec827772012-11-21 09:13:32 +0000101 if (traceName) {
102 command.push_back(traceName);
103 }
Carl Worthda96cbf2012-08-20 09:45:27 -0700104 command.push_back(NULL);
105
106 return os::execute((char * const *)&command[0]);
107}
108
José Fonsecad7a44872012-11-21 08:58:42 +0000109int
110executeRetrace(const std::vector<const char *> & opts,
111 const char *traceName) {
112 trace::API api = guessApi(traceName);
113 return executeRetrace(opts, traceName, api);
114}
115
José Fonsecaec827772012-11-21 09:13:32 +0000116
117static const char *synopsis = "Replay a trace.";
118
119static void
120usage(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
José Fonsecad7a44872012-11-21 08:58:42 +0000128static int
129command(int argc, char *argv[])
130{
131 std::vector<const char *> opts;
José Fonsecaec827772012-11-21 09:13:32 +0000132 for (int i = 1; i < argc; ++i) {
133 opts.push_back(argv[i]);
134 }
José Fonsecad7a44872012-11-21 08:58:42 +0000135
José Fonsecaec827772012-11-21 09:13:32 +0000136 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);
José Fonsecad7a44872012-11-21 08:58:42 +0000141 }
142 }
143
José Fonsecaec827772012-11-21 09:13:32 +0000144 return executeRetrace(opts, NULL, api);
José Fonsecad7a44872012-11-21 08:58:42 +0000145}
146
José Fonseca3320d022012-11-18 15:45:27 +0000147const Command retrace_command = {
148 "retrace",
Carl Worthda96cbf2012-08-20 09:45:27 -0700149 synopsis,
150 usage,
151 command
152};