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.
|
|
|
|
|
|
|
|
#include "atom/browser/javascript_environment.h"
|
|
|
|
|
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"
|
2017-12-08 09:23:17 +09:00
|
|
|
#include "base/task_scheduler/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"
|
2015-05-22 15:30:02 +08:00
|
|
|
|
2017-02-28 09:56:09 +09:00
|
|
|
#include "atom/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
|
|
|
|
2014-07-28 16:00:15 +08:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
JavascriptEnvironment::JavascriptEnvironment()
|
2015-05-22 15:30:02 +08:00
|
|
|
: initialized_(Initialize()),
|
2017-04-11 15:01:57 +09:00
|
|
|
isolate_holder_(base::ThreadTaskRunnerHandle::Get()),
|
2015-05-22 15:30:02 +08:00
|
|
|
isolate_(isolate_holder_.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_),
|
|
|
|
context_(isolate_, v8::Context::New(isolate_)),
|
2018-04-17 21:55:30 -04:00
|
|
|
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;
|
|
|
|
|
2016-06-24 14:45:31 +09:00
|
|
|
void JavascriptEnvironment::OnMessageLoopCreated() {
|
|
|
|
isolate_holder_.AddRunMicrotasksObserver();
|
|
|
|
}
|
|
|
|
|
|
|
|
void JavascriptEnvironment::OnMessageLoopDestroying() {
|
|
|
|
isolate_holder_.RemoveRunMicrotasksObserver();
|
|
|
|
}
|
|
|
|
|
2015-05-22 15:30:02 +08:00
|
|
|
bool JavascriptEnvironment::Initialize() {
|
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.
|
|
|
|
platform_ = node::CreatePlatform(
|
2018-01-06 07:58:24 -08:00
|
|
|
base::RecommendedMaxNumberOfThreadsInPool(3, 8, 0.1, 0), nullptr);
|
2017-12-08 09:23:17 +09:00
|
|
|
v8::V8::InitializePlatform(platform_);
|
2018-01-06 07:58:24 -08:00
|
|
|
node::tracing::TraceEventHelper::SetTracingController(
|
|
|
|
new v8::TracingController());
|
2018-04-17 21:55:30 -04:00
|
|
|
gin::IsolateHolder::Initialize(
|
|
|
|
gin::IsolateHolder::kNonStrictMode, gin::IsolateHolder::kStableV8Extras,
|
2018-04-12 15:32:43 +05:30
|
|
|
gin::ArrayBufferAllocator::SharedInstance(),
|
|
|
|
nullptr /* external_reference_table */, false /* create_v8_platform */);
|
2015-05-22 15:30:02 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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_);
|
|
|
|
}
|
|
|
|
|
2014-07-28 16:00:15 +08:00
|
|
|
} // namespace atom
|