blob: 11399a16b4c191f07c0372470b3a359ae2bfe6bb [file] [log] [blame]
Carl Worth32420d22011-11-04 15:45:09 -07001/*********************************************************************
2 *
3 * Copyright 2011 Intel Corporation
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person
7 * obtaining a copy of this software and associated documentation
8 * files (the "Software"), to deal in the Software without
9 * restriction, including without limitation the rights to use, copy,
10 * modify, merge, publish, distribute, sublicense, and/or sell copies
11 * of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be
15 * included in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
21 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
25 *
26 *********************************************************************/
27
28#include <string.h>
29#include <iostream>
30
31#include "cli.hpp"
32#include "os_path.hpp"
33#include "trace_tools.hpp"
34
35static const char *synopsis = "Identify differences between two traces.";
36
37static void
38usage(void)
39{
40 std::cout
41 << "usage: apitrace diff <trace-1> <trace-2>\n"
42 << synopsis << "\n"
43 "\n"
44 " Both input files should be the result of running 'apitrace trace'.\n";
45}
46
47static int
48command(int argc, char *argv[])
49{
50 int i;
51
52 for (i = 0; i < argc; ++i) {
53 const char *arg = argv[i];
54
55 if (arg[0] != '-') {
56 break;
57 }
58
59 if (!strcmp(arg, "--")) {
60 i++;
61 break;
62 } else if (!strcmp(arg, "--help")) {
63 usage();
64 return 0;
65 } else {
66 std::cerr << "error: unknown option " << arg << "\n";
67 usage();
68 return 1;
69 }
70 }
71
72 if (argc - i != 2) {
73 std::cerr << "Error: diff requires exactly two trace files as arguments.\n";
74 usage();
75 return 1;
76 }
77
78 char *file1, *file2;
79
80 file1 = argv[i];
81 file2 = argv[i+1];
82
83#define CLI_DIFF_TRACEDIFF_COMMAND "tracediff.sh"
84
85 os::Path command = trace::findFile("scripts/" CLI_DIFF_TRACEDIFF_COMMAND,
86 APITRACE_SCRIPTS_INSTALL_DIR "/" CLI_DIFF_TRACEDIFF_COMMAND,
87 true);
88
89 char* args[4];
90
91 args[0] = (char *) command.str();
92 args[1] = file1;
93 args[2] = file2;
94 args[3] = NULL;
95
96#ifdef _WIN32
97 std::cerr << "The 'apitrace diff' command is not yet supported on this O/S.\n";
98#else
José Fonsecafa9d7a32011-11-06 08:58:30 +000099 os::Path apitrace = os::getProcessName();
100 setenv("APITRACE", apitrace.str(), 1);
101
Carl Worth32420d22011-11-04 15:45:09 -0700102 execv(command.str(), args);
103#endif
104
105 std::cerr << "Error: Failed to execute " << argv[0] << "\n";
106
107 return 1;
108}
109
110const Command diff_command = {
111 "diff",
112 synopsis,
113 usage,
114 command
115};