]> git.cworth.org Git - apitrace/blob - cli/cli_diff_state.cpp
cli: Fix invalid option message.
[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 <getopt.h>
30
31 #include <iostream>
32
33 #include "cli.hpp"
34 #include "os_string.hpp"
35 #include "os_process.hpp"
36 #include "cli_resources.hpp"
37
38 static const char *synopsis = "Identify differences between two state dumps.";
39
40 static void
41 usage(void)
42 {
43     std::cout
44         << "usage: apitrace diff-state <state-1> <state-2>\n"
45         << synopsis << "\n"
46         "\n"
47         "    Both input files should be the result of running 'glretrace -D XYZ <trace>'.\n";
48 }
49
50 const static char *
51 shortOptions = "h";
52
53 const static struct option
54 longOptions[] = {
55     {"help", no_argument, 0, 'h'},
56     {0, 0, 0, 0}
57 };
58
59 static int
60 command(int argc, char *argv[])
61 {
62     int opt;
63     while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
64         switch (opt) {
65         case 'h':
66             usage();
67             return 0;
68         default:
69             std::cerr << "error: unexpected option `" << (char)opt << "`\n";
70             usage();
71             return 1;
72         }
73     }
74
75     if (argc != optind + 2) {
76         std::cerr << "Error: diff-state requires exactly two state-dump files as arguments.\n";
77         usage();
78         return 1;
79     }
80
81     char *file1, *file2;
82
83     file1 = argv[optind];
84     file2 = argv[optind + 1];
85
86     os::String command = findScript("jsondiff.py");
87
88     char *args[5];
89
90     args[0] = const_cast<char *>("python");
91     args[1] = const_cast<char *>(command.str());
92     args[2] = file1;
93     args[3] = file2;
94     args[4] = NULL;
95
96     return os::execute(args);
97 }
98
99 const Command diff_state_command = {
100     "diff-state",
101     synopsis,
102     usage,
103     command
104 };