]> git.cworth.org Git - apitrace/blob - cli/cli_dump.cpp
ebb92d8606c49fa24004ccd928e4e700bb8fc551
[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 #include "cli_pager.hpp"
30
31 #include "trace_parser.hpp"
32
33 enum ColorOption {
34     COLOR_OPTION_NEVER = 0,
35     COLOR_OPTION_ALWAYS = 1,
36     COLOR_OPTION_AUTO = -1
37 };
38
39 static ColorOption color = COLOR_OPTION_AUTO;
40
41 static bool verbose = false;
42
43 static const char *synopsis = "Dump given trace(s) to standard output.";
44
45 static void
46 usage(void)
47 {
48     std::cout
49         << "usage: apitrace dump [OPTIONS] <trace-file>...\n"
50         << synopsis << "\n"
51         "\n"
52         "    -v, --verbose       verbose output\n"
53         "    --color=<WHEN>\n"
54         "    --colour=<WHEN>     Colored syntax highlighting\n"
55         "                        WHEN is 'auto', 'always', or 'never'\n";
56 }
57
58 static int
59 command(int argc, char *argv[])
60 {
61     int i;
62
63     for (i = 0; i < argc; ++i) {
64         const char *arg = argv[i];
65
66         if (arg[0] != '-') {
67             break;
68         }
69
70         if (!strcmp(arg, "--")) {
71             break;
72         } else if (!strcmp(arg, "--help")) {
73             usage();
74             return 0;
75         } else if (strcmp(arg, "-v") == 0 ||
76                    strcmp(arg, "--verbose") == 0) {
77             verbose = true;
78         } else if (!strcmp(arg, "--color=auto") ||
79                    !strcmp(arg, "--colour=auto")) {
80             color = COLOR_OPTION_AUTO;
81         } else if (!strcmp(arg, "--color") ||
82                    !strcmp(arg, "--colour") ||
83                    !strcmp(arg, "--color=always") ||
84                    !strcmp(arg, "--colour=always")) {
85             color = COLOR_OPTION_ALWAYS;
86         } else if (!strcmp(arg, "--color=never") ||
87                    !strcmp(arg, "--colour=never") ||
88                    !strcmp(arg, "--no-color") ||
89                    !strcmp(arg, "--no-colour")) {
90             color = COLOR_OPTION_NEVER;
91         } else {
92             std::cerr << "error: unknown option " << arg << "\n";
93             usage();
94             return 1;
95         }
96     }
97
98     if (color == COLOR_OPTION_AUTO) {
99 #ifdef _WIN32
100         color = COLOR_OPTION_ALWAYS;
101 #else
102         color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER;
103         pipepager();
104 #endif
105     }
106
107     for (; i < argc; ++i) {
108         trace::Parser p;
109
110         if (!p.open(argv[i])) {
111             std::cerr << "error: failed to open " << argv[i] << "\n";
112             return 1;
113         }
114
115         trace::Call *call;
116         while ((call = p.parse_call())) {
117             if (verbose ||
118                 !(call->flags & trace::CALL_FLAG_VERBOSE)) {
119                 call->dump(std::cout, color);
120             }
121             delete call;
122         }
123     }
124
125     return 0;
126 }
127
128 const Command dump_command = {
129     "dump",
130     synopsis,
131     usage,
132     command
133 };