José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 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 | |
Carl Worth | bd5e164 | 2011-10-21 20:40:56 -0700 | [diff] [blame^] | 26 | #include "apitrace_cli.hpp" |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 27 | |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 28 | #include "trace_parser.hpp" |
| 29 | |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 30 | enum ColorOption { |
| 31 | COLOR_OPTION_NEVER = 0, |
| 32 | COLOR_OPTION_ALWAYS = 1, |
| 33 | COLOR_OPTION_AUTO = -1 |
| 34 | }; |
| 35 | |
| 36 | static ColorOption color = COLOR_OPTION_AUTO; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 37 | |
Carl Worth | bd5e164 | 2011-10-21 20:40:56 -0700 | [diff] [blame^] | 38 | void |
| 39 | apitrace_dump_usage(const char *argv0) |
| 40 | { |
| 41 | std::cout << argv0 << " [OPTIONS] <trace-file>..." |
| 42 | "\n\n\t" |
| 43 | APITRACE_DUMP_SYNOPSIS |
| 44 | "\n\n\t" |
| 45 | "Supports the following options:\n\t" |
| 46 | "\t--color=<WHEN>\n\t" |
| 47 | "\t--colour=<WHEN> Colored syntax highlighting\n\t" |
| 48 | "\t WHEN is 'auto', 'always', or 'never'\n"; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 49 | } |
| 50 | |
Carl Worth | bd5e164 | 2011-10-21 20:40:56 -0700 | [diff] [blame^] | 51 | int |
| 52 | apitrace_dump_command(int argc, char *argv[], int first_arg_command) |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 53 | { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 54 | int i; |
| 55 | |
Carl Worth | bd5e164 | 2011-10-21 20:40:56 -0700 | [diff] [blame^] | 56 | for (i = first_arg_command; i < argc; ++i) { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 57 | const char *arg = argv[i]; |
| 58 | |
| 59 | if (arg[0] != '-') { |
| 60 | break; |
| 61 | } |
| 62 | |
| 63 | if (!strcmp(arg, "--")) { |
| 64 | break; |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 65 | } else if (!strcmp(arg, "--color=auto") || |
| 66 | !strcmp(arg, "--colour=auto")) { |
| 67 | color = COLOR_OPTION_AUTO; |
| 68 | } else if (!strcmp(arg, "--color") || |
| 69 | !strcmp(arg, "--colour") || |
| 70 | !strcmp(arg, "--color=always") || |
| 71 | !strcmp(arg, "--colour=always")) { |
| 72 | color = COLOR_OPTION_ALWAYS; |
| 73 | } else if (!strcmp(arg, "--color=never") || |
| 74 | !strcmp(arg, "--colour=never") || |
| 75 | !strcmp(arg, "--no-color") || |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 76 | !strcmp(arg, "--no-colour")) { |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 77 | color = COLOR_OPTION_NEVER; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 78 | } else { |
| 79 | std::cerr << "error: unknown option " << arg << "\n"; |
| 80 | usage(); |
| 81 | return 1; |
| 82 | } |
| 83 | } |
| 84 | |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 85 | if (color == COLOR_OPTION_AUTO) { |
| 86 | #ifdef _WIN32 |
| 87 | color = COLOR_OPTION_ALWAYS; |
| 88 | #else |
| 89 | color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER; |
| 90 | #endif |
| 91 | } |
| 92 | |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 93 | for (; i < argc; ++i) { |
José Fonseca | b4a3d14 | 2011-10-27 07:43:19 +0100 | [diff] [blame] | 94 | trace::Parser p; |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 95 | |
| 96 | if (!p.open(argv[i])) { |
| 97 | std::cerr << "error: failed to open " << argv[i] << "\n"; |
| 98 | return 1; |
| 99 | } |
| 100 | |
José Fonseca | b4a3d14 | 2011-10-27 07:43:19 +0100 | [diff] [blame] | 101 | trace::Call *call; |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 102 | while ((call = p.parse_call())) { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 103 | call->dump(std::cout, color); |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 104 | delete call; |
José Fonseca | 1982897 | 2010-11-29 20:34:32 +0000 | [diff] [blame] | 105 | } |
| 106 | } |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 107 | |
José Fonseca | 1982897 | 2010-11-29 20:34:32 +0000 | [diff] [blame] | 108 | return 0; |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 109 | } |