2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-07-28 08:00:15 +00:00
|
|
|
// 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/browser/javascript_environment.h"
|
2014-07-28 08:00:15 +00:00
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
#include <memory>
|
2015-11-13 04:22:08 +00:00
|
|
|
#include <string>
|
2020-08-21 16:25:30 +00:00
|
|
|
#include <unordered_set>
|
|
|
|
#include <utility>
|
2015-11-13 04:22:08 +00:00
|
|
|
|
2021-11-24 08:45:59 +00:00
|
|
|
#include "base/allocator/partition_alloc_features.h"
|
2023-10-24 15:24:20 +00:00
|
|
|
#include "base/allocator/partition_allocator/src/partition_alloc/partition_alloc.h"
|
2022-04-22 22:36:22 +00:00
|
|
|
#include "base/bits.h"
|
2015-10-22 10:50:48 +00:00
|
|
|
#include "base/command_line.h"
|
2021-11-24 08:45:59 +00:00
|
|
|
#include "base/feature_list.h"
|
2020-07-22 05:34:34 +00:00
|
|
|
#include "base/task/current_thread.h"
|
2023-02-03 11:43:42 +00:00
|
|
|
#include "base/task/single_thread_task_runner.h"
|
2019-04-20 17:20:37 +00:00
|
|
|
#include "base/task/thread_pool/initialization_util.h"
|
2017-05-14 10:25:07 +00:00
|
|
|
#include "gin/array_buffer.h"
|
2015-08-04 08:39:37 +00:00
|
|
|
#include "gin/v8_initializer.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/microtasks_runner.h"
|
2020-03-30 01:32:02 +00:00
|
|
|
#include "shell/common/gin_helper/cleaned_up_at_exit.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2021-11-24 08:45:59 +00:00
|
|
|
#include "third_party/blink/public/common/switches.h"
|
2022-12-05 17:07:49 +00:00
|
|
|
#include "third_party/electron_node/src/node_wasm_web_api.h"
|
2017-02-28 00:56:09 +00:00
|
|
|
|
2020-04-27 18:38:43 +00:00
|
|
|
namespace {
|
|
|
|
v8::Isolate* g_isolate;
|
|
|
|
}
|
|
|
|
|
2014-07-28 08:00:15 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2023-02-09 08:48:49 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
gin::IsolateHolder CreateIsolateHolder(v8::Isolate* isolate) {
|
|
|
|
std::unique_ptr<v8::Isolate::CreateParams> create_params =
|
|
|
|
gin::IsolateHolder::getDefaultIsolateParams();
|
|
|
|
// Align behavior with V8 Isolate default for Node.js.
|
|
|
|
// This is necessary for important aspects of Node.js
|
|
|
|
// including heap and cpu profilers to function properly.
|
|
|
|
|
2024-09-25 11:19:39 +00:00
|
|
|
return gin::IsolateHolder(base::SingleThreadTaskRunner::GetCurrentDefault(),
|
|
|
|
gin::IsolateHolder::kSingleThread,
|
|
|
|
gin::IsolateHolder::IsolateType::kUtility,
|
|
|
|
std::move(create_params),
|
|
|
|
gin::IsolateHolder::IsolateCreationMode::kNormal,
|
|
|
|
nullptr, nullptr, isolate);
|
2023-02-09 08:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2022-12-05 17:07:49 +00:00
|
|
|
JavascriptEnvironment::JavascriptEnvironment(uv_loop_t* event_loop,
|
|
|
|
bool setup_wasm_streaming)
|
2023-08-17 04:06:24 +00:00
|
|
|
: isolate_holder_{CreateIsolateHolder(
|
|
|
|
Initialize(event_loop, setup_wasm_streaming))},
|
|
|
|
isolate_{isolate_holder_.isolate()},
|
|
|
|
locker_{isolate_} {
|
2020-03-11 01:16:58 +00:00
|
|
|
isolate_->Enter();
|
2023-02-09 08:48:49 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
v8::HandleScope scope(isolate_);
|
|
|
|
auto context = node::NewContext(isolate_);
|
2023-02-09 08:48:49 +00:00
|
|
|
CHECK(!context.IsEmpty());
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
context->Enter();
|
|
|
|
}
|
2014-07-28 08:00:15 +00:00
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
JavascriptEnvironment::~JavascriptEnvironment() {
|
2021-04-06 23:10:34 +00:00
|
|
|
DCHECK_NE(platform_, nullptr);
|
|
|
|
|
2020-03-11 01:16:58 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate_);
|
2023-02-09 08:48:49 +00:00
|
|
|
isolate_->GetCurrentContext()->Exit();
|
2020-03-11 01:16:58 +00:00
|
|
|
}
|
|
|
|
isolate_->Exit();
|
2020-04-27 18:38:43 +00:00
|
|
|
g_isolate = nullptr;
|
2021-04-06 23:10:34 +00:00
|
|
|
|
|
|
|
platform_->UnregisterIsolate(isolate_);
|
2020-03-11 01:16:58 +00:00
|
|
|
}
|
2018-04-17 23:37:22 +00:00
|
|
|
|
2022-12-05 17:07:49 +00:00
|
|
|
v8::Isolate* JavascriptEnvironment::Initialize(uv_loop_t* event_loop,
|
|
|
|
bool setup_wasm_streaming) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* cmd = base::CommandLine::ForCurrentProcess();
|
2015-11-13 04:22:08 +00:00
|
|
|
// --js-flags.
|
2024-06-11 13:32:16 +00:00
|
|
|
std::string js_flags = "--no-freeze-flags-after-init ";
|
|
|
|
js_flags.append(cmd->GetSwitchValueASCII(blink::switches::kJavaScriptFlags));
|
|
|
|
v8::V8::SetFlagsFromString(js_flags.c_str(), js_flags.size());
|
2015-11-12 09:00:41 +00:00
|
|
|
|
2017-12-08 00:23:17 +00: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 04:37:50 +00:00
|
|
|
auto* tracing_agent = node::CreateAgent();
|
2024-04-19 15:07:36 +00:00
|
|
|
auto* tracing_controller = tracing_agent->GetTracingController();
|
2018-10-26 04:37:50 +00:00
|
|
|
node::tracing::TraceEventHelper::SetAgent(tracing_agent);
|
2022-11-10 21:31:20 +00:00
|
|
|
platform_ = node::MultiIsolatePlatform::Create(
|
2019-05-03 19:06:10 +00:00
|
|
|
base::RecommendedMaxNumberOfThreadsInThreadGroup(3, 8, 0.1, 0),
|
2023-02-08 07:03:47 +00:00
|
|
|
tracing_controller, gin::V8Platform::GetCurrentPageAllocator());
|
2018-10-05 18:40:17 +00:00
|
|
|
|
2022-11-10 21:31:20 +00:00
|
|
|
v8::V8::InitializePlatform(platform_.get());
|
2022-06-01 06:12:47 +00:00
|
|
|
gin::IsolateHolder::Initialize(gin::IsolateHolder::kNonStrictMode,
|
|
|
|
gin::ArrayBufferAllocator::SharedInstance(),
|
|
|
|
nullptr /* external_reference_table */,
|
|
|
|
js_flags, nullptr /* fatal_error_callback */,
|
|
|
|
nullptr /* oom_error_callback */,
|
|
|
|
false /* create_v8_platform */);
|
2018-10-05 18:40:17 +00:00
|
|
|
|
|
|
|
v8::Isolate* isolate = v8::Isolate::Allocate();
|
|
|
|
platform_->RegisterIsolate(isolate, event_loop);
|
2022-12-05 17:07:49 +00:00
|
|
|
|
|
|
|
// This is done here because V8 checks for the callback in NewContext.
|
|
|
|
// Our setup order doesn't allow for calling SetupIsolateForNode
|
|
|
|
// before NewContext without polluting JavaScriptEnvironment with
|
|
|
|
// Node.js logic and so we conditionally do it here to keep
|
|
|
|
// concerns separate.
|
|
|
|
if (setup_wasm_streaming) {
|
|
|
|
isolate->SetWasmStreamingCallback(
|
|
|
|
node::wasm_web_api::StartStreamingCompilation);
|
|
|
|
}
|
|
|
|
|
2020-04-27 18:38:43 +00:00
|
|
|
g_isolate = isolate;
|
2018-10-05 18:40:17 +00:00
|
|
|
|
|
|
|
return isolate;
|
|
|
|
}
|
|
|
|
|
2020-04-27 18:38:43 +00:00
|
|
|
// static
|
|
|
|
v8::Isolate* JavascriptEnvironment::GetIsolate() {
|
|
|
|
CHECK(g_isolate);
|
|
|
|
return g_isolate;
|
|
|
|
}
|
|
|
|
|
2022-10-20 05:49:49 +00:00
|
|
|
void JavascriptEnvironment::CreateMicrotasksRunner() {
|
2018-10-15 15:26:47 +00:00
|
|
|
DCHECK(!microtasks_runner_);
|
2019-09-16 22:12:00 +00:00
|
|
|
microtasks_runner_ = std::make_unique<MicrotasksRunner>(isolate());
|
2020-07-22 05:34:34 +00:00
|
|
|
base::CurrentThread::Get()->AddTaskObserver(microtasks_runner_.get());
|
2018-10-15 15:26:47 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 05:49:49 +00:00
|
|
|
void JavascriptEnvironment::DestroyMicrotasksRunner() {
|
2018-10-15 15:26:47 +00:00
|
|
|
DCHECK(microtasks_runner_);
|
2020-07-20 19:13:33 +00:00
|
|
|
{
|
|
|
|
v8::HandleScope scope(isolate_);
|
|
|
|
gin_helper::CleanedUpAtExit::DoCleanup();
|
|
|
|
}
|
2020-07-22 05:34:34 +00:00
|
|
|
base::CurrentThread::Get()->RemoveTaskObserver(microtasks_runner_.get());
|
2015-05-22 07:30:02 +00:00
|
|
|
}
|
|
|
|
|
2014-07-28 08:00:15 +00:00
|
|
|
} // namespace electron
|