[email protected] | 72e2e242 | 2012-02-27 18:38:12 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 4 | |
[email protected] | f3adb5c | 2008-08-07 20:07:32 | [diff] [blame] | 5 | #include "base/command_line.h" |
| 6 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 7 | #include <algorithm> |
[email protected] | 2edc286 | 2011-04-04 18:04:37 | [diff] [blame] | 8 | #include <ostream> |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 9 | |
[email protected] | 5799981 | 2013-02-24 05:40:52 | [diff] [blame] | 10 | #include "base/files/file_path.h" |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 11 | #include "base/logging.h" |
avi | 9b6f4293 | 2015-12-26 22:15:14 | [diff] [blame] | 12 | #include "base/macros.h" |
[email protected] | 5ae0b763e | 2013-02-07 23:01:39 | [diff] [blame] | 13 | #include "base/strings/string_split.h" |
skyostil | d851aa1 | 2017-03-29 17:38:35 | [diff] [blame^] | 14 | #include "base/strings/string_tokenizer.h" |
[email protected] | 251cd6e5 | 2013-06-11 13:36:37 | [diff] [blame] | 15 | #include "base/strings/string_util.h" |
[email protected] | a4ea1f1 | 2013-06-07 18:37:07 | [diff] [blame] | 16 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 74e9fa2 | 2010-12-29 21:06:43 | [diff] [blame] | 17 | #include "build/build_config.h" |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 18 | |
[email protected] | 74e9fa2 | 2010-12-29 21:06:43 | [diff] [blame] | 19 | #if defined(OS_WIN) |
| 20 | #include <windows.h> |
| 21 | #include <shellapi.h> |
[email protected] | 7f113f3 | 2009-09-10 18:02:17 | [diff] [blame] | 22 | #endif |
| 23 | |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 24 | namespace base { |
[email protected] | 04af979a | 2013-02-16 04:12:26 | [diff] [blame] | 25 | |
[email protected] | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 26 | CommandLine* CommandLine::current_process_commandline_ = NULL; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 27 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 28 | namespace { |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 29 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 30 | const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--"); |
| 31 | const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("="); |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 32 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 33 | // Since we use a lazy match, make sure that longer versions (like "--") are |
| 34 | // listed before shorter versions (like "-") of similar prefixes. |
[email protected] | 5d42633 | 2008-08-08 20:46:21 | [diff] [blame] | 35 | #if defined(OS_WIN) |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 36 | // By putting slash last, we can control whether it is treaded as a switch |
| 37 | // value by changing the value of switch_prefix_count to be one less than |
| 38 | // the array size. |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 39 | const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"}; |
[email protected] | 5d42633 | 2008-08-08 20:46:21 | [diff] [blame] | 40 | #elif defined(OS_POSIX) |
[email protected] | 1a48f31 | 2008-08-12 01:14:37 | [diff] [blame] | 41 | // Unixes don't use slash as a switch. |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 42 | const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"}; |
[email protected] | 5d42633 | 2008-08-08 20:46:21 | [diff] [blame] | 43 | #endif |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 44 | size_t switch_prefix_count = arraysize(kSwitchPrefixes); |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 45 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 46 | size_t GetSwitchPrefixLength(const CommandLine::StringType& string) { |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 47 | for (size_t i = 0; i < switch_prefix_count; ++i) { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 48 | CommandLine::StringType prefix(kSwitchPrefixes[i]); |
[email protected] | 1fa39f0 | 2011-09-13 15:45:34 | [diff] [blame] | 49 | if (string.compare(0, prefix.length(), prefix) == 0) |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 50 | return prefix.length(); |
| 51 | } |
| 52 | return 0; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 53 | } |
[email protected] | 0fd23af | 2011-02-20 06:33:04 | [diff] [blame] | 54 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 55 | // Fills in |switch_string| and |switch_value| if |string| is a switch. |
| 56 | // This will preserve the input switch prefix in the output |switch_string|. |
| 57 | bool IsSwitch(const CommandLine::StringType& string, |
| 58 | CommandLine::StringType* switch_string, |
| 59 | CommandLine::StringType* switch_value) { |
| 60 | switch_string->clear(); |
| 61 | switch_value->clear(); |
[email protected] | 21e342f | 2012-10-19 06:19:59 | [diff] [blame] | 62 | size_t prefix_length = GetSwitchPrefixLength(string); |
| 63 | if (prefix_length == 0 || prefix_length == string.length()) |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 64 | return false; |
| 65 | |
| 66 | const size_t equals_position = string.find(kSwitchValueSeparator); |
| 67 | *switch_string = string.substr(0, equals_position); |
| 68 | if (equals_position != CommandLine::StringType::npos) |
| 69 | *switch_value = string.substr(equals_position + 1); |
| 70 | return true; |
| 71 | } |
| 72 | |
| 73 | // Append switches and arguments, keeping switches before arguments. |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 74 | void AppendSwitchesAndArguments(CommandLine* command_line, |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 75 | const CommandLine::StringVector& argv) { |
| 76 | bool parse_switches = true; |
| 77 | for (size_t i = 1; i < argv.size(); ++i) { |
| 78 | CommandLine::StringType arg = argv[i]; |
tfarina | 023b1dcc | 2015-12-06 13:25:41 | [diff] [blame] | 79 | #if defined(OS_WIN) |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 80 | TrimWhitespace(arg, TRIM_ALL, &arg); |
tfarina | 023b1dcc | 2015-12-06 13:25:41 | [diff] [blame] | 81 | #else |
| 82 | TrimWhitespaceASCII(arg, TRIM_ALL, &arg); |
| 83 | #endif |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 84 | |
| 85 | CommandLine::StringType switch_string; |
| 86 | CommandLine::StringType switch_value; |
| 87 | parse_switches &= (arg != kSwitchTerminator); |
| 88 | if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) { |
| 89 | #if defined(OS_WIN) |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 90 | command_line->AppendSwitchNative(UTF16ToASCII(switch_string), |
| 91 | switch_value); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 92 | #elif defined(OS_POSIX) |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 93 | command_line->AppendSwitchNative(switch_string, switch_value); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 94 | #endif |
| 95 | } else { |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 96 | command_line->AppendArgNative(arg); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | } |
| 100 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 101 | #if defined(OS_WIN) |
| 102 | // Quote a string as necessary for CommandLineToArgvW compatiblity *on Windows*. |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 103 | string16 QuoteForCommandLineToArgvW(const string16& arg, |
| 104 | bool quote_placeholders) { |
[email protected] | 0fd23af | 2011-02-20 06:33:04 | [diff] [blame] | 105 | // We follow the quoting rules of CommandLineToArgvW. |
| 106 | // http://msdn.microsoft.com/en-us/library/17w5ykft.aspx |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 107 | string16 quotable_chars(L" \\\""); |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 108 | // We may also be required to quote '%', which is commonly used in a command |
| 109 | // line as a placeholder. (It may be substituted for a string with spaces.) |
| 110 | if (quote_placeholders) |
| 111 | quotable_chars.push_back(L'%'); |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 112 | if (arg.find_first_of(quotable_chars) == string16::npos) { |
[email protected] | 0fd23af | 2011-02-20 06:33:04 | [diff] [blame] | 113 | // No quoting necessary. |
| 114 | return arg; |
| 115 | } |
| 116 | |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 117 | string16 out; |
[email protected] | 0fd23af | 2011-02-20 06:33:04 | [diff] [blame] | 118 | out.push_back(L'"'); |
| 119 | for (size_t i = 0; i < arg.size(); ++i) { |
| 120 | if (arg[i] == '\\') { |
| 121 | // Find the extent of this run of backslashes. |
| 122 | size_t start = i, end = start + 1; |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 123 | for (; end < arg.size() && arg[end] == '\\'; ++end) {} |
[email protected] | 0fd23af | 2011-02-20 06:33:04 | [diff] [blame] | 124 | size_t backslash_count = end - start; |
| 125 | |
| 126 | // Backslashes are escapes only if the run is followed by a double quote. |
| 127 | // Since we also will end the string with a double quote, we escape for |
| 128 | // either a double quote or the end of the string. |
| 129 | if (end == arg.size() || arg[end] == '"') { |
| 130 | // To quote, we need to output 2x as many backslashes. |
| 131 | backslash_count *= 2; |
| 132 | } |
| 133 | for (size_t j = 0; j < backslash_count; ++j) |
| 134 | out.push_back('\\'); |
| 135 | |
| 136 | // Advance i to one before the end to balance i++ in loop. |
| 137 | i = end - 1; |
| 138 | } else if (arg[i] == '"') { |
| 139 | out.push_back('\\'); |
| 140 | out.push_back('"'); |
| 141 | } else { |
| 142 | out.push_back(arg[i]); |
| 143 | } |
| 144 | } |
| 145 | out.push_back('"'); |
| 146 | |
| 147 | return out; |
| 148 | } |
[email protected] | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 149 | #endif |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 150 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 151 | } // namespace |
| 152 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 153 | CommandLine::CommandLine(NoProgram no_program) |
| 154 | : argv_(1), |
| 155 | begin_args_(1) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 156 | } |
| 157 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 158 | CommandLine::CommandLine(const FilePath& program) |
| 159 | : argv_(1), |
| 160 | begin_args_(1) { |
| 161 | SetProgram(program); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 162 | } |
| 163 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 164 | CommandLine::CommandLine(int argc, const CommandLine::CharType* const* argv) |
| 165 | : argv_(1), |
| 166 | begin_args_(1) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 167 | InitFromArgv(argc, argv); |
| 168 | } |
| 169 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 170 | CommandLine::CommandLine(const StringVector& argv) |
| 171 | : argv_(1), |
| 172 | begin_args_(1) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 173 | InitFromArgv(argv); |
| 174 | } |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 175 | |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 176 | CommandLine::CommandLine(const CommandLine& other) |
| 177 | : argv_(other.argv_), |
| 178 | switches_(other.switches_), |
| 179 | begin_args_(other.begin_args_) { |
| 180 | ResetStringPieces(); |
| 181 | } |
| 182 | |
| 183 | CommandLine& CommandLine::operator=(const CommandLine& other) { |
| 184 | argv_ = other.argv_; |
| 185 | switches_ = other.switches_; |
| 186 | begin_args_ = other.begin_args_; |
| 187 | ResetStringPieces(); |
| 188 | return *this; |
| 189 | } |
| 190 | |
[email protected] | acbeb3d | 2011-03-01 20:47:58 | [diff] [blame] | 191 | CommandLine::~CommandLine() { |
| 192 | } |
| 193 | |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 194 | #if defined(OS_WIN) |
| 195 | // static |
| 196 | void CommandLine::set_slash_is_not_a_switch() { |
| 197 | // The last switch prefix should be slash, so adjust the size to skip it. |
danakj | 94219a21 | 2015-03-09 22:27:25 | [diff] [blame] | 198 | DCHECK_EQ(wcscmp(kSwitchPrefixes[arraysize(kSwitchPrefixes) - 1], L"/"), 0); |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 199 | switch_prefix_count = arraysize(kSwitchPrefixes) - 1; |
| 200 | } |
ananta | d936bc1 | 2016-06-22 21:40:31 | [diff] [blame] | 201 | |
| 202 | // static |
| 203 | void CommandLine::InitUsingArgvForTesting(int argc, const char* const* argv) { |
| 204 | DCHECK(!current_process_commandline_); |
| 205 | current_process_commandline_ = new CommandLine(NO_PROGRAM); |
| 206 | // On Windows we need to convert the command line arguments to string16. |
| 207 | base::CommandLine::StringVector argv_vector; |
| 208 | for (int i = 0; i < argc; ++i) |
| 209 | argv_vector.push_back(UTF8ToUTF16(argv[i])); |
| 210 | current_process_commandline_->InitFromArgv(argv_vector); |
| 211 | } |
[email protected] | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 212 | #endif |
| 213 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 214 | // static |
[email protected] | 72e2e242 | 2012-02-27 18:38:12 | [diff] [blame] | 215 | bool CommandLine::Init(int argc, const char* const* argv) { |
[email protected] | f96fe2c4 | 2011-07-13 18:03:34 | [diff] [blame] | 216 | if (current_process_commandline_) { |
| 217 | // If this is intentional, Reset() must be called first. If we are using |
| 218 | // the shared build mode, we have to share a single object across multiple |
| 219 | // shared libraries. |
[email protected] | 72e2e242 | 2012-02-27 18:38:12 | [diff] [blame] | 220 | return false; |
[email protected] | f96fe2c4 | 2011-07-13 18:03:34 | [diff] [blame] | 221 | } |
| 222 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 223 | current_process_commandline_ = new CommandLine(NO_PROGRAM); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 224 | #if defined(OS_WIN) |
| 225 | current_process_commandline_->ParseFromString(::GetCommandLineW()); |
| 226 | #elif defined(OS_POSIX) |
| 227 | current_process_commandline_->InitFromArgv(argc, argv); |
| 228 | #endif |
[email protected] | 72e2e242 | 2012-02-27 18:38:12 | [diff] [blame] | 229 | |
| 230 | return true; |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | // static |
| 234 | void CommandLine::Reset() { |
| 235 | DCHECK(current_process_commandline_); |
| 236 | delete current_process_commandline_; |
| 237 | current_process_commandline_ = NULL; |
| 238 | } |
| 239 | |
| 240 | // static |
| 241 | CommandLine* CommandLine::ForCurrentProcess() { |
| 242 | DCHECK(current_process_commandline_); |
| 243 | return current_process_commandline_; |
[email protected] | 3a3d4747 | 2010-07-15 21:03:54 | [diff] [blame] | 244 | } |
| 245 | |
[email protected] | 2bf64a9 | 2013-07-11 23:10:40 | [diff] [blame] | 246 | // static |
| 247 | bool CommandLine::InitializedForCurrentProcess() { |
| 248 | return !!current_process_commandline_; |
| 249 | } |
| 250 | |
[email protected] | f3adb5c | 2008-08-07 20:07:32 | [diff] [blame] | 251 | #if defined(OS_WIN) |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 252 | // static |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 253 | CommandLine CommandLine::FromString(const string16& command_line) { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 254 | CommandLine cmd(NO_PROGRAM); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 255 | cmd.ParseFromString(command_line); |
| 256 | return cmd; |
| 257 | } |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 258 | #endif |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 259 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 260 | void CommandLine::InitFromArgv(int argc, |
| 261 | const CommandLine::CharType* const* argv) { |
| 262 | StringVector new_argv; |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 263 | for (int i = 0; i < argc; ++i) |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 264 | new_argv.push_back(argv[i]); |
| 265 | InitFromArgv(new_argv); |
[email protected] | 51343d5a | 2009-10-26 22:39:33 | [diff] [blame] | 266 | } |
| 267 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 268 | void CommandLine::InitFromArgv(const StringVector& argv) { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 269 | argv_ = StringVector(1); |
[email protected] | 93660ab3 | 2013-06-18 08:19:18 | [diff] [blame] | 270 | switches_.clear(); |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 271 | switches_by_stringpiece_.clear(); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 272 | begin_args_ = 1; |
| 273 | SetProgram(argv.empty() ? FilePath() : FilePath(argv[0])); |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 274 | AppendSwitchesAndArguments(this, argv); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 275 | } |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 276 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 277 | FilePath CommandLine::GetProgram() const { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 278 | return FilePath(argv_[0]); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | void CommandLine::SetProgram(const FilePath& program) { |
tfarina | 023b1dcc | 2015-12-06 13:25:41 | [diff] [blame] | 282 | #if defined(OS_WIN) |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 283 | TrimWhitespace(program.value(), TRIM_ALL, &argv_[0]); |
tfarina | 023b1dcc | 2015-12-06 13:25:41 | [diff] [blame] | 284 | #else |
| 285 | TrimWhitespaceASCII(program.value(), TRIM_ALL, &argv_[0]); |
| 286 | #endif |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 287 | } |
| 288 | |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 289 | bool CommandLine::HasSwitch(const base::StringPiece& switch_string) const { |
brettw | fce8d19 | 2015-08-10 19:07:51 | [diff] [blame] | 290 | DCHECK_EQ(ToLowerASCII(switch_string), switch_string); |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 291 | return switches_by_stringpiece_.find(switch_string) != |
| 292 | switches_by_stringpiece_.end(); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 293 | } |
| 294 | |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 295 | bool CommandLine::HasSwitch(const char switch_constant[]) const { |
| 296 | return HasSwitch(base::StringPiece(switch_constant)); |
tapted | 009a1dc8 | 2015-03-30 03:57:10 | [diff] [blame] | 297 | } |
| 298 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 299 | std::string CommandLine::GetSwitchValueASCII( |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 300 | const base::StringPiece& switch_string) const { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 301 | StringType value = GetSwitchValueNative(switch_string); |
[email protected] | bd6fc2f | 2014-03-17 23:55:43 | [diff] [blame] | 302 | if (!IsStringASCII(value)) { |
[email protected] | a42d463 | 2011-10-26 21:48:00 | [diff] [blame] | 303 | DLOG(WARNING) << "Value of switch (" << switch_string << ") must be ASCII."; |
| 304 | return std::string(); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 305 | } |
| 306 | #if defined(OS_WIN) |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 307 | return UTF16ToASCII(value); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 308 | #else |
| 309 | return value; |
| 310 | #endif |
| 311 | } |
| 312 | |
| 313 | FilePath CommandLine::GetSwitchValuePath( |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 314 | const base::StringPiece& switch_string) const { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 315 | return FilePath(GetSwitchValueNative(switch_string)); |
| 316 | } |
| 317 | |
| 318 | CommandLine::StringType CommandLine::GetSwitchValueNative( |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 319 | const base::StringPiece& switch_string) const { |
brettw | fce8d19 | 2015-08-10 19:07:51 | [diff] [blame] | 320 | DCHECK_EQ(ToLowerASCII(switch_string), switch_string); |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 321 | auto result = switches_by_stringpiece_.find(switch_string); |
| 322 | return result == switches_by_stringpiece_.end() ? StringType() |
| 323 | : *(result->second); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 324 | } |
| 325 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 326 | void CommandLine::AppendSwitch(const std::string& switch_string) { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 327 | AppendSwitchNative(switch_string, StringType()); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | void CommandLine::AppendSwitchPath(const std::string& switch_string, |
| 331 | const FilePath& path) { |
| 332 | AppendSwitchNative(switch_string, path.value()); |
| 333 | } |
| 334 | |
| 335 | void CommandLine::AppendSwitchNative(const std::string& switch_string, |
| 336 | const CommandLine::StringType& value) { |
| 337 | #if defined(OS_WIN) |
brettw | fce8d19 | 2015-08-10 19:07:51 | [diff] [blame] | 338 | const std::string switch_key = ToLowerASCII(switch_string); |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 339 | StringType combined_switch_string(ASCIIToUTF16(switch_key)); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 340 | #elif defined(OS_POSIX) |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 341 | const std::string& switch_key = switch_string; |
| 342 | StringType combined_switch_string(switch_key); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 343 | #endif |
| 344 | size_t prefix_length = GetSwitchPrefixLength(combined_switch_string); |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 345 | auto insertion = |
| 346 | switches_.insert(make_pair(switch_key.substr(prefix_length), value)); |
| 347 | if (!insertion.second) |
| 348 | insertion.first->second = value; |
| 349 | switches_by_stringpiece_[insertion.first->first] = &(insertion.first->second); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 350 | // Preserve existing switch prefixes in |argv_|; only append one if necessary. |
| 351 | if (prefix_length == 0) |
| 352 | combined_switch_string = kSwitchPrefixes[0] + combined_switch_string; |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 353 | if (!value.empty()) |
| 354 | combined_switch_string += kSwitchValueSeparator + value; |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 355 | // Append the switch and update the switches/arguments divider |begin_args_|. |
| 356 | argv_.insert(argv_.begin() + begin_args_++, combined_switch_string); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | void CommandLine::AppendSwitchASCII(const std::string& switch_string, |
| 360 | const std::string& value_string) { |
| 361 | #if defined(OS_WIN) |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 362 | AppendSwitchNative(switch_string, ASCIIToUTF16(value_string)); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 363 | #elif defined(OS_POSIX) |
| 364 | AppendSwitchNative(switch_string, value_string); |
| 365 | #endif |
| 366 | } |
| 367 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 368 | void CommandLine::CopySwitchesFrom(const CommandLine& source, |
| 369 | const char* const switches[], |
| 370 | size_t count) { |
| 371 | for (size_t i = 0; i < count; ++i) { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 372 | if (source.HasSwitch(switches[i])) |
| 373 | AppendSwitchNative(switches[i], source.GetSwitchValueNative(switches[i])); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | |
[email protected] | 75f1c78 | 2011-07-13 23:41:22 | [diff] [blame] | 377 | CommandLine::StringVector CommandLine::GetArgs() const { |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 378 | // Gather all arguments after the last switch (may include kSwitchTerminator). |
| 379 | StringVector args(argv_.begin() + begin_args_, argv_.end()); |
| 380 | // Erase only the first kSwitchTerminator (maybe "--" is a legitimate page?) |
| 381 | StringVector::iterator switch_terminator = |
| 382 | std::find(args.begin(), args.end(), kSwitchTerminator); |
| 383 | if (switch_terminator != args.end()) |
| 384 | args.erase(switch_terminator); |
| 385 | return args; |
| 386 | } |
| 387 | |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 388 | void CommandLine::AppendArg(const std::string& value) { |
| 389 | #if defined(OS_WIN) |
[email protected] | bd6fc2f | 2014-03-17 23:55:43 | [diff] [blame] | 390 | DCHECK(IsStringUTF8(value)); |
| 391 | AppendArgNative(UTF8ToWide(value)); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 392 | #elif defined(OS_POSIX) |
| 393 | AppendArgNative(value); |
| 394 | #endif |
| 395 | } |
| 396 | |
| 397 | void CommandLine::AppendArgPath(const FilePath& path) { |
| 398 | AppendArgNative(path.value()); |
| 399 | } |
| 400 | |
| 401 | void CommandLine::AppendArgNative(const CommandLine::StringType& value) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 402 | argv_.push_back(value); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | void CommandLine::AppendArguments(const CommandLine& other, |
| 406 | bool include_program) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 407 | if (include_program) |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 408 | SetProgram(other.GetProgram()); |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 409 | AppendSwitchesAndArguments(this, other.argv()); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | void CommandLine::PrependWrapper(const CommandLine::StringType& wrapper) { |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 413 | if (wrapper.empty()) |
| 414 | return; |
skyostil | d851aa1 | 2017-03-29 17:38:35 | [diff] [blame^] | 415 | // Split the wrapper command based on whitespace (with quoting). |
| 416 | using CommandLineTokenizer = |
| 417 | StringTokenizerT<StringType, StringType::const_iterator>; |
| 418 | CommandLineTokenizer tokenizer(wrapper, FILE_PATH_LITERAL(" ")); |
| 419 | tokenizer.set_quote_chars(FILE_PATH_LITERAL("'\"")); |
| 420 | std::vector<StringType> wrapper_argv; |
| 421 | while (tokenizer.GetNext()) |
| 422 | wrapper_argv.emplace_back(tokenizer.token()); |
| 423 | |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 424 | // Prepend the wrapper and update the switches/arguments |begin_args_|. |
| 425 | argv_.insert(argv_.begin(), wrapper_argv.begin(), wrapper_argv.end()); |
| 426 | begin_args_ += wrapper_argv.size(); |
[email protected] | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | #if defined(OS_WIN) |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 430 | void CommandLine::ParseFromString(const string16& command_line) { |
| 431 | string16 command_line_string; |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 432 | TrimWhitespace(command_line, TRIM_ALL, &command_line_string); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 433 | if (command_line_string.empty()) |
[email protected] | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 434 | return; |
| 435 | |
| 436 | int num_args = 0; |
| 437 | wchar_t** args = NULL; |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 438 | args = ::CommandLineToArgvW(command_line_string.c_str(), &num_args); |
[email protected] | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 439 | |
[email protected] | a42d463 | 2011-10-26 21:48:00 | [diff] [blame] | 440 | DPLOG_IF(FATAL, !args) << "CommandLineToArgvW failed on command line: " |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 441 | << UTF16ToUTF8(command_line); |
[email protected] | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 442 | InitFromArgv(num_args, args); |
| 443 | LocalFree(args); |
[email protected] | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 444 | } |
[email protected] | f3adb5c | 2008-08-07 20:07:32 | [diff] [blame] | 445 | #endif |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 446 | |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 447 | CommandLine::StringType CommandLine::GetCommandLineStringInternal( |
| 448 | bool quote_placeholders) const { |
| 449 | StringType string(argv_[0]); |
| 450 | #if defined(OS_WIN) |
| 451 | string = QuoteForCommandLineToArgvW(string, quote_placeholders); |
| 452 | #endif |
| 453 | StringType params(GetArgumentsStringInternal(quote_placeholders)); |
| 454 | if (!params.empty()) { |
| 455 | string.append(StringType(FILE_PATH_LITERAL(" "))); |
| 456 | string.append(params); |
| 457 | } |
| 458 | return string; |
| 459 | } |
| 460 | |
| 461 | CommandLine::StringType CommandLine::GetArgumentsStringInternal( |
| 462 | bool quote_placeholders) const { |
| 463 | StringType params; |
| 464 | // Append switches and arguments. |
| 465 | bool parse_switches = true; |
| 466 | for (size_t i = 1; i < argv_.size(); ++i) { |
| 467 | StringType arg = argv_[i]; |
| 468 | StringType switch_string; |
| 469 | StringType switch_value; |
| 470 | parse_switches &= arg != kSwitchTerminator; |
| 471 | if (i > 1) |
| 472 | params.append(StringType(FILE_PATH_LITERAL(" "))); |
| 473 | if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) { |
| 474 | params.append(switch_string); |
| 475 | if (!switch_value.empty()) { |
| 476 | #if defined(OS_WIN) |
| 477 | switch_value = |
| 478 | QuoteForCommandLineToArgvW(switch_value, quote_placeholders); |
| 479 | #endif |
| 480 | params.append(kSwitchValueSeparator + switch_value); |
| 481 | } |
thestig | 8badc79 | 2014-12-04 22:14:22 | [diff] [blame] | 482 | } else { |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 483 | #if defined(OS_WIN) |
| 484 | arg = QuoteForCommandLineToArgvW(arg, quote_placeholders); |
| 485 | #endif |
| 486 | params.append(arg); |
| 487 | } |
| 488 | } |
| 489 | return params; |
| 490 | } |
| 491 | |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 492 | void CommandLine::ResetStringPieces() { |
| 493 | switches_by_stringpiece_.clear(); |
| 494 | for (const auto& entry : switches_) |
| 495 | switches_by_stringpiece_[entry.first] = &(entry.second); |
| 496 | } |
| 497 | |
[email protected] | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 498 | } // namespace base |