123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Copyright (c) 2013 GitHub, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #include "atom/common/atom_command_line.h"
- #include "base/command_line.h"
- #include "node/deps/uv/include/uv.h"
- namespace atom {
- // static
- std::vector<std::string> AtomCommandLine::argv_;
- #if defined(OS_WIN)
- // static
- std::vector<std::wstring> AtomCommandLine::wargv_;
- #endif
- // static
- void AtomCommandLine::Init(int argc, const char* const* argv) {
- // Hack around with the argv pointer. Used for process.title = "blah"
- char** new_argv = uv_setup_args(argc, const_cast<char**>(argv));
- for (int i = 0; i < argc; ++i) {
- argv_.push_back(new_argv[i]);
- }
- }
- #if defined(OS_WIN)
- // static
- void AtomCommandLine::InitW(int argc, const wchar_t* const* argv) {
- for (int i = 0; i < argc; ++i) {
- wargv_.push_back(argv[i]);
- }
- }
- #endif
- #if defined(OS_LINUX)
- // static
- void AtomCommandLine::InitializeFromCommandLine() {
- argv_ = base::CommandLine::ForCurrentProcess()->argv();
- }
- #endif
- } // namespace atom
|