2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-07-28 16:00:15 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/javascript_environment.h"
|
2014-07-28 16:00:15 +08:00
|
|
|
|
2015-11-13 12:22:08 +08:00
|
|
|
#include <string>
|
|
|
|
|
2015-10-22 16:20:48 +05:30
|
|
|
#include "base/command_line.h"
|
2016-06-24 14:45:31 +09:00
|
|
|
#include "base/message_loop/message_loop.h"
|
2019-04-20 13:20:37 -04:00
|
|
|
#include "base/task/thread_pool/initialization_util.h"
|
2017-04-11 15:01:57 +09:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2015-11-13 12:22:08 +08:00
|
|
|
#include "content/public/common/content_switches.h"
|
2017-05-14 19:25:07 +09:00
|
|
|
#include "gin/array_buffer.h"
|
2015-08-04 16:39:37 +08:00
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/microtasks_runner.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2018-05-01 16:22:39 -07:00
|
|
|
#include "tracing/trace_event.h"
|
2017-02-28 09:56:09 +09:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2014-07-28 16:00:15 +08:00
|
|
|
|
2018-10-06 00:10:17 +05:30
|
|
|
JavascriptEnvironment::JavascriptEnvironment(uv_loop_t* event_loop)
|
|
|
|
: isolate_(Initialize(event_loop)),
|
2018-10-03 17:06:40 +10:00
|
|
|
isolate_holder_(base::ThreadTaskRunnerHandle::Get(),
|
2018-10-06 00:10:17 +05:30
|
|
|
gin::IsolateHolder::kSingleThread,
|
|
|
|
gin::IsolateHolder::kAllowAtomicsWait,
|
2018-10-26 01:00:45 +05:30
|
|
|
gin::IsolateHolder::IsolateType::kUtility,
|
2018-10-06 00:10:17 +05:30
|
|
|
gin::IsolateHolder::IsolateCreationMode::kNormal,
|
|
|
|
isolate_),
|
2014-09-01 16:41:26 +08:00
|
|
|
isolate_scope_(isolate_),
|
2014-07-28 16:00:15 +08:00
|
|
|
locker_(isolate_),
|
|
|
|
handle_scope_(isolate_),
|
2019-07-15 18:58:39 -07:00
|
|
|
context_(isolate_, node::NewContext(isolate_)),
|
2018-10-06 00:10:17 +05:30
|
|
|
context_scope_(v8::Local<v8::Context>::New(isolate_, context_)) {}
|
2014-07-28 16:00:15 +08:00
|
|
|
|
2018-04-17 16:37:22 -07:00
|
|
|
JavascriptEnvironment::~JavascriptEnvironment() = default;
|
|
|
|
|
2018-10-06 00:10:17 +05:30
|
|
|
v8::Isolate* JavascriptEnvironment::Initialize(uv_loop_t* event_loop) {
|
2018-04-17 15:41:47 -07:00
|
|
|
auto* cmd = base::CommandLine::ForCurrentProcess();
|
2015-11-12 01:00:41 -08:00
|
|
|
|
2015-11-13 12:22:08 +08:00
|
|
|
// --js-flags.
|
|
|
|
std::string js_flags = cmd->GetSwitchValueASCII(switches::kJavaScriptFlags);
|
|
|
|
if (!js_flags.empty())
|
|
|
|
v8::V8::SetFlagsFromString(js_flags.c_str(), js_flags.size());
|
2015-11-12 01:00:41 -08:00
|
|
|
|
2017-12-08 09:23:17 +09:00
|
|
|
// The V8Platform of gin relies on Chromium's task schedule, which has not
|
|
|
|
// been started at this point, so we have to rely on Node's V8Platform.
|
2018-10-26 15:37:50 +11:00
|
|
|
auto* tracing_agent = node::CreateAgent();
|
|
|
|
auto* tracing_controller = tracing_agent->GetTracingController();
|
|
|
|
node::tracing::TraceEventHelper::SetAgent(tracing_agent);
|
2017-12-08 09:23:17 +09:00
|
|
|
platform_ = node::CreatePlatform(
|
2019-05-03 12:06:10 -07:00
|
|
|
base::RecommendedMaxNumberOfThreadsInThreadGroup(3, 8, 0.1, 0),
|
2018-09-08 01:42:57 -07:00
|
|
|
tracing_controller);
|
2018-10-06 00:10:17 +05:30
|
|
|
|
2017-12-08 09:23:17 +09:00
|
|
|
v8::V8::InitializePlatform(platform_);
|
2019-01-22 02:13:53 +05:30
|
|
|
gin::IsolateHolder::Initialize(gin::IsolateHolder::kNonStrictMode,
|
|
|
|
gin::ArrayBufferAllocator::SharedInstance(),
|
|
|
|
nullptr /* external_reference_table */,
|
|
|
|
false /* create_v8_platform */);
|
2018-10-06 00:10:17 +05:30
|
|
|
|
|
|
|
v8::Isolate* isolate = v8::Isolate::Allocate();
|
|
|
|
platform_->RegisterIsolate(isolate, event_loop);
|
|
|
|
|
|
|
|
return isolate;
|
|
|
|
}
|
|
|
|
|
2018-10-15 08:26:47 -07:00
|
|
|
void JavascriptEnvironment::OnMessageLoopCreated() {
|
|
|
|
DCHECK(!microtasks_runner_);
|
|
|
|
microtasks_runner_.reset(new MicrotasksRunner(isolate()));
|
|
|
|
base::MessageLoopCurrent::Get()->AddTaskObserver(microtasks_runner_.get());
|
|
|
|
}
|
|
|
|
|
2018-10-06 00:10:17 +05:30
|
|
|
void JavascriptEnvironment::OnMessageLoopDestroying() {
|
2018-10-15 08:26:47 -07:00
|
|
|
DCHECK(microtasks_runner_);
|
|
|
|
base::MessageLoopCurrent::Get()->RemoveTaskObserver(microtasks_runner_.get());
|
2019-04-20 03:01:45 +09:00
|
|
|
platform_->DrainTasks(isolate_);
|
2018-10-06 00:10:17 +05:30
|
|
|
platform_->UnregisterIsolate(isolate_);
|
2015-05-22 15:30:02 +08:00
|
|
|
}
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
NodeEnvironment::NodeEnvironment(node::Environment* env) : env_(env) {}
|
2017-02-28 09:56:09 +09:00
|
|
|
|
|
|
|
NodeEnvironment::~NodeEnvironment() {
|
|
|
|
node::FreeEnvironment(env_);
|
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|