Index: base/command_line.h |
diff --git a/base/command_line.h b/base/command_line.h |
index 970e4a76f26da70363abcf8a4ae81f83228a6b06..37d68893ad0daedbb7d038293de56679056867fb 100644 |
--- a/base/command_line.h |
+++ b/base/command_line.h |
@@ -34,8 +34,8 @@ class BASE_API CommandLine { |
typedef std::string StringType; |
#endif |
+ typedef StringType::value_type CharType; |
typedef std::vector<StringType> StringVector; |
- // The type of map for parsed-out switch key and values. |
typedef std::map<std::string, StringType> SwitchMap; |
// A constructor for CommandLines that only carry switches and arguments. |
@@ -45,10 +45,9 @@ class BASE_API CommandLine { |
// Construct a new command line with |program| as argv[0]. |
explicit CommandLine(const FilePath& program); |
-#if defined(OS_POSIX) |
- CommandLine(int argc, const char* const* argv); |
+ // Construct a new command line from an argument list. |
+ CommandLine(int argc, const CharType* const* argv); |
explicit CommandLine(const StringVector& argv); |
-#endif |
~CommandLine(); |
@@ -73,23 +72,21 @@ class BASE_API CommandLine { |
static CommandLine FromString(const std::wstring& command_line); |
#endif |
-#if defined(OS_POSIX) |
// Initialize from an argv vector. |
- void InitFromArgv(int argc, const char* const* argv); |
+ void InitFromArgv(int argc, const CharType* const* argv); |
void InitFromArgv(const StringVector& argv); |
-#endif |
- // Returns the represented command line string. |
+ // Constructs and returns the represented command line string. |
// CAUTION! This should be avoided because quoting behavior is unclear. |
+ // TODO(msw): Rename GetCommandLineString. |
StringType command_line_string() const; |
-#if defined(OS_POSIX) |
// Returns the original command line string as a vector of strings. |
const StringVector& argv() const { return argv_; } |
-#endif |
- // Returns the program part of the command line string (the first item). |
+ // Get and Set the program part of the command line string (the first item). |
FilePath GetProgram() const; |
+ void SetProgram(const FilePath& program); |
// Returns true if this command line contains the given switch. |
// (Switch names are case-insensitive). |
@@ -109,22 +106,22 @@ class BASE_API CommandLine { |
const SwitchMap& GetSwitches() const { return switches_; } |
// Append a switch [with optional value] to the command line. |
- // CAUTION! Appending a switch after the "--" switch terminator is futile! |
void AppendSwitch(const std::string& switch_string); |
void AppendSwitchPath(const std::string& switch_string, const FilePath& path); |
void AppendSwitchNative(const std::string& switch_string, |
const StringType& value); |
void AppendSwitchASCII(const std::string& switch_string, |
const std::string& value); |
- void AppendSwitches(const CommandLine& other); |
// Copy a set of switches (and any values) from another command line. |
// Commonly used when launching a subprocess. |
- void CopySwitchesFrom(const CommandLine& source, const char* const switches[], |
+ void CopySwitchesFrom(const CommandLine& source, |
+ const char* const switches[], |
size_t count); |
// Get the remaining arguments to the command. |
- const StringVector& args() const { return args_; } |
+ // TODO(msw): Rename GetArgs. |
+ StringVector args() const; |
// Append an argument to the command line. Note that the argument is quoted |
// properly such that it is interpreted as one argument to the target command. |
@@ -132,12 +129,10 @@ class BASE_API CommandLine { |
void AppendArg(const std::string& value); |
void AppendArgPath(const FilePath& value); |
void AppendArgNative(const StringType& value); |
- void AppendArgs(const CommandLine& other); |
- // Append the arguments from another command line to this one. |
+ // Append the switches and arguments from another command line to this one. |
// If |include_program| is true, include |other|'s program as well. |
- void AppendArguments(const CommandLine& other, |
- bool include_program); |
+ void AppendArguments(const CommandLine& other, bool include_program); |
// Insert a command before the current command. |
// Common for debuggers, like "valgrind" or "gdb --args". |
@@ -150,34 +145,27 @@ class BASE_API CommandLine { |
#endif |
private: |
- // Disallow public default construction; a program name must be specified. |
+ // Disallow default constructor; a program name must be explicitly specified. |
CommandLine(); |
+ // Allow the copy constructor. A common pattern is to copy of the current |
+ // process's command line and then add some flags to it. For example: |
+ // CommandLine cl(*CommandLine::ForCurrentProcess()); |
+ // cl.AppendSwitch(...); |
// The singleton CommandLine representing the current process's command line. |
static CommandLine* current_process_commandline_; |
- // We store a platform-native version of the command line, used when building |
- // up a new command line to be executed. This ifdef delimits that code. |
-#if defined(OS_WIN) |
- // The quoted, space-separated command line string. |
- StringType command_line_string_; |
// The name of the program. |
- StringType program_; |
-#elif defined(OS_POSIX) |
- // The argv array, with the program name in argv_[0]. |
+ StringType program_string_; |
Evan Martin
2011/05/13 16:45:05
Why do we track this separately when we're careful
msw
2011/05/13 18:54:49
Done.
|
+ |
+ // The argv array: { program, [(--|-|/)switch[=value]]*, [--], [argument]* } |
StringVector argv_; |
-#endif |
// Parsed-out switch keys and values. |
SwitchMap switches_; |
- // Non-switch command line arguments. |
- StringVector args_; |
- |
- // Allow the copy constructor. A common pattern is to copy the current |
- // process's command line and then add some flags to it. For example: |
- // CommandLine cl(*CommandLine::ForCurrentProcess()); |
- // cl.AppendSwitch(...); |
+ // The index after the program and switches, any agruments start here. |
+ size_t begin_args_; |
}; |
#endif // BASE_COMMAND_LINE_H_ |