mirror of
https://github.com/electron/electron.git
synced 2026-01-07 22:54:25 -05:00
* chore: bump chromium in DEPS to 144.0.7507.0
* chore: bump chromium in DEPS to 144.0.7508.0
* chore: update patches
* 7101838: [pathbuilder] Enforce immutable SkPath APIs globally
https://chromium-review.googlesource.com/c/chromium/src/+/7101838
* chore: update filenames.libcxx.gni
* [pathbuilder] Enforce immutable SkPath APIs globally
https://chromium-review.googlesource.com/c/chromium/src/+/7101838
* Reduce service_worker_info.h includes in headers
https://chromium-review.googlesource.com/c/chromium/src/+/7108401
* chore: bump chromium in DEPS to 144.0.7510.0
* chore: update patches
* Use internal popup menus for tabs in actor-controlled states
https://chromium-review.googlesource.com/c/chromium/src/+/7074751
* [api] Delete deprecated fields on v8::Isolate
https://chromium-review.googlesource.com/c/v8/v8/+/7081397
xref: 98d243aea0
* Fixup Reduce service_worker_info.h includes in headers
* Promote deprecation of v8::Context and v8::Object API methods
https://chromium-review.googlesource.com/c/v8/v8/+/7087956
* fixup Promote deprecation of v8::Context and v8::Object API methods
* chore: bump chromium in DEPS to 144.0.7512.1
* chore: update patches
* fixup [pathbuilder] Enforce immutable SkPath APIs global
* chore: update filenames.hunspell.gni
* fix deprecation of v8::Context and v8::Object API methods for nan
https://chromium-review.googlesource.com/c/v8/v8/+/7087956
* [PDF] Implement PdfHelpBubbleHandlerFactory
https://chromium-review.googlesource.com/c/chromium/src/+/7056325
also: [PDF Ink Signatures] Hook up IPH
https://chromium-review.googlesource.com/c/chromium/src/+/7056207
* Remove base/hash/md5.h
https://chromium-review.googlesource.com/c/chromium/src/+/7113738
* fixup for lint
* Remove deprecated interceptor callback types and AccessControl enum
https://chromium-review.googlesource.com/c/v8/v8/+/7112747
* fixup for lint
* fixup [PDF] Implement PdfHelpBubbleHandlerFactory
* use base::SHA1HashString instead of std::hash
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
138 lines
4.1 KiB
C++
138 lines
4.1 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_GIN_HELPER_TRACKABLE_OBJECT_H_
|
|
#define ELECTRON_SHELL_COMMON_GIN_HELPER_TRACKABLE_OBJECT_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "base/memory/weak_ptr.h"
|
|
#include "shell/common/gin_helper/cleaned_up_at_exit.h"
|
|
#include "shell/common/gin_helper/event_emitter.h"
|
|
#include "shell/common/key_weak_map.h"
|
|
|
|
namespace base {
|
|
class SupportsUserData;
|
|
}
|
|
|
|
namespace gin_helper {
|
|
|
|
// Users should use TrackableObject instead.
|
|
class TrackableObjectBase : public CleanedUpAtExit {
|
|
public:
|
|
TrackableObjectBase();
|
|
|
|
// disable copy
|
|
TrackableObjectBase(const TrackableObjectBase&) = delete;
|
|
TrackableObjectBase& operator=(const TrackableObjectBase&) = delete;
|
|
|
|
// The ID in weak map.
|
|
[[nodiscard]] constexpr int32_t weak_map_id() const { return weak_map_id_; }
|
|
|
|
// Wrap TrackableObject into a class that SupportsUserData.
|
|
void AttachAsUserData(base::SupportsUserData* wrapped);
|
|
|
|
// Get the weak_map_id from SupportsUserData.
|
|
static int32_t GetIDFromWrappedClass(base::SupportsUserData* wrapped);
|
|
|
|
protected:
|
|
~TrackableObjectBase() override;
|
|
|
|
// Returns a closure that can destroy the native class.
|
|
base::OnceClosure GetDestroyClosure();
|
|
|
|
private:
|
|
void Destroy();
|
|
|
|
static inline int32_t next_id_ = 0;
|
|
const int32_t weak_map_id_ = ++next_id_;
|
|
|
|
base::WeakPtrFactory<TrackableObjectBase> weak_factory_{this};
|
|
};
|
|
|
|
// All instances of TrackableObject will be kept in a weak map and can be got
|
|
// from its ID.
|
|
template <typename T>
|
|
class TrackableObject : public TrackableObjectBase, public EventEmitter<T> {
|
|
public:
|
|
// Mark the JS object as destroyed.
|
|
void MarkDestroyed() {
|
|
v8::HandleScope scope(gin_helper::Wrappable<T>::isolate());
|
|
v8::Local<v8::Object> wrapper = gin_helper::Wrappable<T>::GetWrapper();
|
|
if (!wrapper.IsEmpty()) {
|
|
wrapper->SetAlignedPointerInInternalField(
|
|
0, nullptr, v8::kEmbedderDataTypeTagDefault);
|
|
gin_helper::WrappableBase::wrapper_.ClearWeak();
|
|
}
|
|
}
|
|
|
|
bool IsDestroyed() {
|
|
v8::HandleScope scope(gin_helper::Wrappable<T>::isolate());
|
|
v8::Local<v8::Object> wrapper = gin_helper::Wrappable<T>::GetWrapper();
|
|
return wrapper->InternalFieldCount() == 0 ||
|
|
wrapper->GetAlignedPointerFromInternalField(
|
|
0, v8::kEmbedderDataTypeTagDefault) == nullptr;
|
|
}
|
|
|
|
// Finds out the TrackableObject from its ID in weak map.
|
|
static T* FromWeakMapID(v8::Isolate* isolate, int32_t id) {
|
|
if (!weak_map_)
|
|
return nullptr;
|
|
|
|
v8::HandleScope scope(isolate);
|
|
v8::MaybeLocal<v8::Object> object = weak_map_->Get(isolate, id);
|
|
if (object.IsEmpty())
|
|
return nullptr;
|
|
|
|
T* self = nullptr;
|
|
gin::ConvertFromV8(isolate, object.ToLocalChecked(), &self);
|
|
return self;
|
|
}
|
|
|
|
// Finds out the TrackableObject from the class it wraps.
|
|
static T* FromWrappedClass(v8::Isolate* isolate,
|
|
base::SupportsUserData* wrapped) {
|
|
int32_t id = GetIDFromWrappedClass(wrapped);
|
|
if (!id)
|
|
return nullptr;
|
|
return FromWeakMapID(isolate, id);
|
|
}
|
|
|
|
// Returns all objects in this class's weak map.
|
|
static std::vector<v8::Local<v8::Object>> GetAll(v8::Isolate* isolate) {
|
|
if (weak_map_)
|
|
return weak_map_->Values(isolate);
|
|
else
|
|
return {};
|
|
}
|
|
|
|
// Removes this instance from the weak map.
|
|
void RemoveFromWeakMap() {
|
|
if (weak_map_)
|
|
weak_map_->Remove(weak_map_id());
|
|
}
|
|
|
|
protected:
|
|
TrackableObject() = default;
|
|
~TrackableObject() override { RemoveFromWeakMap(); }
|
|
|
|
void InitWith(v8::Isolate* isolate, v8::Local<v8::Object> wrapper) override {
|
|
if (!weak_map_) {
|
|
weak_map_ = new electron::KeyWeakMap<int32_t>;
|
|
}
|
|
weak_map_->Set(isolate, weak_map_id(), wrapper);
|
|
gin_helper::WrappableBase::InitWith(isolate, wrapper);
|
|
}
|
|
|
|
private:
|
|
static electron::KeyWeakMap<int32_t>* weak_map_; // leaked on purpose
|
|
};
|
|
|
|
template <typename T>
|
|
electron::KeyWeakMap<int32_t>* TrackableObject<T>::weak_map_ = nullptr;
|
|
|
|
} // namespace gin_helper
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_GIN_HELPER_TRACKABLE_OBJECT_H_
|