erikwright@chromium.org | 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. |
deanm@chromium.org | 02c8796 | 2008-10-06 10:25:35 | [diff] [blame] | 4 | |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 5 | // This class works with command lines: building and parsing. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 6 | // Arguments with prefixes ('--', '-', and on Windows, '/') are switches. |
| 7 | // Switches will precede all other arguments without switch prefixes. |
| 8 | // Switches can optionally have values, delimited by '=', e.g., "-switch=value". |
John Rummell | b1d5fcb | 2019-04-27 01:13:33 | [diff] [blame] | 9 | // If a switch is specified multiple times, only the last value is used. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 10 | // An argument of "--" will terminate switch parsing during initialization, |
| 11 | // interpreting subsequent tokens as non-switch arguments, regardless of prefix. |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 12 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 13 | // There is a singleton read-only CommandLine that represents the command line |
| 14 | // that the current process was started with. It must be initialized in main(). |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 15 | |
deanm@chromium.org | 02c8796 | 2008-10-06 10:25:35 | [diff] [blame] | 16 | #ifndef BASE_COMMAND_LINE_H_ |
| 17 | #define BASE_COMMAND_LINE_H_ |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 18 | |
jhawkins@chromium.org | 2edc286 | 2011-04-04 18:04:37 | [diff] [blame] | 19 | #include <stddef.h> |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 20 | #include <map> |
| 21 | #include <string> |
| 22 | #include <vector> |
| 23 | |
darin@chromium.org | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 24 | #include "base/base_export.h" |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 25 | #include "base/strings/string_piece.h" |
brettw@chromium.org | 74e9fa2 | 2010-12-29 21:06:43 | [diff] [blame] | 26 | #include "build/build_config.h" |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 27 | |
brettw@chromium.org | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 28 | namespace base { |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 29 | |
erg@google.com | 5d91c9e | 2010-07-28 17:25:28 | [diff] [blame] | 30 | class FilePath; |
sky@google.com | d4515eb | 2009-01-30 00:40:43 | [diff] [blame] | 31 | |
darin@chromium.org | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 32 | class BASE_EXPORT CommandLine { |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 33 | public: |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 34 | #if defined(OS_WIN) |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 35 | // The native command line string type. |
Jan Wilken Dörrie | da77fd43 | 2019-10-24 21:40:34 | [diff] [blame] | 36 | using StringType = std::wstring; |
Fabrice de Gans-Riberi | 306871de | 2018-05-16 19:38:39 | [diff] [blame] | 37 | #elif defined(OS_POSIX) || defined(OS_FUCHSIA) |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 38 | using StringType = std::string; |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 39 | #endif |
| 40 | |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 41 | using CharType = StringType::value_type; |
Jan Wilken Dörrie | 8ed6fce | 2021-03-25 23:00:38 | [diff] [blame^] | 42 | using StringPieceType = base::BasicStringPiece<CharType>; |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 43 | using StringVector = std::vector<StringType>; |
Jeremy Roman | 863386d | 2017-10-31 19:25:38 | [diff] [blame] | 44 | using SwitchMap = std::map<std::string, StringType, std::less<>>; |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 45 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 46 | // A constructor for CommandLines that only carry switches and arguments. |
mattm@chromium.org | 947446b | 2010-10-21 03:36:31 | [diff] [blame] | 47 | enum NoProgram { NO_PROGRAM }; |
| 48 | explicit CommandLine(NoProgram no_program); |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 49 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 50 | // Construct a new command line with |program| as argv[0]. |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 51 | explicit CommandLine(const FilePath& program); |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 52 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 53 | // Construct a new command line from an argument list. |
| 54 | CommandLine(int argc, const CharType* const* argv); |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 55 | explicit CommandLine(const StringVector& argv); |
erg@google.com | a502bbe7 | 2011-01-07 18:06:45 | [diff] [blame] | 56 | |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 57 | CommandLine(const CommandLine& other); |
| 58 | CommandLine& operator=(const CommandLine& other); |
| 59 | |
msw@chromium.org | acbeb3d | 2011-03-01 20:47:58 | [diff] [blame] | 60 | ~CommandLine(); |
| 61 | |
brettw@chromium.org | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 62 | #if defined(OS_WIN) |
| 63 | // By default this class will treat command-line arguments beginning with |
| 64 | // slashes as switches on Windows, but not other platforms. |
| 65 | // |
| 66 | // If this behavior is inappropriate for your application, you can call this |
| 67 | // function BEFORE initializing the current process' global command line |
| 68 | // object and the behavior will be the same as Posix systems (only hyphens |
| 69 | // begin switches, everything else will be an arg). |
| 70 | static void set_slash_is_not_a_switch(); |
ananta | d936bc1 | 2016-06-22 21:40:31 | [diff] [blame] | 71 | |
| 72 | // Normally when the CommandLine singleton is initialized it gets the command |
| 73 | // line via the GetCommandLineW API and then uses the shell32 API |
| 74 | // CommandLineToArgvW to parse the command line and convert it back to |
| 75 | // argc and argv. Tests who don't want this dependency on shell32 and need |
| 76 | // to honor the arguments passed in should use this function. |
| 77 | static void InitUsingArgvForTesting(int argc, const char* const* argv); |
brettw@chromium.org | bf98a0e1 | 2013-09-25 23:36:00 | [diff] [blame] | 78 | #endif |
| 79 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 80 | // Initialize the current process CommandLine singleton. On Windows, ignores |
| 81 | // its arguments (we instead parse GetCommandLineW() directly) because we |
| 82 | // don't trust the CRT's parsing of the command line, but it still must be |
erikwright@chromium.org | 72e2e242 | 2012-02-27 18:38:12 | [diff] [blame] | 83 | // called to set up the command line. Returns false if initialization has |
| 84 | // already occurred, and true otherwise. Only the caller receiving a 'true' |
| 85 | // return value should take responsibility for calling Reset. |
| 86 | static bool Init(int argc, const char* const* argv); |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 87 | |
evan@chromium.org | a2318cda | 2009-02-25 21:13:53 | [diff] [blame] | 88 | // Destroys the current process CommandLine singleton. This is necessary if |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 89 | // you want to reset the base library to its initial state (for example, in an |
evan@chromium.org | a2318cda | 2009-02-25 21:13:53 | [diff] [blame] | 90 | // outer library that needs to be able to terminate, and be re-initialized). |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 91 | // If Init is called only once, as in main(), Reset() is not necessary. |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 92 | // Do not call this in tests. Use base::test::ScopedCommandLine instead. |
evan@chromium.org | 02fb75ab | 2009-10-12 16:11:40 | [diff] [blame] | 93 | static void Reset(); |
evan@chromium.org | a2318cda | 2009-02-25 21:13:53 | [diff] [blame] | 94 | |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 95 | // Get the singleton CommandLine representing the current process's |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 96 | // command line. Note: returned value is mutable, but not thread safe; |
evan@chromium.org | 0189bbd | 2009-10-12 22:50:39 | [diff] [blame] | 97 | // only mutate if you know what you're doing! |
erg@google.com | dcd869c | 2010-08-30 20:15:25 | [diff] [blame] | 98 | static CommandLine* ForCurrentProcess(); |
evanm@google.com | 1a48f31 | 2008-08-12 01:14:37 | [diff] [blame] | 99 | |
vollick@chromium.org | 2bf64a9 | 2013-07-11 23:10:40 | [diff] [blame] | 100 | // Returns true if the CommandLine has been initialized for the given process. |
| 101 | static bool InitializedForCurrentProcess(); |
| 102 | |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 103 | #if defined(OS_WIN) |
Jan Wilken Dörrie | da77fd43 | 2019-10-24 21:40:34 | [diff] [blame] | 104 | static CommandLine FromString(StringPieceType command_line); |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 105 | #endif |
| 106 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 107 | // Initialize from an argv vector. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 108 | void InitFromArgv(int argc, const CharType* const* argv); |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 109 | void InitFromArgv(const StringVector& argv); |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 110 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 111 | // Constructs and returns the represented command line string. |
gab@chromium.org | 45f982e | 2012-10-29 21:31:31 | [diff] [blame] | 112 | // CAUTION! This should be avoided on POSIX because quoting behavior is |
| 113 | // unclear. |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 114 | // CAUTION! If writing a command line to the Windows registry, use |
| 115 | // GetCommandLineStringForShell() instead. |
| 116 | StringType GetCommandLineString() const; |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 117 | |
| 118 | #if defined(OS_WIN) |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 119 | // Returns the command-line string in the proper format for the Windows shell, |
| 120 | // ending with the argument placeholder "--single-argument %1". The single- |
| 121 | // argument switch prevents unexpected parsing of arguments from other |
| 122 | // software that cannot be trusted to escape double quotes when substituting |
Jesse McKenna | 185ceda2 | 2021-03-10 06:47:55 | [diff] [blame] | 123 | // into a placeholder (e.g., "%1" insert sequences populated by the Windows |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 124 | // shell). |
| 125 | // NOTE: this must be used to generate the command-line string for the shell |
| 126 | // even if this command line was parsed from a string with the proper syntax, |
| 127 | // because the --single-argument switch is not preserved during parsing. |
| 128 | StringType GetCommandLineStringForShell() const; |
Jesse McKenna | 185ceda2 | 2021-03-10 06:47:55 | [diff] [blame] | 129 | |
| 130 | // Returns the represented command-line string. Allows the use of unsafe |
| 131 | // Windows insert sequences like "%1". Only use this method if |
| 132 | // GetCommandLineStringForShell() is not adequate AND the processor inserting |
| 133 | // the arguments is known to do so securely (i.e., is not the Windows shell). |
| 134 | // If in doubt, do not use. |
| 135 | StringType GetCommandLineStringWithUnsafeInsertSequences() const; |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 136 | #endif |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 137 | |
gab@chromium.org | 45f982e | 2012-10-29 21:31:31 | [diff] [blame] | 138 | // Constructs and returns the represented arguments string. |
| 139 | // CAUTION! This should be avoided on POSIX because quoting behavior is |
| 140 | // unclear. |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 141 | StringType GetArgumentsString() const; |
gab@chromium.org | 45f982e | 2012-10-29 21:31:31 | [diff] [blame] | 142 | |
estade@chromium.org | 10e42bf | 2008-10-15 21:59:08 | [diff] [blame] | 143 | // Returns the original command line string as a vector of strings. |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 144 | const StringVector& argv() const { return argv_; } |
estade@chromium.org | 10e42bf | 2008-10-15 21:59:08 | [diff] [blame] | 145 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 146 | // Get and Set the program part of the command line string (the first item). |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 147 | FilePath GetProgram() const; |
| 148 | void SetProgram(const FilePath& program); |
evan@chromium.org | 0189bbd | 2009-10-12 22:50:39 | [diff] [blame] | 149 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 150 | // Returns true if this command line contains the given switch. |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 151 | // Switch names must be lowercase. |
| 152 | // The second override provides an optimized version to avoid inlining codegen |
| 153 | // at every callsite to find the length of the constant and construct a |
| 154 | // StringPiece. |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 155 | bool HasSwitch(const StringPiece& switch_string) const; |
tapted | 009a1dc8 | 2015-03-30 03:57:10 | [diff] [blame] | 156 | bool HasSwitch(const char switch_constant[]) const; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 157 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 158 | // Returns the value associated with the given switch. If the switch has no |
| 159 | // value or isn't present, this method returns the empty string. |
jackhou | 1bd9da9 | 2015-05-21 04:48:00 | [diff] [blame] | 160 | // Switch names must be lowercase. |
thestig | fd08568 | 2016-07-15 02:50:16 | [diff] [blame] | 161 | std::string GetSwitchValueASCII(const StringPiece& switch_string) const; |
| 162 | FilePath GetSwitchValuePath(const StringPiece& switch_string) const; |
| 163 | StringType GetSwitchValueNative(const StringPiece& switch_string) const; |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 164 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 165 | // Get a copy of all switches, along with their values. |
| 166 | const SwitchMap& GetSwitches() const { return switches_; } |
| 167 | |
| 168 | // Append a switch [with optional value] to the command line. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 169 | // Note: Switches will precede arguments regardless of appending order. |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 170 | void AppendSwitch(const std::string& switch_string); |
brettw@chromium.org | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 171 | void AppendSwitchPath(const std::string& switch_string, |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 172 | const FilePath& path); |
evan@chromium.org | 4f08c83f | 2010-07-29 23:02:34 | [diff] [blame] | 173 | void AppendSwitchNative(const std::string& switch_string, |
Jan Wilken Dörrie | bd953ac | 2020-07-10 23:28:54 | [diff] [blame] | 174 | StringPieceType value); |
evan@chromium.org | d420c31e | 2010-07-30 02:14:22 | [diff] [blame] | 175 | void AppendSwitchASCII(const std::string& switch_string, |
| 176 | const std::string& value); |
evan@chromium.org | 4f08c83f | 2010-07-29 23:02:34 | [diff] [blame] | 177 | |
Pavol Marko | bf16b81 | 2019-06-14 00:53:12 | [diff] [blame] | 178 | // Removes the switch that matches |switch_key_without_prefix|, regardless of |
| 179 | // prefix and value. If no such switch is present, this has no effect. |
| 180 | void RemoveSwitch(const base::StringPiece switch_key_without_prefix); |
Avi Drissman | 1aa6cb9 | 2019-01-23 15:58:38 | [diff] [blame] | 181 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 182 | // Copy a set of switches (and any values) from another command line. |
| 183 | // Commonly used when launching a subprocess. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 184 | void CopySwitchesFrom(const CommandLine& source, |
| 185 | const char* const switches[], |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 186 | size_t count); |
| 187 | |
| 188 | // Get the remaining arguments to the command. |
msw@chromium.org | 75f1c78 | 2011-07-13 23:41:22 | [diff] [blame] | 189 | StringVector GetArgs() const; |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 190 | |
| 191 | // Append an argument to the command line. Note that the argument is quoted |
| 192 | // properly such that it is interpreted as one argument to the target command. |
| 193 | // AppendArg is primarily for ASCII; non-ASCII input is interpreted as UTF-8. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 194 | // Note: Switches will precede arguments regardless of appending order. |
evan@chromium.org | 0445eb4 | 2010-08-13 22:10:30 | [diff] [blame] | 195 | void AppendArg(const std::string& value); |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 196 | void AppendArgPath(const FilePath& value); |
evan@chromium.org | 0445eb4 | 2010-08-13 22:10:30 | [diff] [blame] | 197 | void AppendArgNative(const StringType& value); |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 198 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 199 | // Append the switches and arguments from another command line to this one. |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 200 | // If |include_program| is true, include |other|'s program as well. |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 201 | void AppendArguments(const CommandLine& other, bool include_program); |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 202 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 203 | // Insert a command before the current command. |
Mostyn Bramley-Moore | d0ecd6a | 2017-12-06 19:13:21 | [diff] [blame] | 204 | // Common for debuggers, like "gdb --args". |
evan@chromium.org | 13081fc | 2010-08-04 18:24:38 | [diff] [blame] | 205 | void PrependWrapper(const StringType& wrapper); |
agl@chromium.org | 052f1d48 | 2009-02-10 00:52:14 | [diff] [blame] | 206 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 207 | #if defined(OS_WIN) |
| 208 | // Initialize by parsing the given command line string. |
| 209 | // The program name is assumed to be the first item in the string. |
Jan Wilken Dörrie | da77fd43 | 2019-10-24 21:40:34 | [diff] [blame] | 210 | void ParseFromString(StringPieceType command_line); |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 211 | #endif |
evan@chromium.org | 4f08c83f | 2010-07-29 23:02:34 | [diff] [blame] | 212 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 213 | private: |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 214 | // Disallow default constructor; a program name must be explicitly specified. |
Chris Watkins | 091d629 | 2017-12-13 04:25:58 | [diff] [blame] | 215 | CommandLine() = delete; |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 216 | // Allow the copy constructor. A common pattern is to copy of the current |
| 217 | // process's command line and then add some flags to it. For example: |
| 218 | // CommandLine cl(*CommandLine::ForCurrentProcess()); |
| 219 | // cl.AppendSwitch(...); |
sky@google.com | d4515eb | 2009-01-30 00:40:43 | [diff] [blame] | 220 | |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 221 | // Append switches and arguments, keeping switches before arguments. |
| 222 | void AppendSwitchesAndArguments(const StringVector& argv); |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 223 | |
Jesse McKenna | 185ceda2 | 2021-03-10 06:47:55 | [diff] [blame] | 224 | // Internal version of GetArgumentsString to support allowing unsafe insert |
| 225 | // sequences in rare cases (see |
| 226 | // GetCommandLineStringWithUnsafeInsertSequences). |
| 227 | StringType GetArgumentsStringInternal( |
| 228 | bool allow_unsafe_insert_sequences) const; |
| 229 | |
Jesse McKenna | 036150c | 2020-07-17 21:11:17 | [diff] [blame] | 230 | #if defined(OS_WIN) |
| 231 | // Initializes by parsing |raw_command_line_string_|, treating everything |
| 232 | // after |single_arg_switch_string| + <a single character> as the command |
| 233 | // line's single argument, and dropping any arguments previously parsed. The |
| 234 | // command line must contain |single_arg_switch_string|, and the argument, if |
| 235 | // present, must be separated from |single_arg_switch_string| by one |
| 236 | // character. |
| 237 | // NOTE: the single-argument switch is not preserved after parsing; |
| 238 | // GetCommandLineStringForShell() must be used to reproduce the original |
| 239 | // command-line string with single-argument switch. |
| 240 | void ParseAsSingleArgument(const StringType& single_arg_switch_string); |
| 241 | |
| 242 | // The string returned by GetCommandLineW(), to be parsed via |
| 243 | // ParseFromString(). Empty if this command line was not parsed from a string, |
| 244 | // or if ParseFromString() has finished executing. |
| 245 | StringPieceType raw_command_line_string_; |
| 246 | #endif |
mgiuca | c974d510 | 2014-10-01 09:24:51 | [diff] [blame] | 247 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 248 | // The singleton CommandLine representing the current process's command line. |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 249 | static CommandLine* current_process_commandline_; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 250 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 251 | // The argv array: { program, [(--|-|/)switch[=value]]*, [--], [argument]* } |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 252 | StringVector argv_; |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 253 | |
msw@chromium.org | 06cc083a | 2011-03-01 02:28:42 | [diff] [blame] | 254 | // Parsed-out switch keys and values. |
kinuko@chromium.org | f6c3483 | 2010-05-24 10:39:59 | [diff] [blame] | 255 | SwitchMap switches_; |
evan@chromium.org | bb97536 | 2009-01-21 01:00:22 | [diff] [blame] | 256 | |
msw@chromium.org | a40ca430 | 2011-05-14 01:10:24 | [diff] [blame] | 257 | // The index after the program and switches, any arguments start here. |
| 258 | size_t begin_args_; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 259 | }; |
| 260 | |
brettw@chromium.org | 2f3b1cc | 2014-03-17 23:07:15 | [diff] [blame] | 261 | } // namespace base |
| 262 | |
deanm@chromium.org | 02c8796 | 2008-10-06 10:25:35 | [diff] [blame] | 263 | #endif // BASE_COMMAND_LINE_H_ |