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 | |
José Fonseca | 71913ee | 2011-10-30 13:35:33 +0000 | [diff] [blame] | 26 | #include <string.h> |
| 27 | |
José Fonseca | 5cc28b0 | 2011-10-30 13:38:25 +0000 | [diff] [blame] | 28 | #include "cli.hpp" |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 29 | |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 30 | #include "trace_parser.hpp" |
| 31 | |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 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; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 39 | |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 40 | static const char *synopsis = "Dump given trace(s) to standard output."; |
| 41 | |
| 42 | static void |
| 43 | usage(void) |
Carl Worth | bd5e164 | 2011-10-21 20:40:56 -0700 | [diff] [blame] | 44 | { |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 45 | std::cout |
| 46 | << "usage: apitrace dump [OPTIONS] <trace-file>...\n" |
| 47 | << synopsis << "\n" |
José Fonseca | 646a00d | 2011-10-30 14:07:20 +0000 | [diff] [blame] | 48 | "\n" |
| 49 | " --color=<WHEN>\n" |
| 50 | " --colour=<WHEN> Colored syntax highlighting\n" |
| 51 | " WHEN is 'auto', 'always', or 'never'\n"; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 52 | } |
| 53 | |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 54 | static int |
José Fonseca | ffba597 | 2011-10-30 14:29:28 +0000 | [diff] [blame] | 55 | command(int argc, char *argv[]) |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 56 | { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 57 | int i; |
| 58 | |
José Fonseca | ffba597 | 2011-10-30 14:29:28 +0000 | [diff] [blame] | 59 | for (i = 0; i < argc; ++i) { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 60 | const char *arg = argv[i]; |
| 61 | |
| 62 | if (arg[0] != '-') { |
| 63 | break; |
| 64 | } |
| 65 | |
| 66 | if (!strcmp(arg, "--")) { |
| 67 | break; |
José Fonseca | 646a00d | 2011-10-30 14:07:20 +0000 | [diff] [blame] | 68 | } else if (!strcmp(arg, "--help")) { |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 69 | usage(); |
José Fonseca | 646a00d | 2011-10-30 14:07:20 +0000 | [diff] [blame] | 70 | return 0; |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 71 | } else if (!strcmp(arg, "--color=auto") || |
| 72 | !strcmp(arg, "--colour=auto")) { |
| 73 | color = COLOR_OPTION_AUTO; |
| 74 | } else if (!strcmp(arg, "--color") || |
| 75 | !strcmp(arg, "--colour") || |
| 76 | !strcmp(arg, "--color=always") || |
| 77 | !strcmp(arg, "--colour=always")) { |
| 78 | color = COLOR_OPTION_ALWAYS; |
| 79 | } else if (!strcmp(arg, "--color=never") || |
| 80 | !strcmp(arg, "--colour=never") || |
| 81 | !strcmp(arg, "--no-color") || |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 82 | !strcmp(arg, "--no-colour")) { |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 83 | color = COLOR_OPTION_NEVER; |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 84 | } else { |
| 85 | std::cerr << "error: unknown option " << arg << "\n"; |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 86 | usage(); |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 87 | return 1; |
| 88 | } |
| 89 | } |
| 90 | |
Carl Worth | e525e6f | 2011-10-20 15:22:09 -0700 | [diff] [blame] | 91 | if (color == COLOR_OPTION_AUTO) { |
| 92 | #ifdef _WIN32 |
| 93 | color = COLOR_OPTION_ALWAYS; |
| 94 | #else |
| 95 | color = isatty(1) ? COLOR_OPTION_ALWAYS : COLOR_OPTION_NEVER; |
| 96 | #endif |
| 97 | } |
| 98 | |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 99 | for (; i < argc; ++i) { |
José Fonseca | b4a3d14 | 2011-10-27 07:43:19 +0100 | [diff] [blame] | 100 | trace::Parser p; |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 101 | |
| 102 | if (!p.open(argv[i])) { |
| 103 | std::cerr << "error: failed to open " << argv[i] << "\n"; |
| 104 | return 1; |
| 105 | } |
| 106 | |
José Fonseca | b4a3d14 | 2011-10-27 07:43:19 +0100 | [diff] [blame] | 107 | trace::Call *call; |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 108 | while ((call = p.parse_call())) { |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 109 | call->dump(std::cout, color); |
José Fonseca | 610ed33 | 2011-06-04 22:55:42 +0100 | [diff] [blame] | 110 | delete call; |
José Fonseca | 1982897 | 2010-11-29 20:34:32 +0000 | [diff] [blame] | 111 | } |
| 112 | } |
José Fonseca | 822d20a | 2011-08-20 13:49:40 +0100 | [diff] [blame] | 113 | |
José Fonseca | 1982897 | 2010-11-29 20:34:32 +0000 | [diff] [blame] | 114 | return 0; |
José Fonseca | 7e32902 | 2010-11-19 17:05:18 +0000 | [diff] [blame] | 115 | } |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 116 | |
Carl Worth | 68f7c98 | 2011-11-01 13:47:26 -0700 | [diff] [blame^] | 117 | const Command dump_command = { |
José Fonseca | 3c167fe | 2011-10-30 14:21:03 +0000 | [diff] [blame] | 118 | "dump", |
| 119 | synopsis, |
| 120 | usage, |
| 121 | command |
| 122 | }; |