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