-
Notifications
You must be signed in to change notification settings - Fork 31.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
src: track cppgc wrappers with a list in Realm #56534
Open
joyeecheung
wants to merge
4
commits into
nodejs:main
Choose a base branch
from
joyeecheung:cppgc-list
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
459885b
src: track cppgc wrappers with a list in Realm
joyeecheung 1f9ac2c
fixup! src: track cppgc wrappers with a list in Realm
joyeecheung 4bb01f9
fixup! fixup! src: track cppgc wrappers with a list in Realm
joyeecheung 6291758
fixup! fixup! fixup! src: track cppgc wrappers with a list in Realm
joyeecheung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#ifndef SRC_CPPGC_HELPERS_INL_H_ | ||
#define SRC_CPPGC_HELPERS_INL_H_ | ||
|
||
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
#include "cppgc_helpers.h" | ||
#include "env-inl.h" | ||
|
||
namespace node { | ||
|
||
template <typename T> | ||
void CppgcMixin::Wrap(T* ptr, Realm* realm, v8::Local<v8::Object> obj) { | ||
CHECK_GE(obj->InternalFieldCount(), T::kInternalFieldCount); | ||
ptr->realm_ = realm; | ||
v8::Isolate* isolate = realm->isolate(); | ||
ptr->traced_reference_ = v8::TracedReference<v8::Object>(isolate, obj); | ||
// Note that ptr must be of concrete type T in Wrap. | ||
v8::Object::Wrap<v8::CppHeapPointerTag::kDefaultTag>(isolate, obj, ptr); | ||
// Keep the layout consistent with BaseObjects. | ||
obj->SetAlignedPointerInInternalField( | ||
kEmbedderType, realm->isolate_data()->embedder_id_for_cppgc()); | ||
obj->SetAlignedPointerInInternalField(kSlot, ptr); | ||
realm->TrackCppgcWrapper(ptr); | ||
} | ||
|
||
template <typename T> | ||
void CppgcMixin::Wrap(T* ptr, Environment* env, v8::Local<v8::Object> obj) { | ||
Wrap(ptr, env->principal_realm(), obj); | ||
} | ||
|
||
template <typename T> | ||
T* CppgcMixin::Unwrap(v8::Local<v8::Object> obj) { | ||
// We are not using v8::Object::Unwrap currently because that requires | ||
// access to isolate which the ASSIGN_OR_RETURN_UNWRAP macro that we'll shim | ||
// with ASSIGN_OR_RETURN_UNWRAP_GC doesn't take, and we also want a | ||
// signature consistent with BaseObject::Unwrap() to avoid churn. Since | ||
// cppgc-managed objects share the same layout as BaseObjects, just unwrap | ||
// from the pointer in the internal field, which should be valid as long as | ||
// the object is still alive. | ||
if (obj->InternalFieldCount() != T::kInternalFieldCount) { | ||
return nullptr; | ||
} | ||
T* ptr = static_cast<T*>(obj->GetAlignedPointerFromInternalField(T::kSlot)); | ||
return ptr; | ||
} | ||
|
||
v8::Local<v8::Object> CppgcMixin::object() const { | ||
return traced_reference_.Get(realm_->isolate()); | ||
} | ||
|
||
Environment* CppgcMixin::env() const { | ||
return realm_->env(); | ||
} | ||
|
||
} // namespace node | ||
|
||
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
#endif // SRC_CPPGC_HELPERS_INL_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#include "cppgc_helpers.h" | ||
#include "env-inl.h" | ||
|
||
namespace node { | ||
|
||
void CppgcWrapperList::Cleanup() { | ||
for (auto handle : *this) { | ||
handle->Finalize(); | ||
} | ||
} | ||
|
||
void CppgcWrapperList::MemoryInfo(MemoryTracker* tracker) const { | ||
for (auto handle : *this) { | ||
tracker->Track(handle); | ||
} | ||
} | ||
|
||
} // namespace node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of these rules may be non-obvious to many developers. For example, let's say someone has a wrapped object that is holding a
BaseObjectPtr<Foo>
as a member... Just based on reading this documentation, as a newcomer I would not know which of these conditions may apply. Do I need to clear the BaseObjectPtr in the CleanEnvResource callback? What about if it has av8::Global<...>
member field? Is it ok to just let that be cleared by the default destructor? etc. I think calling out a few more detailed examples (and not partial examples like you have currently) of each case would be most helpful.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this would be supported in the nearest future, or will ever be supported - a cppgc-object should not hold on to a
BaseObjectPtr<Foo>
without converting thatBaseObjectPtr<Foo>
to cppgc-managed first - and then in that case they should usecppgc::Member<Foo>
to hold on to that instead. The migration needs to be done bottom-to-top. In the case of usingcppgc::Member<Foo>
, nothing special needs to be done in the destructor, V8 will handle that properly.I think in most cases, this should be
v8::TracedReference
instead. In that case nothing special needs to be done in the destructor. This has been documented in theCreating C++ to JavaScript references in cppgc-managed objects
section.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a note about not supporting cross BaseObject and cppgc-managed wrapeprs. I don't think it's impossible but someone needs to implement some helpers for that first (I am not 100% sure what needs to be done, but using
cppgc::Persistent
would be a start).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we can somehow have c++ linting detect it for us if someone includes a
BaseObjectPtr
member in one of these? .... in any case, this all sounds fine, I'd just like to make sure this gets included somehow in the documentation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it comes up in the future that some people attempt to use
BaseObjectPtr
in a cppgc wrapper, we can consider adding some linting rules. For now it seems a bit too premature. Since we are still in an early phase of cppgc migration, I think the rule of thumb is probably: