]> git.cworth.org Git - apitrace/blob - cli/cli_dump.cpp
3a428dbb7909456221dc147f5a142b5f490dcc6b
[apitrace] / cli / cli_dump.cpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #include <string.h>
27
28 #include "cli.hpp"
29
30 #include "trace_parser.hpp"
31
32 enum ColorOption {
33     COLOR_OPTION_NEVER = 0,
34     COLOR_OPTION_ALWAYS = 1,
35     COLOR_OPTION_AUTO = -1
36 };
37
38 static ColorOption color = COLOR_OPTION_AUTO;
39
40 void
41 apitrace_dump_usage(void)
42 {
43     std::cout << "usage: apitrace dump [OPTIONS] <trace-file>...\n"
44         APITRACE_DUMP_SYNOPSIS "\n"
45         "\n"
46         "    --color=<WHEN>\n"
47         "    --colour=<WHEN>     Colored syntax highlighting\n"
48         "                        WHEN is 'auto', 'always', or 'never'\n";
49 }
50
51 int
52 apitrace_dump_command(int argc, char *argv[], int first_arg_command)
53 {
54     int i;
55
56     for (i = first_arg_command; i < argc; ++i) {
57         const char *arg = argv[i];
58
59         if (arg[0] != '-') {
60             break;
61         }
62
63         if (!strcmp(arg, "--")) {
64             break;
65         } else if (!strcmp(arg, "--help")) {
66             apitrace_dump_usage();
67             return 0;
68         } else if (!strcmp(arg, "--color=auto") ||
69                    !strcmp(arg, "--colour=auto")) {
70             color = COLOR_OPTION_AUTO;
71         } else if (!strcmp(arg, "--color") ||
72                    !strcmp(arg, "--colour") ||
73                    !strcmp(arg, "--color=always") ||
74                    !strcmp(arg, "--colour=always")) {
75             color = COLOR_OPTION_ALWAYS;
76         } else if (!strcmp(arg, "--color=never") ||
77                    !strcmp(arg, "--colour=never") ||
78                    !strcmp(arg, "--no-color") ||
79                    !strcmp(arg, "--no-colour")) {
80             color = COLOR_OPTION_NEVER;
81         } else {
82             std::cerr << "error: unknown option " << arg << "\n";
83             apitrace_dump_usage();
84             return 1;
85         }
86     }
87
88     if (color == COLOR_OPTION_AUTO) {
89 #ifdef _WIN32
90         color = COLOR_OPTION_ALWAYS;
91 #else
92         color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER;
93 #endif
94     }
95
96     for (; i < argc; ++i) {
97         trace::Parser p;
98
99         if (!p.open(argv[i])) {
100             std::cerr << "error: failed to open " << argv[i] << "\n";
101             return 1;
102         }
103
104         trace::Call *call;
105         while ((call = p.parse_call())) {
106             call->dump(std::cout, color);
107             delete call;
108         }
109     }
110
111     return 0;
112 }