2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/app/atom_main.h"
|
2013-11-05 13:12:13 +08:00
|
|
|
|
2013-09-05 09:22:24 +08:00
|
|
|
#include <stdlib.h>
|
2013-11-05 10:00:11 +08:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <windows.h>
|
2015-01-22 16:09:03 -08:00
|
|
|
#include <shellscalingapi.h>
|
|
|
|
#include <tchar.h>
|
2013-11-05 10:00:11 +08:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/app/atom_main_delegate.h"
|
|
|
|
#include "atom/common/crash_reporter/win/crash_service_main.h"
|
2014-07-11 20:58:00 +08:00
|
|
|
#include "base/environment.h"
|
2015-01-22 16:09:03 -08:00
|
|
|
#include "base/win/windows_version.h"
|
2016-03-07 20:32:54 -08:00
|
|
|
#include "content/public/app/sandbox_helper_win.h"
|
2013-11-05 10:00:11 +08:00
|
|
|
#include "sandbox/win/src/sandbox_types.h"
|
2014-07-11 20:58:00 +08:00
|
|
|
#include "ui/gfx/win/dpi.h"
|
2013-12-31 11:51:17 +00:00
|
|
|
#elif defined(OS_LINUX) // defined(OS_WIN)
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/app/atom_main_delegate.h" // NOLINT
|
2013-12-31 11:51:17 +00:00
|
|
|
#include "content/public/app/content_main.h"
|
|
|
|
#else // defined(OS_LINUX)
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/app/atom_library_main.h"
|
2013-12-31 11:51:17 +00:00
|
|
|
#endif // defined(OS_MACOSX)
|
2013-11-05 10:00:11 +08:00
|
|
|
|
2015-03-12 17:03:16 -07:00
|
|
|
#include "atom/app/node_main.h"
|
2015-06-19 23:11:53 +08:00
|
|
|
#include "atom/common/atom_command_line.h"
|
2015-09-03 10:28:50 +08:00
|
|
|
#include "base/at_exit.h"
|
2015-01-16 16:12:12 -08:00
|
|
|
#include "base/i18n/icu_util.h"
|
|
|
|
|
2015-11-26 20:15:35 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const char* kRunAsNode = "ELECTRON_RUN_AS_NODE";
|
|
|
|
|
|
|
|
bool IsEnvSet(const char* name) {
|
2013-07-01 22:21:31 +08:00
|
|
|
#if defined(OS_WIN)
|
2015-11-26 20:15:35 +08:00
|
|
|
size_t required_size;
|
|
|
|
getenv_s(&required_size, nullptr, 0, name);
|
|
|
|
return required_size != 0;
|
|
|
|
#else
|
|
|
|
char* indicator = getenv(name);
|
|
|
|
return indicator && indicator[0] != '\0';
|
|
|
|
#endif
|
|
|
|
}
|
2013-07-01 22:21:31 +08:00
|
|
|
|
2015-11-26 20:15:35 +08:00
|
|
|
bool IsRunAsNode() {
|
2016-05-24 10:17:57 -07:00
|
|
|
return IsEnvSet(kRunAsNode);
|
2015-11-26 20:15:35 +08:00
|
|
|
}
|
2015-01-22 16:09:03 -08:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2015-11-26 20:15:35 +08:00
|
|
|
#if defined(OS_WIN)
|
2013-08-16 18:48:02 +08:00
|
|
|
int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {
|
|
|
|
int argc = 0;
|
2013-08-31 15:42:41 +08:00
|
|
|
wchar_t** wargv = ::CommandLineToArgvW(::GetCommandLineW(), &argc);
|
2013-09-05 12:18:19 +08:00
|
|
|
|
2013-11-19 20:56:22 +08:00
|
|
|
// Make output work in console if we are not in cygiwn.
|
2015-12-10 14:37:09 +08:00
|
|
|
if (!IsEnvSet("TERM") && !IsEnvSet("ELECTRON_NO_ATTACH_CONSOLE")) {
|
2013-11-19 20:56:22 +08:00
|
|
|
AttachConsole(ATTACH_PARENT_PROCESS);
|
|
|
|
|
|
|
|
FILE* dontcare;
|
|
|
|
freopen_s(&dontcare, "CON", "w", stdout);
|
|
|
|
freopen_s(&dontcare, "CON", "w", stderr);
|
|
|
|
}
|
2013-11-04 14:15:19 -08:00
|
|
|
|
2015-03-17 18:25:53 +05:30
|
|
|
// Convert argv to to UTF8
|
|
|
|
char** argv = new char*[argc];
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
// Compute the size of the required buffer
|
|
|
|
DWORD size = WideCharToMultiByte(CP_UTF8,
|
|
|
|
0,
|
|
|
|
wargv[i],
|
|
|
|
-1,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
if (size == 0) {
|
|
|
|
// This should never happen.
|
|
|
|
fprintf(stderr, "Could not convert arguments to utf8.");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
// Do the actual conversion
|
|
|
|
argv[i] = new char[size];
|
|
|
|
DWORD result = WideCharToMultiByte(CP_UTF8,
|
2013-08-08 15:59:31 +08:00
|
|
|
0,
|
2013-08-16 18:48:02 +08:00
|
|
|
wargv[i],
|
2013-08-08 15:59:31 +08:00
|
|
|
-1,
|
2015-03-17 18:25:53 +05:30
|
|
|
argv[i],
|
|
|
|
size,
|
2013-08-08 15:59:31 +08:00
|
|
|
NULL,
|
|
|
|
NULL);
|
2015-03-17 18:25:53 +05:30
|
|
|
if (result == 0) {
|
|
|
|
// This should never happen.
|
|
|
|
fprintf(stderr, "Could not convert arguments to utf8.");
|
|
|
|
exit(1);
|
2013-08-08 15:59:31 +08:00
|
|
|
}
|
2015-03-17 18:25:53 +05:30
|
|
|
}
|
|
|
|
|
2015-11-26 20:15:35 +08:00
|
|
|
if (IsRunAsNode()) {
|
2015-03-17 18:25:53 +05:30
|
|
|
// Now that argv conversion is done, we can finally start.
|
2015-09-03 10:28:50 +08:00
|
|
|
base::AtExitManager atexit_manager;
|
2015-01-16 16:12:12 -08:00
|
|
|
base::i18n::InitializeICU();
|
2015-03-12 17:03:16 -07:00
|
|
|
return atom::NodeMain(argc, argv);
|
2016-05-24 10:22:13 -07:00
|
|
|
} else if (IsEnvSet("ELECTRON_INTERNAL_CRASH_SERVICE")) {
|
2013-11-24 17:35:58 +08:00
|
|
|
return crash_service::Main(cmd);
|
2013-08-08 15:59:31 +08:00
|
|
|
}
|
|
|
|
|
2013-07-01 22:21:31 +08:00
|
|
|
sandbox::SandboxInterfaceInfo sandbox_info = {0};
|
|
|
|
content::InitializeSandboxInfo(&sandbox_info);
|
|
|
|
atom::AtomMainDelegate delegate;
|
2014-06-30 11:44:05 +08:00
|
|
|
|
|
|
|
content::ContentMainParams params(&delegate);
|
|
|
|
params.instance = instance;
|
|
|
|
params.sandbox_info = &sandbox_info;
|
2015-03-29 19:53:47 +08:00
|
|
|
atom::AtomCommandLine::Init(argc, argv);
|
2014-06-30 11:44:05 +08:00
|
|
|
return content::ContentMain(params);
|
2013-07-01 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2013-12-31 11:51:17 +00:00
|
|
|
#elif defined(OS_LINUX) // defined(OS_WIN)
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2015-11-26 20:15:35 +08:00
|
|
|
if (IsRunAsNode()) {
|
2015-01-16 16:12:12 -08:00
|
|
|
base::i18n::InitializeICU();
|
2015-09-03 10:28:50 +08:00
|
|
|
base::AtExitManager atexit_manager;
|
2015-03-12 17:03:16 -07:00
|
|
|
return atom::NodeMain(argc, const_cast<char**>(argv));
|
2015-01-16 16:12:12 -08:00
|
|
|
}
|
2013-12-31 11:51:17 +00:00
|
|
|
|
|
|
|
atom::AtomMainDelegate delegate;
|
2014-06-30 11:44:05 +08:00
|
|
|
content::ContentMainParams params(&delegate);
|
|
|
|
params.argc = argc;
|
|
|
|
params.argv = argv;
|
2015-03-17 18:25:53 +05:30
|
|
|
atom::AtomCommandLine::Init(argc, argv);
|
2014-06-30 11:44:05 +08:00
|
|
|
return content::ContentMain(params);
|
2013-12-31 11:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else // defined(OS_LINUX)
|
2013-07-01 22:21:31 +08:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
int main(int argc, const char* argv[]) {
|
2015-11-26 20:15:35 +08:00
|
|
|
if (IsRunAsNode()) {
|
2015-03-12 17:03:16 -07:00
|
|
|
return AtomInitializeICUandStartNode(argc, const_cast<char**>(argv));
|
2015-01-16 15:54:38 -08:00
|
|
|
}
|
2013-08-08 15:59:31 +08:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
return AtomMain(argc, argv);
|
|
|
|
}
|
2013-07-01 22:21:31 +08:00
|
|
|
|
2013-12-31 11:51:17 +00:00
|
|
|
#endif // defined(OS_MACOSX)
|