mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-26 15:12:01 +00:00
Use casting to void *
to evade to shared_from_this mechanism only if pointee_depends_on_holder_owner
, but currently only for from_raw_ptr_take_ownership
.
This commit is contained in:
parent
1b9f85a09e
commit
a0e19bdc46
@ -305,6 +305,8 @@ struct smart_holder_type_caster_class_hooks : smart_holder_type_caster_base_tag
|
|||||||
}
|
}
|
||||||
auto uninitialized_location = std::addressof(v_h.holder<holder_type>());
|
auto uninitialized_location = std::addressof(v_h.holder<holder_type>());
|
||||||
auto value_ptr_w_t = v_h.value_ptr<WrappedType>();
|
auto value_ptr_w_t = v_h.value_ptr<WrappedType>();
|
||||||
|
bool pointee_depends_on_holder_owner
|
||||||
|
= dynamic_raw_ptr_cast_if_possible<AliasType>(value_ptr_w_t) != nullptr;
|
||||||
if (holder_void_ptr) {
|
if (holder_void_ptr) {
|
||||||
// Note: inst->owned ignored.
|
// Note: inst->owned ignored.
|
||||||
auto holder_ptr = static_cast<holder_type *>(holder_void_ptr);
|
auto holder_ptr = static_cast<holder_type *>(holder_void_ptr);
|
||||||
@ -314,7 +316,8 @@ struct smart_holder_type_caster_class_hooks : smart_holder_type_caster_base_tag
|
|||||||
uninitialized_location, value_ptr_w_t, value_ptr_w_t)) {
|
uninitialized_location, value_ptr_w_t, value_ptr_w_t)) {
|
||||||
if (inst->owned) {
|
if (inst->owned) {
|
||||||
new (uninitialized_location)
|
new (uninitialized_location)
|
||||||
holder_type(holder_type::from_raw_ptr_take_ownership(value_ptr_w_t, true));
|
holder_type(holder_type::from_raw_ptr_take_ownership(
|
||||||
|
value_ptr_w_t, pointee_depends_on_holder_owner));
|
||||||
} else {
|
} else {
|
||||||
new (uninitialized_location)
|
new (uninitialized_location)
|
||||||
holder_type(holder_type::from_raw_ptr_unowned(value_ptr_w_t));
|
holder_type(holder_type::from_raw_ptr_unowned(value_ptr_w_t));
|
||||||
@ -322,13 +325,14 @@ struct smart_holder_type_caster_class_hooks : smart_holder_type_caster_base_tag
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
v_h.holder<holder_type>().pointee_depends_on_holder_owner
|
v_h.holder<holder_type>().pointee_depends_on_holder_owner
|
||||||
= dynamic_raw_ptr_cast_if_possible<AliasType>(value_ptr_w_t) != nullptr;
|
= pointee_depends_on_holder_owner;
|
||||||
v_h.set_holder_constructed();
|
v_h.set_holder_constructed();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T, typename D>
|
template <typename T, typename D>
|
||||||
static smart_holder smart_holder_from_unique_ptr(std::unique_ptr<T, D> &&unq_ptr) {
|
static smart_holder smart_holder_from_unique_ptr(std::unique_ptr<T, D> &&unq_ptr) {
|
||||||
return pybindit::memory::smart_holder::from_unique_ptr(std::move(unq_ptr), true);
|
return pybindit::memory::smart_holder::from_unique_ptr(
|
||||||
|
std::move(unq_ptr), /*TODO pointee_depends_on_holder_owner*/ true);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -801,7 +805,8 @@ struct smart_holder_type_caster<std::unique_ptr<T, D>> : smart_holder_type_caste
|
|||||||
void *&valueptr = values_and_holders(inst_raw_ptr).begin()->value_ptr();
|
void *&valueptr = values_and_holders(inst_raw_ptr).begin()->value_ptr();
|
||||||
valueptr = src_raw_void_ptr;
|
valueptr = src_raw_void_ptr;
|
||||||
|
|
||||||
auto smhldr = pybindit::memory::smart_holder::from_unique_ptr(std::move(src), true);
|
auto smhldr = pybindit::memory::smart_holder::from_unique_ptr(
|
||||||
|
std::move(src), /*TODO pointee_depends_on_holder_owner*/ true);
|
||||||
tinfo->init_instance(inst_raw_ptr, static_cast<const void *>(&smhldr));
|
tinfo->init_instance(inst_raw_ptr, static_cast<const void *>(&smhldr));
|
||||||
|
|
||||||
if (policy == return_value_policy::reference_internal)
|
if (policy == return_value_policy::reference_internal)
|
||||||
|
@ -130,27 +130,14 @@ def test_pass_released_shared_ptr_as_unique_ptr():
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def test_pure_cpp_sft_raw_ptr():
|
@pytest.mark.parametrize(
|
||||||
obj = m.make_pure_cpp_sft_raw_ptr("PureCppSft")
|
"make_f", [m.make_pure_cpp_sft_raw_ptr, m.make_pure_cpp_sft_shd_ptr]
|
||||||
with pytest.raises(RuntimeError) as exc_info:
|
)
|
||||||
assert m.pass_shared_ptr(obj) == 3 # TODO: FIX.
|
def test_pure_cpp_sft_raw_ptr(make_f):
|
||||||
assert str(exc_info.value) == "bad_weak_ptr"
|
obj = make_f("PureCppSft")
|
||||||
obj = m.make_pure_cpp_sft_raw_ptr("PureCppSft")
|
|
||||||
stash1 = m.SftSharedPtrStash(1)
|
|
||||||
with pytest.raises(RuntimeError) as exc_info:
|
|
||||||
stash1.AddSharedFromThis(obj) # TODO: FIX.
|
|
||||||
assert str(exc_info.value) == "bad_weak_ptr"
|
|
||||||
stash1.Add(obj)
|
|
||||||
with pytest.raises(RuntimeError) as exc_info:
|
|
||||||
stash1.AddSharedFromThis(obj) # TODO: FIX.
|
|
||||||
assert str(exc_info.value) == "bad_weak_ptr"
|
|
||||||
|
|
||||||
|
|
||||||
def test_pure_cpp_sft_shd_ptr():
|
|
||||||
obj = m.make_pure_cpp_sft_shd_ptr("PureCppSft")
|
|
||||||
assert m.pass_shared_ptr(obj) == 3
|
assert m.pass_shared_ptr(obj) == 3
|
||||||
assert obj.history == "PureCppSft_PassSharedPtr"
|
assert obj.history == "PureCppSft_PassSharedPtr"
|
||||||
obj = m.make_pure_cpp_sft_shd_ptr("PureCppSft")
|
obj = make_f("PureCppSft")
|
||||||
stash1 = m.SftSharedPtrStash(1)
|
stash1 = m.SftSharedPtrStash(1)
|
||||||
stash1.AddSharedFromThis(obj)
|
stash1.AddSharedFromThis(obj)
|
||||||
assert obj.history == "PureCppSft_Stash1AddSharedFromThis"
|
assert obj.history == "PureCppSft_Stash1AddSharedFromThis"
|
||||||
|
Loading…
Reference in New Issue
Block a user