]> git.cworth.org Git - apitrace/blob - cli/cli_dump.cpp
Support D3D apis on apitrace trace command.
[apitrace] / cli / cli_dump.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * Copyright 2010 VMware, Inc.
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies 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 included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  *
25  **************************************************************************/
26
27
28 #include <string.h>
29 #include <limits.h> // for CHAR_MAX
30 #include <getopt.h>
31
32 #include "cli.hpp"
33 #include "cli_pager.hpp"
34
35 #include "trace_parser.hpp"
36 #include "trace_dump.hpp"
37 #include "trace_callset.hpp"
38
39
40 enum ColorOption {
41     COLOR_OPTION_NEVER = 0,
42     COLOR_OPTION_ALWAYS = 1,
43     COLOR_OPTION_AUTO = -1
44 };
45
46 static ColorOption color = COLOR_OPTION_AUTO;
47
48 static bool verbose = false;
49
50 static trace::CallSet calls(trace::FREQUENCY_ALL);
51
52 static const char *synopsis = "Dump given trace(s) to standard output.";
53
54 static void
55 usage(void)
56 {
57     std::cout
58         << "usage: apitrace dump [OPTIONS] TRACE_FILE...\n"
59         << synopsis << "\n"
60         "\n"
61         "    -h, --help           show this help message and exit\n"
62         "    -v, --verbose        verbose output\n"
63         "    --calls=CALLSET      only dump specified calls\n"
64         "    --color[=WHEN]\n"
65         "    --colour[=WHEN]      colored syntax highlighting\n"
66         "                         WHEN is 'auto', 'always', or 'never'\n"
67         "    --arg-names[=BOOL]   dump argument names [default: yes]\n"
68         "    --thread-ids=[=BOOL] dump thread ids [default: no]\n"
69         "\n"
70     ;
71 }
72
73 enum {
74         CALLS_OPT = CHAR_MAX + 1,
75         COLOR_OPT,
76     ARG_NAMES_OPT,
77     THREAD_IDS_OPT,
78 };
79
80 const static char *
81 shortOptions = "hv";
82
83 const static struct option
84 longOptions[] = {
85     {"help", no_argument, 0, 'h'},
86     {"verbose", no_argument, 0, 'v'},
87     {"calls", required_argument, 0, CALLS_OPT},
88     {"colour", optional_argument, 0, COLOR_OPT},
89     {"color", optional_argument, 0, COLOR_OPT},
90     {"arg-names", optional_argument, 0, ARG_NAMES_OPT},
91     {"thread-ids", optional_argument, 0, THREAD_IDS_OPT},
92     {0, 0, 0, 0}
93 };
94
95 static bool
96 boolOption(const char *option, bool default_ = true) {
97     if (!option) {
98         return default_;
99     }
100     if (strcmp(option, "0") == 0 ||
101         strcmp(option, "no") == 0 ||
102         strcmp(option, "false") == 0) {
103         return false;
104     }
105     if (strcmp(option, "0") == 0 ||
106         strcmp(option, "yes") == 0 ||
107         strcmp(option, "true") == 0) {
108         return true;
109     }
110     std::cerr << "error: unexpected bool " << option << "\n";
111     return default_;
112 }
113
114 static int
115 command(int argc, char *argv[])
116 {
117     trace::DumpFlags dumpFlags = 0;
118     bool dumpThreadIds = false;
119     
120     int opt;
121     while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
122         switch (opt) {
123         case 'h':
124             usage();
125             return 0;
126         case 'v':
127             verbose = true;
128             break;
129         case CALLS_OPT:
130             calls = trace::CallSet(optarg);
131             break;
132         case COLOR_OPT:
133             if (!optarg ||
134                 !strcmp(optarg, "always")) {
135                 color = COLOR_OPTION_ALWAYS;
136             } else if (!strcmp(optarg, "auto")) {
137                 color = COLOR_OPTION_AUTO;
138             } else if (!strcmp(optarg, "never")) {
139                 color = COLOR_OPTION_NEVER;
140             } else {
141                 std::cerr << "error: unknown color argument " << optarg << "\n";
142                 return 1;
143             }
144             break;
145         case ARG_NAMES_OPT:
146             if (boolOption(optarg)) {
147                 dumpFlags &= ~trace::DUMP_FLAG_NO_ARG_NAMES;
148             } else {
149                 dumpFlags |= trace::DUMP_FLAG_NO_ARG_NAMES;
150             }
151             break;
152         case THREAD_IDS_OPT:
153             dumpThreadIds = boolOption(optarg);
154             break;
155         default:
156             std::cerr << "error: unexpected option `" << opt << "`\n";
157             usage();
158             return 1;
159         }
160     }
161
162     if (color == COLOR_OPTION_AUTO) {
163 #ifdef _WIN32
164         color = COLOR_OPTION_ALWAYS;
165 #else
166         color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER;
167         pipepager();
168 #endif
169     }
170
171     if (color == COLOR_OPTION_NEVER) {
172         dumpFlags |= trace::DUMP_FLAG_NO_COLOR;
173     }
174
175     for (int i = optind; i < argc; ++i) {
176         trace::Parser p;
177
178         if (!p.open(argv[i])) {
179             std::cerr << "error: failed to open " << argv[i] << "\n";
180             return 1;
181         }
182
183         trace::Call *call;
184         while ((call = p.parse_call())) {
185             if (calls.contains(*call)) {
186                 if (verbose ||
187                     !(call->flags & trace::CALL_FLAG_VERBOSE)) {
188                     if (dumpThreadIds) {
189                         std::cout << std::hex << call->thread_id << std::dec << " ";
190                     }
191                     trace::dump(*call, std::cout, dumpFlags);
192                 }
193             }
194             delete call;
195         }
196     }
197
198     return 0;
199 }
200
201 const Command dump_command = {
202     "dump",
203     synopsis,
204     usage,
205     command
206 };