2015-03-17 12:55:53 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/common/electron_command_line.h"
|
2015-06-19 14:56:10 +00:00
|
|
|
|
|
|
|
#include "base/command_line.h"
|
2020-04-24 19:57:41 +00:00
|
|
|
#include "uv.h" // NOLINT(build/include_directory)
|
2015-03-17 12:55:53 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-03-17 12:55:53 +00:00
|
|
|
|
2015-03-29 11:59:16 +00:00
|
|
|
// static
|
2020-02-04 20:19:40 +00:00
|
|
|
base::CommandLine::StringVector ElectronCommandLine::argv_;
|
2015-03-29 11:53:47 +00:00
|
|
|
|
2016-06-02 10:49:36 +00:00
|
|
|
// static
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronCommandLine::Init(int argc, base::CommandLine::CharType** argv) {
|
2018-01-22 22:49:30 +00:00
|
|
|
DCHECK(argv_.empty());
|
2016-06-02 10:49:36 +00:00
|
|
|
|
2018-01-22 22:49:30 +00:00
|
|
|
// NOTE: uv_setup_args does nothing on Windows, so we don't need to call it.
|
|
|
|
// Otherwise we'd have to convert the arguments from UTF16.
|
|
|
|
#if !defined(OS_WIN)
|
2015-04-04 13:50:21 +00:00
|
|
|
// Hack around with the argv pointer. Used for process.title = "blah"
|
2018-01-22 22:49:30 +00:00
|
|
|
argv = uv_setup_args(argc, argv);
|
|
|
|
#endif
|
2015-03-17 12:55:53 +00:00
|
|
|
|
2018-01-22 22:49:30 +00:00
|
|
|
argv_.assign(argv, argv + argc);
|
2016-06-02 10:49:36 +00:00
|
|
|
}
|
|
|
|
|
2015-06-19 14:56:10 +00:00
|
|
|
#if defined(OS_LINUX)
|
|
|
|
// static
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronCommandLine::InitializeFromCommandLine() {
|
2015-06-19 14:56:10 +00:00
|
|
|
argv_ = base::CommandLine::ForCurrentProcess()->argv();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|