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