blob: c991959d6911bf545f994b3e6d0833f793cc7cf0 [file] [log] [blame]
erikwright@chromium.org506c72b2012-02-28 03:38:12 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botf003cfe2008-08-24 09:55:55 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
evanm@google.com91cdff82008-08-08 05:07:32 +09005#include "base/command_line.h"
6
initial.commit3f4a7322008-07-27 06:49:38 +09007#include <algorithm>
jhawkins@chromium.org8e73d062011-04-05 03:04:37 +09008#include <ostream>
initial.commit3f4a7322008-07-27 06:49:38 +09009
brettw@chromium.org59eef1f2013-02-24 14:40:52 +090010#include "base/files/file_path.h"
initial.commit3f4a7322008-07-27 06:49:38 +090011#include "base/logging.h"
avia6a6a682015-12-27 07:15:14 +090012#include "base/macros.h"
tfarina@chromium.org63aaf3f2013-02-08 08:01:39 +090013#include "base/strings/string_split.h"
avi@chromium.org94bd5732013-06-11 22:36:37 +090014#include "base/strings/string_util.h"
avi@chromium.org17f60622013-06-08 03:37:07 +090015#include "base/strings/utf_string_conversions.h"
brettw@chromium.org6a3802c2010-12-30 06:06:43 +090016#include "build/build_config.h"
initial.commit3f4a7322008-07-27 06:49:38 +090017
brettw@chromium.org6a3802c2010-12-30 06:06:43 +090018#if defined(OS_WIN)
19#include <windows.h>
20#include <shellapi.h>
mdm@chromium.org18175a02009-09-11 03:02:17 +090021#endif
22
brettw@chromium.org37273892014-03-18 08:07:15 +090023namespace base {
brettw@chromium.orgc02b6032013-02-16 13:12:26 +090024
evan@chromium.org4bbc6132009-01-21 10:00:22 +090025CommandLine* CommandLine::current_process_commandline_ = NULL;
initial.commit3f4a7322008-07-27 06:49:38 +090026
msw@chromium.org7b2af612011-03-01 11:28:42 +090027namespace {
brettw@chromium.org37273892014-03-18 08:07:15 +090028
msw@chromium.org53fbac12011-05-14 10:10:24 +090029const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
30const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
brettw@chromium.org40b2d582013-09-26 08:36:00 +090031
msw@chromium.org7b2af612011-03-01 11:28:42 +090032// Since we use a lazy match, make sure that longer versions (like "--") are
33// listed before shorter versions (like "-") of similar prefixes.
pinkerton@google.com0c0e01c2008-08-09 05:46:21 +090034#if defined(OS_WIN)
brettw@chromium.org40b2d582013-09-26 08:36:00 +090035// By putting slash last, we can control whether it is treaded as a switch
36// value by changing the value of switch_prefix_count to be one less than
37// the array size.
msw@chromium.org53fbac12011-05-14 10:10:24 +090038const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
pinkerton@google.com0c0e01c2008-08-09 05:46:21 +090039#elif defined(OS_POSIX)
evanm@google.com638e9fb2008-08-12 10:14:37 +090040// Unixes don't use slash as a switch.
msw@chromium.org53fbac12011-05-14 10:10:24 +090041const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"};
pinkerton@google.com0c0e01c2008-08-09 05:46:21 +090042#endif
brettw@chromium.org40b2d582013-09-26 08:36:00 +090043size_t switch_prefix_count = arraysize(kSwitchPrefixes);
initial.commit3f4a7322008-07-27 06:49:38 +090044
msw@chromium.org53fbac12011-05-14 10:10:24 +090045size_t GetSwitchPrefixLength(const CommandLine::StringType& string) {
brettw@chromium.org40b2d582013-09-26 08:36:00 +090046 for (size_t i = 0; i < switch_prefix_count; ++i) {
msw@chromium.org53fbac12011-05-14 10:10:24 +090047 CommandLine::StringType prefix(kSwitchPrefixes[i]);
joth@chromium.orgb23d1842011-09-14 00:45:34 +090048 if (string.compare(0, prefix.length(), prefix) == 0)
msw@chromium.org53fbac12011-05-14 10:10:24 +090049 return prefix.length();
50 }
51 return 0;
initial.commit3f4a7322008-07-27 06:49:38 +090052}
msw@chromium.orgda7a5482011-02-20 15:33:04 +090053
msw@chromium.org53fbac12011-05-14 10:10:24 +090054// Fills in |switch_string| and |switch_value| if |string| is a switch.
55// This will preserve the input switch prefix in the output |switch_string|.
56bool IsSwitch(const CommandLine::StringType& string,
57 CommandLine::StringType* switch_string,
58 CommandLine::StringType* switch_value) {
59 switch_string->clear();
60 switch_value->clear();
jochen@chromium.org1e9efb12012-10-19 15:19:59 +090061 size_t prefix_length = GetSwitchPrefixLength(string);
62 if (prefix_length == 0 || prefix_length == string.length())
msw@chromium.org53fbac12011-05-14 10:10:24 +090063 return false;
64
65 const size_t equals_position = string.find(kSwitchValueSeparator);
66 *switch_string = string.substr(0, equals_position);
67 if (equals_position != CommandLine::StringType::npos)
68 *switch_value = string.substr(equals_position + 1);
69 return true;
70}
71
72// Append switches and arguments, keeping switches before arguments.
thestig2d5b2e32014-12-05 07:14:22 +090073void AppendSwitchesAndArguments(CommandLine* command_line,
msw@chromium.org53fbac12011-05-14 10:10:24 +090074 const CommandLine::StringVector& argv) {
75 bool parse_switches = true;
76 for (size_t i = 1; i < argv.size(); ++i) {
77 CommandLine::StringType arg = argv[i];
tfarinab6894c12015-12-06 22:25:41 +090078#if defined(OS_WIN)
brettw@chromium.org37273892014-03-18 08:07:15 +090079 TrimWhitespace(arg, TRIM_ALL, &arg);
tfarinab6894c12015-12-06 22:25:41 +090080#else
81 TrimWhitespaceASCII(arg, TRIM_ALL, &arg);
82#endif
msw@chromium.org53fbac12011-05-14 10:10:24 +090083
84 CommandLine::StringType switch_string;
85 CommandLine::StringType switch_value;
86 parse_switches &= (arg != kSwitchTerminator);
87 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
88#if defined(OS_WIN)
thestig2d5b2e32014-12-05 07:14:22 +090089 command_line->AppendSwitchNative(UTF16ToASCII(switch_string),
90 switch_value);
msw@chromium.org53fbac12011-05-14 10:10:24 +090091#elif defined(OS_POSIX)
thestig2d5b2e32014-12-05 07:14:22 +090092 command_line->AppendSwitchNative(switch_string, switch_value);
msw@chromium.org53fbac12011-05-14 10:10:24 +090093#endif
94 } else {
thestig2d5b2e32014-12-05 07:14:22 +090095 command_line->AppendArgNative(arg);
msw@chromium.org53fbac12011-05-14 10:10:24 +090096 }
97 }
98}
99
msw@chromium.org53fbac12011-05-14 10:10:24 +0900100#if defined(OS_WIN)
101// Quote a string as necessary for CommandLineToArgvW compatiblity *on Windows*.
thestig2d5b2e32014-12-05 07:14:22 +0900102string16 QuoteForCommandLineToArgvW(const string16& arg,
103 bool quote_placeholders) {
msw@chromium.orgda7a5482011-02-20 15:33:04 +0900104 // We follow the quoting rules of CommandLineToArgvW.
105 // http://msdn.microsoft.com/en-us/library/17w5ykft.aspx
thestig2d5b2e32014-12-05 07:14:22 +0900106 string16 quotable_chars(L" \\\"");
mgiuca90d74492014-10-01 18:24:51 +0900107 // We may also be required to quote '%', which is commonly used in a command
108 // line as a placeholder. (It may be substituted for a string with spaces.)
109 if (quote_placeholders)
110 quotable_chars.push_back(L'%');
thestig2d5b2e32014-12-05 07:14:22 +0900111 if (arg.find_first_of(quotable_chars) == string16::npos) {
msw@chromium.orgda7a5482011-02-20 15:33:04 +0900112 // No quoting necessary.
113 return arg;
114 }
115
thestig2d5b2e32014-12-05 07:14:22 +0900116 string16 out;
msw@chromium.orgda7a5482011-02-20 15:33:04 +0900117 out.push_back(L'"');
118 for (size_t i = 0; i < arg.size(); ++i) {
119 if (arg[i] == '\\') {
120 // Find the extent of this run of backslashes.
121 size_t start = i, end = start + 1;
thestig2d5b2e32014-12-05 07:14:22 +0900122 for (; end < arg.size() && arg[end] == '\\'; ++end) {}
msw@chromium.orgda7a5482011-02-20 15:33:04 +0900123 size_t backslash_count = end - start;
124
125 // Backslashes are escapes only if the run is followed by a double quote.
126 // Since we also will end the string with a double quote, we escape for
127 // either a double quote or the end of the string.
128 if (end == arg.size() || arg[end] == '"') {
129 // To quote, we need to output 2x as many backslashes.
130 backslash_count *= 2;
131 }
132 for (size_t j = 0; j < backslash_count; ++j)
133 out.push_back('\\');
134
135 // Advance i to one before the end to balance i++ in loop.
136 i = end - 1;
137 } else if (arg[i] == '"') {
138 out.push_back('\\');
139 out.push_back('"');
140 } else {
141 out.push_back(arg[i]);
142 }
143 }
144 out.push_back('"');
145
146 return out;
147}
evan@chromium.org4bbc6132009-01-21 10:00:22 +0900148#endif
initial.commit3f4a7322008-07-27 06:49:38 +0900149
msw@chromium.org7b2af612011-03-01 11:28:42 +0900150} // namespace
151
msw@chromium.org53fbac12011-05-14 10:10:24 +0900152CommandLine::CommandLine(NoProgram no_program)
153 : argv_(1),
154 begin_args_(1) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900155}
156
msw@chromium.org53fbac12011-05-14 10:10:24 +0900157CommandLine::CommandLine(const FilePath& program)
158 : argv_(1),
159 begin_args_(1) {
160 SetProgram(program);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900161}
162
msw@chromium.org53fbac12011-05-14 10:10:24 +0900163CommandLine::CommandLine(int argc, const CommandLine::CharType* const* argv)
164 : argv_(1),
165 begin_args_(1) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900166 InitFromArgv(argc, argv);
167}
168
msw@chromium.org53fbac12011-05-14 10:10:24 +0900169CommandLine::CommandLine(const StringVector& argv)
170 : argv_(1),
171 begin_args_(1) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900172 InitFromArgv(argv);
173}
msw@chromium.org7b2af612011-03-01 11:28:42 +0900174
jackhoua5995af2015-05-21 13:48:00 +0900175CommandLine::CommandLine(const CommandLine& other)
176 : argv_(other.argv_),
177 switches_(other.switches_),
178 begin_args_(other.begin_args_) {
179 ResetStringPieces();
180}
181
182CommandLine& CommandLine::operator=(const CommandLine& other) {
183 argv_ = other.argv_;
184 switches_ = other.switches_;
185 begin_args_ = other.begin_args_;
186 ResetStringPieces();
187 return *this;
188}
189
msw@chromium.org96b695b2011-03-02 05:47:58 +0900190CommandLine::~CommandLine() {
191}
192
brettw@chromium.org40b2d582013-09-26 08:36:00 +0900193#if defined(OS_WIN)
194// static
195void CommandLine::set_slash_is_not_a_switch() {
196 // The last switch prefix should be slash, so adjust the size to skip it.
danakja7ea6662015-03-10 07:27:25 +0900197 DCHECK_EQ(wcscmp(kSwitchPrefixes[arraysize(kSwitchPrefixes) - 1], L"/"), 0);
brettw@chromium.org40b2d582013-09-26 08:36:00 +0900198 switch_prefix_count = arraysize(kSwitchPrefixes) - 1;
199}
200#endif
201
msw@chromium.org7b2af612011-03-01 11:28:42 +0900202// static
erikwright@chromium.org506c72b2012-02-28 03:38:12 +0900203bool CommandLine::Init(int argc, const char* const* argv) {
rvargas@google.com58a11842011-07-14 03:03:34 +0900204 if (current_process_commandline_) {
205 // If this is intentional, Reset() must be called first. If we are using
206 // the shared build mode, we have to share a single object across multiple
207 // shared libraries.
erikwright@chromium.org506c72b2012-02-28 03:38:12 +0900208 return false;
rvargas@google.com58a11842011-07-14 03:03:34 +0900209 }
210
msw@chromium.org53fbac12011-05-14 10:10:24 +0900211 current_process_commandline_ = new CommandLine(NO_PROGRAM);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900212#if defined(OS_WIN)
213 current_process_commandline_->ParseFromString(::GetCommandLineW());
214#elif defined(OS_POSIX)
215 current_process_commandline_->InitFromArgv(argc, argv);
216#endif
erikwright@chromium.org506c72b2012-02-28 03:38:12 +0900217
218 return true;
msw@chromium.org7b2af612011-03-01 11:28:42 +0900219}
220
221// static
222void CommandLine::Reset() {
223 DCHECK(current_process_commandline_);
224 delete current_process_commandline_;
225 current_process_commandline_ = NULL;
226}
227
228// static
229CommandLine* CommandLine::ForCurrentProcess() {
230 DCHECK(current_process_commandline_);
231 return current_process_commandline_;
erg@chromium.org493f5f62010-07-16 06:03:54 +0900232}
233
vollick@chromium.org4ff9adc2013-07-12 08:10:40 +0900234// static
235bool CommandLine::InitializedForCurrentProcess() {
236 return !!current_process_commandline_;
237}
238
evanm@google.com91cdff82008-08-08 05:07:32 +0900239#if defined(OS_WIN)
msw@chromium.org7b2af612011-03-01 11:28:42 +0900240// static
thestig2d5b2e32014-12-05 07:14:22 +0900241CommandLine CommandLine::FromString(const string16& command_line) {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900242 CommandLine cmd(NO_PROGRAM);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900243 cmd.ParseFromString(command_line);
244 return cmd;
245}
msw@chromium.org53fbac12011-05-14 10:10:24 +0900246#endif
msw@chromium.org7b2af612011-03-01 11:28:42 +0900247
msw@chromium.org53fbac12011-05-14 10:10:24 +0900248void CommandLine::InitFromArgv(int argc,
249 const CommandLine::CharType* const* argv) {
250 StringVector new_argv;
msw@chromium.org7b2af612011-03-01 11:28:42 +0900251 for (int i = 0; i < argc; ++i)
msw@chromium.org53fbac12011-05-14 10:10:24 +0900252 new_argv.push_back(argv[i]);
253 InitFromArgv(new_argv);
evan@chromium.orgc4fee2c2009-10-27 07:39:33 +0900254}
255
msw@chromium.org7b2af612011-03-01 11:28:42 +0900256void CommandLine::InitFromArgv(const StringVector& argv) {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900257 argv_ = StringVector(1);
bartfab@chromium.orgad4cf182013-06-18 17:19:18 +0900258 switches_.clear();
jackhoua5995af2015-05-21 13:48:00 +0900259 switches_by_stringpiece_.clear();
msw@chromium.org53fbac12011-05-14 10:10:24 +0900260 begin_args_ = 1;
261 SetProgram(argv.empty() ? FilePath() : FilePath(argv[0]));
thestig2d5b2e32014-12-05 07:14:22 +0900262 AppendSwitchesAndArguments(this, argv);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900263}
msw@chromium.org7b2af612011-03-01 11:28:42 +0900264
msw@chromium.org7b2af612011-03-01 11:28:42 +0900265FilePath CommandLine::GetProgram() const {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900266 return FilePath(argv_[0]);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900267}
268
269void CommandLine::SetProgram(const FilePath& program) {
tfarinab6894c12015-12-06 22:25:41 +0900270#if defined(OS_WIN)
brettw@chromium.org37273892014-03-18 08:07:15 +0900271 TrimWhitespace(program.value(), TRIM_ALL, &argv_[0]);
tfarinab6894c12015-12-06 22:25:41 +0900272#else
273 TrimWhitespaceASCII(program.value(), TRIM_ALL, &argv_[0]);
274#endif
msw@chromium.org7b2af612011-03-01 11:28:42 +0900275}
276
jackhoua5995af2015-05-21 13:48:00 +0900277bool CommandLine::HasSwitch(const base::StringPiece& switch_string) const {
brettw200ab412015-08-11 04:07:51 +0900278 DCHECK_EQ(ToLowerASCII(switch_string), switch_string);
jackhoua5995af2015-05-21 13:48:00 +0900279 return switches_by_stringpiece_.find(switch_string) !=
280 switches_by_stringpiece_.end();
msw@chromium.org7b2af612011-03-01 11:28:42 +0900281}
282
jackhoua5995af2015-05-21 13:48:00 +0900283bool CommandLine::HasSwitch(const char switch_constant[]) const {
284 return HasSwitch(base::StringPiece(switch_constant));
tapted5762d502015-03-30 12:57:10 +0900285}
286
msw@chromium.org7b2af612011-03-01 11:28:42 +0900287std::string CommandLine::GetSwitchValueASCII(
jackhoua5995af2015-05-21 13:48:00 +0900288 const base::StringPiece& switch_string) const {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900289 StringType value = GetSwitchValueNative(switch_string);
brettw@chromium.org93397402014-03-18 08:55:43 +0900290 if (!IsStringASCII(value)) {
brettw@chromium.org5faed3c2011-10-27 06:48:00 +0900291 DLOG(WARNING) << "Value of switch (" << switch_string << ") must be ASCII.";
292 return std::string();
msw@chromium.org7b2af612011-03-01 11:28:42 +0900293 }
294#if defined(OS_WIN)
brettw@chromium.org37273892014-03-18 08:07:15 +0900295 return UTF16ToASCII(value);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900296#else
297 return value;
298#endif
299}
300
301FilePath CommandLine::GetSwitchValuePath(
jackhoua5995af2015-05-21 13:48:00 +0900302 const base::StringPiece& switch_string) const {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900303 return FilePath(GetSwitchValueNative(switch_string));
304}
305
306CommandLine::StringType CommandLine::GetSwitchValueNative(
jackhoua5995af2015-05-21 13:48:00 +0900307 const base::StringPiece& switch_string) const {
brettw200ab412015-08-11 04:07:51 +0900308 DCHECK_EQ(ToLowerASCII(switch_string), switch_string);
jackhoua5995af2015-05-21 13:48:00 +0900309 auto result = switches_by_stringpiece_.find(switch_string);
310 return result == switches_by_stringpiece_.end() ? StringType()
311 : *(result->second);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900312}
313
msw@chromium.org7b2af612011-03-01 11:28:42 +0900314void CommandLine::AppendSwitch(const std::string& switch_string) {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900315 AppendSwitchNative(switch_string, StringType());
msw@chromium.org7b2af612011-03-01 11:28:42 +0900316}
317
318void CommandLine::AppendSwitchPath(const std::string& switch_string,
319 const FilePath& path) {
320 AppendSwitchNative(switch_string, path.value());
321}
322
323void CommandLine::AppendSwitchNative(const std::string& switch_string,
324 const CommandLine::StringType& value) {
325#if defined(OS_WIN)
brettw200ab412015-08-11 04:07:51 +0900326 const std::string switch_key = ToLowerASCII(switch_string);
thestig2d5b2e32014-12-05 07:14:22 +0900327 StringType combined_switch_string(ASCIIToUTF16(switch_key));
msw@chromium.org7b2af612011-03-01 11:28:42 +0900328#elif defined(OS_POSIX)
jackhoua5995af2015-05-21 13:48:00 +0900329 const std::string& switch_key = switch_string;
330 StringType combined_switch_string(switch_key);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900331#endif
332 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string);
jackhoua5995af2015-05-21 13:48:00 +0900333 auto insertion =
334 switches_.insert(make_pair(switch_key.substr(prefix_length), value));
335 if (!insertion.second)
336 insertion.first->second = value;
337 switches_by_stringpiece_[insertion.first->first] = &(insertion.first->second);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900338 // Preserve existing switch prefixes in |argv_|; only append one if necessary.
339 if (prefix_length == 0)
340 combined_switch_string = kSwitchPrefixes[0] + combined_switch_string;
msw@chromium.org7b2af612011-03-01 11:28:42 +0900341 if (!value.empty())
342 combined_switch_string += kSwitchValueSeparator + value;
msw@chromium.org53fbac12011-05-14 10:10:24 +0900343 // Append the switch and update the switches/arguments divider |begin_args_|.
344 argv_.insert(argv_.begin() + begin_args_++, combined_switch_string);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900345}
346
347void CommandLine::AppendSwitchASCII(const std::string& switch_string,
348 const std::string& value_string) {
349#if defined(OS_WIN)
thestig2d5b2e32014-12-05 07:14:22 +0900350 AppendSwitchNative(switch_string, ASCIIToUTF16(value_string));
msw@chromium.org7b2af612011-03-01 11:28:42 +0900351#elif defined(OS_POSIX)
352 AppendSwitchNative(switch_string, value_string);
353#endif
354}
355
msw@chromium.org7b2af612011-03-01 11:28:42 +0900356void CommandLine::CopySwitchesFrom(const CommandLine& source,
357 const char* const switches[],
358 size_t count) {
359 for (size_t i = 0; i < count; ++i) {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900360 if (source.HasSwitch(switches[i]))
361 AppendSwitchNative(switches[i], source.GetSwitchValueNative(switches[i]));
msw@chromium.org7b2af612011-03-01 11:28:42 +0900362 }
363}
364
msw@chromium.orga25adf42011-07-14 08:41:22 +0900365CommandLine::StringVector CommandLine::GetArgs() const {
msw@chromium.org53fbac12011-05-14 10:10:24 +0900366 // Gather all arguments after the last switch (may include kSwitchTerminator).
367 StringVector args(argv_.begin() + begin_args_, argv_.end());
368 // Erase only the first kSwitchTerminator (maybe "--" is a legitimate page?)
369 StringVector::iterator switch_terminator =
370 std::find(args.begin(), args.end(), kSwitchTerminator);
371 if (switch_terminator != args.end())
372 args.erase(switch_terminator);
373 return args;
374}
375
msw@chromium.org7b2af612011-03-01 11:28:42 +0900376void CommandLine::AppendArg(const std::string& value) {
377#if defined(OS_WIN)
brettw@chromium.org93397402014-03-18 08:55:43 +0900378 DCHECK(IsStringUTF8(value));
379 AppendArgNative(UTF8ToWide(value));
msw@chromium.org7b2af612011-03-01 11:28:42 +0900380#elif defined(OS_POSIX)
381 AppendArgNative(value);
382#endif
383}
384
385void CommandLine::AppendArgPath(const FilePath& path) {
386 AppendArgNative(path.value());
387}
388
389void CommandLine::AppendArgNative(const CommandLine::StringType& value) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900390 argv_.push_back(value);
msw@chromium.org7b2af612011-03-01 11:28:42 +0900391}
392
393void CommandLine::AppendArguments(const CommandLine& other,
394 bool include_program) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900395 if (include_program)
msw@chromium.org53fbac12011-05-14 10:10:24 +0900396 SetProgram(other.GetProgram());
thestig2d5b2e32014-12-05 07:14:22 +0900397 AppendSwitchesAndArguments(this, other.argv());
msw@chromium.org7b2af612011-03-01 11:28:42 +0900398}
399
400void CommandLine::PrependWrapper(const CommandLine::StringType& wrapper) {
msw@chromium.org7b2af612011-03-01 11:28:42 +0900401 if (wrapper.empty())
402 return;
msw@chromium.org53fbac12011-05-14 10:10:24 +0900403 // The wrapper may have embedded arguments (like "gdb --args"). In this case,
404 // we don't pretend to do anything fancy, we just split on spaces.
brettwed9cfcf2015-08-08 09:28:47 +0900405 StringVector wrapper_argv = SplitString(
406 wrapper, FilePath::StringType(1, ' '), base::TRIM_WHITESPACE,
407 base::SPLIT_WANT_ALL);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900408 // Prepend the wrapper and update the switches/arguments |begin_args_|.
409 argv_.insert(argv_.begin(), wrapper_argv.begin(), wrapper_argv.end());
410 begin_args_ += wrapper_argv.size();
msw@chromium.org7b2af612011-03-01 11:28:42 +0900411}
412
413#if defined(OS_WIN)
thestig2d5b2e32014-12-05 07:14:22 +0900414void CommandLine::ParseFromString(const string16& command_line) {
415 string16 command_line_string;
brettw@chromium.org37273892014-03-18 08:07:15 +0900416 TrimWhitespace(command_line, TRIM_ALL, &command_line_string);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900417 if (command_line_string.empty())
evan@chromium.org4bbc6132009-01-21 10:00:22 +0900418 return;
419
420 int num_args = 0;
421 wchar_t** args = NULL;
msw@chromium.org53fbac12011-05-14 10:10:24 +0900422 args = ::CommandLineToArgvW(command_line_string.c_str(), &num_args);
evan@chromium.org4bbc6132009-01-21 10:00:22 +0900423
brettw@chromium.org5faed3c2011-10-27 06:48:00 +0900424 DPLOG_IF(FATAL, !args) << "CommandLineToArgvW failed on command line: "
brettw@chromium.org37273892014-03-18 08:07:15 +0900425 << UTF16ToUTF8(command_line);
msw@chromium.org53fbac12011-05-14 10:10:24 +0900426 InitFromArgv(num_args, args);
427 LocalFree(args);
evan@chromium.org4bbc6132009-01-21 10:00:22 +0900428}
evanm@google.com91cdff82008-08-08 05:07:32 +0900429#endif
brettw@chromium.org37273892014-03-18 08:07:15 +0900430
mgiuca90d74492014-10-01 18:24:51 +0900431CommandLine::StringType CommandLine::GetCommandLineStringInternal(
432 bool quote_placeholders) const {
433 StringType string(argv_[0]);
434#if defined(OS_WIN)
435 string = QuoteForCommandLineToArgvW(string, quote_placeholders);
436#endif
437 StringType params(GetArgumentsStringInternal(quote_placeholders));
438 if (!params.empty()) {
439 string.append(StringType(FILE_PATH_LITERAL(" ")));
440 string.append(params);
441 }
442 return string;
443}
444
445CommandLine::StringType CommandLine::GetArgumentsStringInternal(
446 bool quote_placeholders) const {
447 StringType params;
448 // Append switches and arguments.
449 bool parse_switches = true;
450 for (size_t i = 1; i < argv_.size(); ++i) {
451 StringType arg = argv_[i];
452 StringType switch_string;
453 StringType switch_value;
454 parse_switches &= arg != kSwitchTerminator;
455 if (i > 1)
456 params.append(StringType(FILE_PATH_LITERAL(" ")));
457 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
458 params.append(switch_string);
459 if (!switch_value.empty()) {
460#if defined(OS_WIN)
461 switch_value =
462 QuoteForCommandLineToArgvW(switch_value, quote_placeholders);
463#endif
464 params.append(kSwitchValueSeparator + switch_value);
465 }
thestig2d5b2e32014-12-05 07:14:22 +0900466 } else {
mgiuca90d74492014-10-01 18:24:51 +0900467#if defined(OS_WIN)
468 arg = QuoteForCommandLineToArgvW(arg, quote_placeholders);
469#endif
470 params.append(arg);
471 }
472 }
473 return params;
474}
475
jackhoua5995af2015-05-21 13:48:00 +0900476void CommandLine::ResetStringPieces() {
477 switches_by_stringpiece_.clear();
478 for (const auto& entry : switches_)
479 switches_by_stringpiece_[entry.first] = &(entry.second);
480}
481
brettw@chromium.org37273892014-03-18 08:07:15 +0900482} // namespace base