blob: fcc08f74bc9bdc430661fe7b3b25d73d7dfb1b2f [file] [log] [blame]
José Fonseca7e329022010-11-19 17:05:18 +00001/**************************************************************************
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
José Fonseca71913ee2011-10-30 13:35:33 +000026#include <string.h>
27
José Fonseca5cc28b02011-10-30 13:38:25 +000028#include "cli.hpp"
José Fonseca822d20a2011-08-20 13:49:40 +010029
José Fonseca7e329022010-11-19 17:05:18 +000030#include "trace_parser.hpp"
31
Carl Worthe525e6f2011-10-20 15:22:09 -070032enum ColorOption {
33 COLOR_OPTION_NEVER = 0,
34 COLOR_OPTION_ALWAYS = 1,
35 COLOR_OPTION_AUTO = -1
36};
37
38static ColorOption color = COLOR_OPTION_AUTO;
José Fonseca822d20a2011-08-20 13:49:40 +010039
Carl Worthbd5e1642011-10-21 20:40:56 -070040void
41apitrace_dump_usage(const char *argv0)
42{
43 std::cout << argv0 << " [OPTIONS] <trace-file>..."
44 "\n\n\t"
45 APITRACE_DUMP_SYNOPSIS
46 "\n\n\t"
47 "Supports the following options:\n\t"
48 "\t--color=<WHEN>\n\t"
49 "\t--colour=<WHEN> Colored syntax highlighting\n\t"
50 "\t WHEN is 'auto', 'always', or 'never'\n";
José Fonseca822d20a2011-08-20 13:49:40 +010051}
52
Carl Worthbd5e1642011-10-21 20:40:56 -070053int
54apitrace_dump_command(int argc, char *argv[], int first_arg_command)
José Fonseca7e329022010-11-19 17:05:18 +000055{
José Fonseca822d20a2011-08-20 13:49:40 +010056 int i;
57
Carl Worthbd5e1642011-10-21 20:40:56 -070058 for (i = first_arg_command; i < argc; ++i) {
José Fonseca822d20a2011-08-20 13:49:40 +010059 const char *arg = argv[i];
60
61 if (arg[0] != '-') {
62 break;
63 }
64
65 if (!strcmp(arg, "--")) {
66 break;
Carl Worthe525e6f2011-10-20 15:22:09 -070067 } else if (!strcmp(arg, "--color=auto") ||
68 !strcmp(arg, "--colour=auto")) {
69 color = COLOR_OPTION_AUTO;
70 } else if (!strcmp(arg, "--color") ||
71 !strcmp(arg, "--colour") ||
72 !strcmp(arg, "--color=always") ||
73 !strcmp(arg, "--colour=always")) {
74 color = COLOR_OPTION_ALWAYS;
75 } else if (!strcmp(arg, "--color=never") ||
76 !strcmp(arg, "--colour=never") ||
77 !strcmp(arg, "--no-color") ||
José Fonseca822d20a2011-08-20 13:49:40 +010078 !strcmp(arg, "--no-colour")) {
Carl Worthe525e6f2011-10-20 15:22:09 -070079 color = COLOR_OPTION_NEVER;
José Fonseca822d20a2011-08-20 13:49:40 +010080 } else {
81 std::cerr << "error: unknown option " << arg << "\n";
82 usage();
83 return 1;
84 }
85 }
86
Carl Worthe525e6f2011-10-20 15:22:09 -070087 if (color == COLOR_OPTION_AUTO) {
88#ifdef _WIN32
89 color = COLOR_OPTION_ALWAYS;
90#else
91 color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER;
92#endif
93 }
94
José Fonseca822d20a2011-08-20 13:49:40 +010095 for (; i < argc; ++i) {
José Fonsecab4a3d142011-10-27 07:43:19 +010096 trace::Parser p;
José Fonseca610ed332011-06-04 22:55:42 +010097
98 if (!p.open(argv[i])) {
99 std::cerr << "error: failed to open " << argv[i] << "\n";
100 return 1;
101 }
102
José Fonsecab4a3d142011-10-27 07:43:19 +0100103 trace::Call *call;
José Fonseca610ed332011-06-04 22:55:42 +0100104 while ((call = p.parse_call())) {
José Fonseca822d20a2011-08-20 13:49:40 +0100105 call->dump(std::cout, color);
José Fonseca610ed332011-06-04 22:55:42 +0100106 delete call;
José Fonseca19828972010-11-29 20:34:32 +0000107 }
108 }
José Fonseca822d20a2011-08-20 13:49:40 +0100109
José Fonseca19828972010-11-29 20:34:32 +0000110 return 0;
José Fonseca7e329022010-11-19 17:05:18 +0000111}