2017-03-07 10:35:03 +00: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 20:46:59 +00:00
|
|
|
#include "shell/renderer/web_worker_observer.h"
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2023-11-28 21:40:12 +00:00
|
|
|
#include <set>
|
2023-01-31 11:29:29 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "base/no_destructor.h"
|
2023-08-23 13:56:16 +00:00
|
|
|
#include "base/ranges/algorithm.h"
|
2017-03-07 10:35:03 +00:00
|
|
|
#include "base/threading/thread_local.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/api/electron_bindings.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/gin_helper/event_emitter_caller.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_bindings.h"
|
|
|
|
#include "shell/common/node_includes.h"
|
2017-03-07 10:35:03 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2023-01-31 11:29:29 +00:00
|
|
|
static base::NoDestructor<base::ThreadLocalOwnedPointer<WebWorkerObserver>>
|
|
|
|
lazy_tls;
|
2017-03-07 10:35:03 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
|
|
|
WebWorkerObserver* WebWorkerObserver::GetCurrent() {
|
2023-01-31 11:29:29 +00:00
|
|
|
return lazy_tls->Get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
WebWorkerObserver* WebWorkerObserver::Create() {
|
|
|
|
auto obs = std::make_unique<WebWorkerObserver>();
|
|
|
|
auto* obs_raw = obs.get();
|
|
|
|
lazy_tls->Set(std::move(obs));
|
|
|
|
return obs_raw;
|
2017-03-07 10:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WebWorkerObserver::WebWorkerObserver()
|
2019-05-03 18:11:41 +00:00
|
|
|
: node_bindings_(
|
2020-10-27 17:51:45 +00:00
|
|
|
NodeBindings::Create(NodeBindings::BrowserEnvironment::kWorker)),
|
2021-06-08 02:00:05 +00:00
|
|
|
electron_bindings_(
|
2023-01-31 11:29:29 +00:00
|
|
|
std::make_unique<ElectronBindings>(node_bindings_->uv_loop())) {}
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2023-07-18 08:41:50 +00:00
|
|
|
WebWorkerObserver::~WebWorkerObserver() = default;
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2020-07-28 01:48:37 +00:00
|
|
|
void WebWorkerObserver::WorkerScriptReadyForEvaluation(
|
|
|
|
v8::Local<v8::Context> worker_context) {
|
2019-07-16 01:58:39 +00:00
|
|
|
v8::Context::Scope context_scope(worker_context);
|
2021-05-14 01:21:36 +00:00
|
|
|
auto* isolate = worker_context->GetIsolate();
|
|
|
|
v8::MicrotasksScope microtasks_scope(
|
2023-01-11 16:59:32 +00:00
|
|
|
isolate, worker_context->GetMicrotaskQueue(),
|
|
|
|
v8::MicrotasksScope::kDoNotRunMicrotasks);
|
2017-03-07 10:59:48 +00:00
|
|
|
|
2017-03-10 06:22:25 +00:00
|
|
|
// Start the embed thread.
|
2022-03-30 03:09:42 +00:00
|
|
|
node_bindings_->PrepareEmbedThread();
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2021-10-19 13:04:48 +00:00
|
|
|
// Setup node tracing controller.
|
|
|
|
if (!node::tracing::TraceEventHelper::GetAgent())
|
|
|
|
node::tracing::TraceEventHelper::SetAgent(node::CreateAgent());
|
|
|
|
|
2017-03-07 10:35:03 +00:00
|
|
|
// Setup node environment for each window.
|
2022-11-10 21:31:20 +00:00
|
|
|
v8::Maybe<bool> initialized = node::InitializeContext(worker_context);
|
|
|
|
CHECK(!initialized.IsNothing() && initialized.FromJust());
|
2023-08-23 13:56:16 +00:00
|
|
|
std::shared_ptr<node::Environment> env =
|
2020-02-25 16:46:08 +00:00
|
|
|
node_bindings_->CreateEnvironment(worker_context, nullptr);
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2024-06-20 15:01:50 +00:00
|
|
|
// We need to use the Blink implementation of fetch in web workers
|
|
|
|
// Node.js deletes the global fetch function when their fetch implementation
|
|
|
|
// is disabled, so we need to save and re-add it after the Node.js environment
|
|
|
|
// is loaded. See corresponding change in node/init.ts.
|
2024-04-17 16:39:13 +00:00
|
|
|
v8::Local<v8::Object> global = worker_context->Global();
|
2024-06-20 15:01:50 +00:00
|
|
|
|
|
|
|
std::vector<std::string> keys = {"fetch", "Response", "FormData", "Request",
|
|
|
|
"Headers"};
|
|
|
|
for (const auto& key : keys) {
|
|
|
|
v8::MaybeLocal<v8::Value> value =
|
|
|
|
global->Get(worker_context, gin::StringToV8(isolate, key.c_str()));
|
|
|
|
if (!value.IsEmpty()) {
|
|
|
|
std::string blink_key = "blink" + key;
|
|
|
|
global
|
|
|
|
->Set(worker_context, gin::StringToV8(isolate, blink_key.c_str()),
|
|
|
|
value.ToLocalChecked())
|
|
|
|
.Check();
|
|
|
|
}
|
|
|
|
}
|
2024-04-17 16:39:13 +00:00
|
|
|
|
2017-03-07 10:35:03 +00:00
|
|
|
// Add Electron extended APIs.
|
2019-03-18 19:37:06 +00:00
|
|
|
electron_bindings_->BindTo(env->isolate(), env->process_object());
|
2017-03-07 10:35:03 +00:00
|
|
|
|
|
|
|
// Load everything.
|
2023-08-23 13:56:16 +00:00
|
|
|
node_bindings_->LoadEnvironment(env.get());
|
2017-03-07 10:35:03 +00:00
|
|
|
|
|
|
|
// Make uv loop being wrapped by window context.
|
2023-08-23 13:56:16 +00:00
|
|
|
node_bindings_->set_uv_env(env.get());
|
2017-03-07 10:35:03 +00:00
|
|
|
|
|
|
|
// Give the node loop a run to make sure everything is ready.
|
2022-03-30 03:09:42 +00:00
|
|
|
node_bindings_->StartPolling();
|
2023-08-23 13:56:16 +00:00
|
|
|
|
|
|
|
// Keep the environment alive until we free it in ContextWillDestroy()
|
|
|
|
environments_.insert(std::move(env));
|
2017-03-07 10:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebWorkerObserver::ContextWillDestroy(v8::Local<v8::Context> context) {
|
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
2023-11-28 21:40:12 +00:00
|
|
|
if (env) {
|
|
|
|
v8::Context::Scope context_scope(env->context());
|
2019-09-06 05:52:54 +00:00
|
|
|
gin_helper::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2023-11-28 21:40:12 +00:00
|
|
|
}
|
2017-03-07 10:35:03 +00:00
|
|
|
|
2023-07-18 08:41:50 +00: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`
|
|
|
|
v8::MicrotaskQueue* microtask_queue = context->GetMicrotaskQueue();
|
|
|
|
auto old_policy = microtask_queue->microtasks_policy();
|
|
|
|
DCHECK_EQ(microtask_queue->GetMicrotasksScopeDepth(), 0);
|
|
|
|
microtask_queue->set_microtasks_policy(v8::MicrotasksPolicy::kExplicit);
|
|
|
|
|
2024-01-05 11:18:31 +00:00
|
|
|
base::EraseIf(environments_,
|
2023-08-23 13:56:16 +00:00
|
|
|
[env](auto const& item) { return item.get() == env; });
|
2023-07-18 08:41:50 +00:00
|
|
|
|
|
|
|
microtask_queue->set_microtasks_policy(old_policy);
|
|
|
|
|
|
|
|
// ElectronBindings is tracking node environments.
|
|
|
|
electron_bindings_->EnvironmentDestroyed(env);
|
|
|
|
|
2023-01-31 11:29:29 +00:00
|
|
|
if (lazy_tls->Get())
|
|
|
|
lazy_tls->Set(nullptr);
|
2017-03-07 10:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace electron
|