electron/atom/app/atom_main.cc

190 lines
6 KiB
C++
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-04-12 01:46:58 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/app/atom_main.h"
#include <stdlib.h>
#if defined(OS_WIN)
2016-08-26 22:43:40 +00:00
#include <windows.h> // windows.h must be included first
#include <atlbase.h> // ensures that ATL statics like `_AtlWinModule` are initialized (it's an issue in static debug build)
2016-08-26 22:30:02 +00:00
#include <shellapi.h>
#include <shellscalingapi.h>
#include <tchar.h>
2014-03-16 00:30:26 +00:00
#include "atom/app/atom_main_delegate.h"
#include "atom/common/crash_reporter/win/crash_service_main.h"
2014-07-11 12:58:00 +00:00
#include "base/environment.h"
2016-05-31 01:19:13 +00:00
#include "base/process/launch.h"
#include "base/win/windows_version.h"
2016-03-08 04:32:54 +00:00
#include "content/public/app/sandbox_helper_win.h"
#include "sandbox/win/src/sandbox_types.h"
2013-12-31 11:51:17 +00:00
#elif defined(OS_LINUX) // defined(OS_WIN)
2014-03-16 00:30:26 +00: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 00:30:26 +00:00
#include "atom/app/atom_library_main.h"
2013-12-31 11:51:17 +00:00
#endif // defined(OS_MACOSX)
#include "atom/app/node_main.h"
2015-06-19 15:11:53 +00:00
#include "atom/common/atom_command_line.h"
2015-09-03 02:28:50 +00:00
#include "base/at_exit.h"
2015-01-17 00:12:12 +00:00
#include "base/i18n/icu_util.h"
2015-11-26 12:15:35 +00:00
namespace {
2017-08-16 07:49:22 +00:00
const auto kRunAsNode = "ELECTRON_RUN_AS_NODE";
2015-11-26 12:15:35 +00:00
bool IsEnvSet(const char* name) {
2013-07-01 14:21:31 +00:00
#if defined(OS_WIN)
2015-11-26 12:15:35 +00: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 14:21:31 +00:00
} // namespace
2015-11-26 12:15:35 +00:00
#if defined(OS_WIN)
int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {
int argc = 0;
wchar_t** wargv = ::CommandLineToArgvW(::GetCommandLineW(), &argc);
2016-05-31 01:19:13 +00:00
bool run_as_node = IsEnvSet(kRunAsNode);
2017-08-16 07:49:22 +00:00
#ifdef _DEBUG
// Don't display assert dialog boxes in CI test runs
static const auto kCI = "ELECTRON_CI";
bool is_ci = IsEnvSet(kCI);
if (!is_ci) {
for (int i = 0; i < argc; ++i) {
if (!_wcsicmp(wargv[i], L"--ci")) {
is_ci = true;
_putenv_s(kCI, "1"); // set flag for child processes
break;
}
}
}
if (is_ci) {
_CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_DEBUG | _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR);
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG | _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
_set_error_mode(_OUT_TO_STDERR);
}
#endif
2016-05-31 01:19:13 +00:00
// Make sure the output is printed to console.
if (run_as_node || !IsEnvSet("ELECTRON_NO_ATTACH_CONSOLE"))
base::RouteStdioToConsole(false);
2013-11-04 22:15:19 +00:00
// 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,
0,
wargv[i],
-1,
argv[i],
size,
NULL,
NULL);
if (result == 0) {
// This should never happen.
fprintf(stderr, "Could not convert arguments to utf8.");
exit(1);
}
}
2017-08-28 01:11:20 +00:00
#ifndef DEBUG
// Chromium has its own TLS subsystem which supports automatic destruction
// of thread-local data, and also depends on memory allocation routines
// provided by the CRT. The problem is that the auto-destruction mechanism
// uses a hidden feature of the OS loader which calls a callback on thread
// exit, but only after all loaded DLLs have been detached. Since the CRT is
// also a DLL, it happens that by the time Chromium's `OnThreadExit` function
// is called, the heap functions, though still in memory, no longer perform
// their duties, and when Chromium calls `free` on its buffer, it triggers
// an access violation error.
// We work around this problem by invoking Chromium's `OnThreadExit` in time
// from within the CRT's atexit facility, ensuring the heap functions are
// still active. The second invocation from the OS loader will be a no-op.
extern void NTAPI OnThreadExit(PVOID module, DWORD reason, PVOID reserved);
atexit([]() {
OnThreadExit(nullptr, DLL_THREAD_DETACH, nullptr);
});
#endif
2016-05-31 01:19:13 +00:00
if (run_as_node) {
// Now that argv conversion is done, we can finally start.
2015-09-03 02:28:50 +00:00
base::AtExitManager atexit_manager;
2015-01-17 00:12:12 +00:00
base::i18n::InitializeICU();
return atom::NodeMain(argc, argv);
} else if (IsEnvSet("ELECTRON_INTERNAL_CRASH_SERVICE")) {
return crash_service::Main(cmd);
}
2013-07-01 14:21:31 +00:00
sandbox::SandboxInterfaceInfo sandbox_info = {0};
content::InitializeSandboxInfo(&sandbox_info);
atom::AtomMainDelegate delegate;
2014-06-30 03:44:05 +00:00
content::ContentMainParams params(&delegate);
params.instance = instance;
params.sandbox_info = &sandbox_info;
atom::AtomCommandLine::Init(argc, argv);
2016-06-02 10:49:36 +00:00
atom::AtomCommandLine::InitW(argc, wargv);
2014-06-30 03:44:05 +00:00
return content::ContentMain(params);
2013-07-01 14:21:31 +00:00
}
2013-12-31 11:51:17 +00:00
#elif defined(OS_LINUX) // defined(OS_WIN)
int main(int argc, const char* argv[]) {
2016-05-31 01:19:13 +00:00
if (IsEnvSet(kRunAsNode)) {
2015-01-17 00:12:12 +00:00
base::i18n::InitializeICU();
2015-09-03 02:28:50 +00:00
base::AtExitManager atexit_manager;
return atom::NodeMain(argc, const_cast<char**>(argv));
2015-01-17 00:12:12 +00:00
}
2013-12-31 11:51:17 +00:00
atom::AtomMainDelegate delegate;
2014-06-30 03:44:05 +00:00
content::ContentMainParams params(&delegate);
params.argc = argc;
params.argv = argv;
atom::AtomCommandLine::Init(argc, argv);
2014-06-30 03:44:05 +00:00
return content::ContentMain(params);
2013-12-31 11:51:17 +00:00
}
#else // defined(OS_LINUX)
2013-07-01 14:21:31 +00:00
2013-04-12 01:46:58 +00:00
int main(int argc, const char* argv[]) {
2016-05-31 01:19:13 +00:00
if (IsEnvSet(kRunAsNode)) {
return AtomInitializeICUandStartNode(argc, const_cast<char**>(argv));
2015-01-16 23:54:38 +00:00
}
2013-04-12 01:46:58 +00:00
return AtomMain(argc, argv);
}
2013-07-01 14:21:31 +00:00
2013-12-31 11:51:17 +00:00
#endif // defined(OS_MACOSX)