2015-03-13 00:03:16 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/app/node_main.h"
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2019-07-29 00:46:35 +00:00
|
|
|
#include <string>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2016-05-23 04:01:47 +00:00
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/feature_list.h"
|
2019-09-18 19:58:00 +00:00
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
2016-07-04 06:08:55 +00:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2019-06-19 21:31:55 +00:00
|
|
|
#include "electron/electron_version.h"
|
2015-03-13 00:03:16 +00:00
|
|
|
#include "gin/array_buffer.h"
|
|
|
|
#include "gin/public/isolate_holder.h"
|
2015-08-04 08:39:37 +00:00
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/app/uv_task_runner.h"
|
|
|
|
#include "shell/browser/javascript_environment.h"
|
|
|
|
#include "shell/browser/node_debugger.h"
|
|
|
|
#include "shell/common/api/electron_bindings.h"
|
|
|
|
#include "shell/common/crash_reporter/crash_reporter.h"
|
2019-10-18 00:31:29 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2016-12-02 02:19:57 +00:00
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#if defined(_WIN64)
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/crash_reporter/crash_reporter_win.h"
|
2019-06-13 06:42:21 +00:00
|
|
|
#endif
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2019-07-29 00:46:35 +00:00
|
|
|
#if !defined(OS_LINUX)
|
|
|
|
void AddExtraParameter(const std::string& key, const std::string& value) {
|
|
|
|
crash_reporter::CrashReporter::GetInstance()->AddExtraParameter(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveExtraParameter(const std::string& key) {
|
|
|
|
crash_reporter::CrashReporter::GetInstance()->RemoveExtraParameter(key);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
int NodeMain(int argc, char* argv[]) {
|
2015-08-27 05:16:19 +00:00
|
|
|
base::CommandLine::Init(argc, argv);
|
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
int exit_code = 1;
|
|
|
|
{
|
2015-09-03 02:28:50 +00:00
|
|
|
// Feed gin::PerIsolateData with a task runner.
|
2015-10-20 23:34:15 +00:00
|
|
|
argv = uv_setup_args(argc, argv);
|
2015-09-03 02:28:50 +00:00
|
|
|
uv_loop_t* loop = uv_default_loop();
|
|
|
|
scoped_refptr<UvTaskRunner> uv_task_runner(new UvTaskRunner(loop));
|
|
|
|
base::ThreadTaskRunnerHandle handle(uv_task_runner);
|
|
|
|
|
2016-05-23 04:01:47 +00:00
|
|
|
// Initialize feature list.
|
2018-06-18 07:32:55 +00:00
|
|
|
auto feature_list = std::make_unique<base::FeatureList>();
|
2016-05-23 04:01:47 +00:00
|
|
|
feature_list->InitializeFromCommandLine("", "");
|
|
|
|
base::FeatureList::SetInstance(std::move(feature_list));
|
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
#if defined(_WIN64)
|
|
|
|
crash_reporter::CrashReporterWin::SetUnhandledExceptionFilter();
|
|
|
|
#endif
|
2015-10-20 23:34:15 +00:00
|
|
|
|
2018-01-06 15:58:24 +00:00
|
|
|
// Explicitly register electron's builtin modules.
|
|
|
|
NodeBindings::RegisterBuiltinModules();
|
|
|
|
|
2015-10-20 23:34:15 +00:00
|
|
|
int exec_argc;
|
|
|
|
const char** exec_argv;
|
|
|
|
node::Init(&argc, const_cast<const char**>(argv), &exec_argc, &exec_argv);
|
|
|
|
|
2019-07-23 18:40:06 +00:00
|
|
|
gin::V8Initializer::LoadV8Snapshot(
|
|
|
|
gin::V8Initializer::V8SnapshotFileType::kWithAdditionalContext);
|
|
|
|
|
|
|
|
// V8 requires a task scheduler apparently
|
|
|
|
base::ThreadPoolInstance::CreateAndStartWithDefaultParams("Electron");
|
|
|
|
|
|
|
|
// Initialize gin::IsolateHolder.
|
|
|
|
JavascriptEnvironment gin_env(loop);
|
|
|
|
|
2019-10-08 07:03:04 +00:00
|
|
|
node::IsolateData* isolate_data =
|
|
|
|
node::CreateIsolateData(gin_env.isolate(), loop, gin_env.platform());
|
|
|
|
CHECK_NE(nullptr, isolate_data);
|
|
|
|
|
|
|
|
node::Environment* env =
|
|
|
|
node::CreateEnvironment(isolate_data, gin_env.context(), argc, argv,
|
|
|
|
exec_argc, exec_argv, false);
|
|
|
|
CHECK_NE(nullptr, env);
|
2015-03-13 00:03:16 +00:00
|
|
|
|
2017-06-12 18:53:11 +00:00
|
|
|
// Enable support for v8 inspector.
|
|
|
|
NodeDebugger node_debugger(env);
|
2018-09-04 09:15:17 +00:00
|
|
|
node_debugger.Start();
|
2017-06-12 18:53:11 +00:00
|
|
|
|
2019-07-23 19:41:48 +00:00
|
|
|
node::BootstrapEnvironment(env);
|
|
|
|
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::Dictionary process(gin_env.isolate(), env->process_object());
|
2016-12-02 02:19:57 +00:00
|
|
|
#if defined(OS_WIN)
|
2019-03-18 19:37:06 +00:00
|
|
|
process.SetMethod("log", &ElectronBindings::Log);
|
2016-10-12 20:01:17 +00:00
|
|
|
#endif
|
2019-03-18 19:37:06 +00:00
|
|
|
process.SetMethod("crash", &ElectronBindings::Crash);
|
2015-04-20 06:10:15 +00:00
|
|
|
|
2017-01-24 21:58:39 +00:00
|
|
|
// Setup process.crashReporter.start in child node processes
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::Dictionary reporter =
|
|
|
|
gin::Dictionary::CreateEmpty(gin_env.isolate());
|
2017-01-24 21:58:39 +00:00
|
|
|
reporter.SetMethod("start", &crash_reporter::CrashReporter::StartInstance);
|
2019-07-29 00:46:35 +00:00
|
|
|
|
|
|
|
#if !defined(OS_LINUX)
|
|
|
|
reporter.SetMethod("addExtraParameter", &AddExtraParameter);
|
|
|
|
reporter.SetMethod("removeExtraParameter", &RemoveExtraParameter);
|
|
|
|
#endif
|
|
|
|
|
2017-01-24 21:58:39 +00:00
|
|
|
process.Set("crashReporter", reporter);
|
2016-12-09 09:44:12 +00:00
|
|
|
|
2019-10-18 00:31:29 +00:00
|
|
|
gin_helper::Dictionary versions;
|
2019-01-30 06:13:18 +00:00
|
|
|
if (process.Get("versions", &versions)) {
|
2019-06-17 20:37:55 +00:00
|
|
|
versions.SetReadOnly(ELECTRON_PROJECT_NAME, ELECTRON_VERSION_STRING);
|
2019-01-30 06:13:18 +00:00
|
|
|
}
|
|
|
|
|
2016-10-12 16:33:28 +00:00
|
|
|
node::LoadEnvironment(env);
|
2016-10-11 23:55:57 +00:00
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
bool more;
|
|
|
|
do {
|
|
|
|
more = uv_run(env->event_loop(), UV_RUN_ONCE);
|
2018-09-17 21:38:54 +00:00
|
|
|
gin_env.platform()->DrainTasks(env->isolate());
|
2015-03-13 00:03:16 +00:00
|
|
|
if (more == false) {
|
|
|
|
node::EmitBeforeExit(env);
|
|
|
|
|
|
|
|
// Emit `beforeExit` if the loop became alive either after emitting
|
|
|
|
// event, or after running some callbacks.
|
|
|
|
more = uv_loop_alive(env->event_loop());
|
|
|
|
if (uv_run(env->event_loop(), UV_RUN_NOWAIT) != 0)
|
|
|
|
more = true;
|
|
|
|
}
|
|
|
|
} while (more == true);
|
|
|
|
|
2019-04-30 22:44:40 +00:00
|
|
|
node_debugger.Stop();
|
2015-03-13 00:03:16 +00:00
|
|
|
exit_code = node::EmitExit(env);
|
2019-07-23 21:56:22 +00:00
|
|
|
env->set_can_call_into_js(false);
|
2015-03-13 00:03:16 +00:00
|
|
|
node::RunAtExit(env);
|
|
|
|
|
2019-07-23 21:56:22 +00:00
|
|
|
v8::Isolate* isolate = env->isolate();
|
2016-07-21 07:43:21 +00:00
|
|
|
node::FreeEnvironment(env);
|
2019-10-08 07:03:04 +00:00
|
|
|
node::FreeIsolateData(isolate_data);
|
2019-07-23 21:56:22 +00:00
|
|
|
|
|
|
|
gin_env.platform()->DrainTasks(isolate);
|
|
|
|
gin_env.platform()->CancelPendingDelayedTasks(isolate);
|
|
|
|
gin_env.platform()->UnregisterIsolate(isolate);
|
2015-03-13 00:03:16 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 12:06:34 +00:00
|
|
|
// According to "src/gin/shell/gin_main.cc":
|
|
|
|
//
|
2019-04-20 17:20:37 +00:00
|
|
|
// gin::IsolateHolder waits for tasks running in ThreadPool in its
|
|
|
|
// destructor and thus must be destroyed before ThreadPool starts skipping
|
2017-10-26 12:06:34 +00:00
|
|
|
// CONTINUE_ON_SHUTDOWN tasks.
|
2019-06-04 03:44:12 +00:00
|
|
|
base::ThreadPoolInstance::Get()->Shutdown();
|
2017-10-26 12:06:34 +00:00
|
|
|
|
2015-03-13 00:03:16 +00:00
|
|
|
v8::V8::Dispose();
|
|
|
|
|
|
|
|
return exit_code;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|