2017-03-07 19:35:03 +09:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// 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/renderer/web_worker_observer.h"
|
2017-03-07 19:35:03 +09:00
|
|
|
|
|
|
|
#include "base/lazy_instance.h"
|
|
|
|
#include "base/threading/thread_local.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/api/electron_bindings.h"
|
2019-09-06 14:52:54 +09:00
|
|
|
#include "shell/common/gin_helper/event_emitter_caller.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2017-03-07 19:35:03 +09:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2017-03-07 19:35:03 +09:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
static base::LazyInstance<
|
|
|
|
base::ThreadLocalPointer<WebWorkerObserver>>::DestructorAtExit lazy_tls =
|
|
|
|
LAZY_INSTANCE_INITIALIZER;
|
2017-03-07 19:35:03 +09:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
|
|
|
WebWorkerObserver* WebWorkerObserver::GetCurrent() {
|
|
|
|
WebWorkerObserver* self = lazy_tls.Pointer()->Get();
|
|
|
|
return self ? self : new WebWorkerObserver;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebWorkerObserver::WebWorkerObserver()
|
2019-05-03 20:11:41 +02:00
|
|
|
: node_bindings_(
|
2020-10-27 18:51:45 +01:00
|
|
|
NodeBindings::Create(NodeBindings::BrowserEnvironment::kWorker)),
|
2021-06-07 19:00:05 -07:00
|
|
|
electron_bindings_(
|
|
|
|
std::make_unique<ElectronBindings>(node_bindings_->uv_loop())) {
|
2017-03-07 19:35:03 +09:00
|
|
|
lazy_tls.Pointer()->Set(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
WebWorkerObserver::~WebWorkerObserver() {
|
|
|
|
lazy_tls.Pointer()->Set(nullptr);
|
2022-03-17 02:54:45 +09:00
|
|
|
// Destroying the node environment will also run the uv loop,
|
|
|
|
// Node.js expects `kExplicit` microtasks policy and will run microtasks
|
|
|
|
// checkpoints after every call into JavaScript. Since we use a different
|
|
|
|
// policy in the renderer - switch to `kExplicit`
|
2023-01-12 01:59:32 +09:00
|
|
|
v8::MicrotaskQueue* microtask_queue =
|
|
|
|
node_bindings_->uv_env()->context()->GetMicrotaskQueue();
|
|
|
|
auto old_policy = microtask_queue->microtasks_policy();
|
|
|
|
DCHECK_EQ(microtask_queue->GetMicrotasksScopeDepth(), 0);
|
|
|
|
microtask_queue->set_microtasks_policy(v8::MicrotasksPolicy::kExplicit);
|
2017-03-10 17:33:27 +09:00
|
|
|
node::FreeEnvironment(node_bindings_->uv_env());
|
2019-11-02 15:14:11 -07:00
|
|
|
node::FreeIsolateData(node_bindings_->isolate_data());
|
2023-01-12 01:59:32 +09:00
|
|
|
microtask_queue->set_microtasks_policy(old_policy);
|
2017-03-07 19:35:03 +09:00
|
|
|
}
|
|
|
|
|
2020-07-27 18:48:37 -07:00
|
|
|
void WebWorkerObserver::WorkerScriptReadyForEvaluation(
|
|
|
|
v8::Local<v8::Context> worker_context) {
|
2019-07-15 18:58:39 -07:00
|
|
|
v8::Context::Scope context_scope(worker_context);
|
2021-05-13 18:21:36 -07:00
|
|
|
auto* isolate = worker_context->GetIsolate();
|
|
|
|
v8::MicrotasksScope microtasks_scope(
|
2023-01-12 01:59:32 +09:00
|
|
|
isolate, worker_context->GetMicrotaskQueue(),
|
|
|
|
v8::MicrotasksScope::kDoNotRunMicrotasks);
|
2017-03-07 19:59:48 +09:00
|
|
|
|
2017-03-10 15:22:25 +09:00
|
|
|
// Start the embed thread.
|
2022-03-30 12:09:42 +09:00
|
|
|
node_bindings_->PrepareEmbedThread();
|
2017-03-07 19:35:03 +09:00
|
|
|
|
2021-10-19 15:04:48 +02:00
|
|
|
// Setup node tracing controller.
|
|
|
|
if (!node::tracing::TraceEventHelper::GetAgent())
|
|
|
|
node::tracing::TraceEventHelper::SetAgent(node::CreateAgent());
|
|
|
|
|
2017-03-07 19:35:03 +09:00
|
|
|
// Setup node environment for each window.
|
2022-11-10 22:31:20 +01:00
|
|
|
v8::Maybe<bool> initialized = node::InitializeContext(worker_context);
|
|
|
|
CHECK(!initialized.IsNothing() && initialized.FromJust());
|
2019-07-18 16:54:23 -07:00
|
|
|
node::Environment* env =
|
2020-02-25 16:46:08 +00:00
|
|
|
node_bindings_->CreateEnvironment(worker_context, nullptr);
|
2017-03-07 19:35:03 +09:00
|
|
|
|
|
|
|
// Add Electron extended APIs.
|
2019-03-18 12:37:06 -07:00
|
|
|
electron_bindings_->BindTo(env->isolate(), env->process_object());
|
2017-03-07 19:35:03 +09:00
|
|
|
|
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
|
|
|
// Make uv loop being wrapped by window context.
|
|
|
|
node_bindings_->set_uv_env(env);
|
|
|
|
|
|
|
|
// Give the node loop a run to make sure everything is ready.
|
2022-03-30 12:09:42 +09:00
|
|
|
node_bindings_->StartPolling();
|
2017-03-07 19:35:03 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebWorkerObserver::ContextWillDestroy(v8::Local<v8::Context> context) {
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
if (env)
|
2019-09-06 14:52:54 +09:00
|
|
|
gin_helper::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2017-03-07 19:35:03 +09:00
|
|
|
|
2017-03-10 15:35:44 +09:00
|
|
|
delete this;
|
2017-03-07 19:35:03 +09:00
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|