]> git.cworth.org Git - apitrace/blob - cli/cli_diff_state.cpp
Add new "apitrace diff-state" command
[apitrace] / cli / cli_diff_state.cpp
1 /*********************************************************************
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
35 static const char *synopsis = "Identify differences between two state dumps.";
36
37 static void
38 usage(void)
39 {
40     std::cout
41         << "usage: apitrace diff-state <state-1> <state-2>\n"
42         << synopsis << "\n"
43         "\n"
44         "    Both input files should be the result of running 'glretrace -D XYZ <trace>'.\n";
45 }
46
47 static int
48 command(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-state requires exactly two state-dump 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_STATE_COMMAND "jsondiff.py"
84
85     os::Path command = trace::findFile("scripts/" CLI_DIFF_STATE_COMMAND,
86                  APITRACE_SCRIPTS_INSTALL_DIR "/" CLI_DIFF_STATE_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-state' command is not yet supported on this O/S.\n";
98 #else
99     execv(command.str(), args);
100 #endif
101
102     std::cerr << "Error: Failed to execute " << argv[0] << "\n";
103
104     return 1;
105 }
106
107 const Command diff_state_command = {
108     "diff-state",
109     synopsis,
110     usage,
111     command
112 };