From 383f7e9b84961e52faf4e8a78055f69724d39c12 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 20 Jan 2021 13:27:35 -0800 Subject: [PATCH] Minimal changes needed to pass test_classh_inheritance. --- include/pybind11/detail/classh_type_casters.h | 44 ++++++++++++------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/include/pybind11/detail/classh_type_casters.h b/include/pybind11/detail/classh_type_casters.h index 3907267bb..e52f69343 100644 --- a/include/pybind11/detail/classh_type_casters.h +++ b/include/pybind11/detail/classh_type_casters.h @@ -35,7 +35,7 @@ public: PYBIND11_NOINLINE modified_type_caster_generic_load_impl(const std::type_info &type_info) : typeinfo(get_type_info(type_info)), cpptype(&type_info) { } - modified_type_caster_generic_load_impl(const type_info *typeinfo) + explicit modified_type_caster_generic_load_impl(const type_info *typeinfo = nullptr) : typeinfo(typeinfo), cpptype(typeinfo ? typeinfo->cpptype : nullptr) { } bool load(handle src, bool convert) { @@ -133,7 +133,7 @@ public: } // Case 2: We have a derived class else if (PyType_IsSubtype(srctype, typeinfo->type)) { - auto &bases = all_type_info(srctype); + auto &bases = all_type_info(srctype); // subtype bases bool no_cpp_mi = typeinfo->simple_type; // Case 2a: the python type is a Python-inherited derived class that inherits from just @@ -144,6 +144,8 @@ public: // pointer lookup overhead) if (bases.size() == 1 && (no_cpp_mi || bases.front()->type == typeinfo->type)) { this_.load_value_and_holder(reinterpret_cast(src.ptr())->get_value_and_holder()); + subtype_typeinfo = bases.front(); + reinterpret_cast_ok = true; return true; } // Case 2b: the python type inherits from multiple C++ bases. Check the bases to see if @@ -153,6 +155,8 @@ public: for (auto base : bases) { if (no_cpp_mi ? PyType_IsSubtype(base->type, typeinfo->type) : base->type == typeinfo->type) { this_.load_value_and_holder(reinterpret_cast(src.ptr())->get_value_and_holder(base)); + subtype_typeinfo = base; + reinterpret_cast_ok = true; return true; } } @@ -161,8 +165,9 @@ public: // Case 2c: C++ multiple inheritance is involved and we couldn't find an exact type match // in the registered bases, above, so try implicit casting (needed for proper C++ casting // when MI is involved). - if (this_.try_implicit_casts(src, convert)) + if (this_.try_implicit_casts(src, convert)) { return true; + } } // Perform an implicit conversion @@ -192,7 +197,9 @@ public: const type_info *typeinfo = nullptr; const std::type_info *cpptype = nullptr; + const type_info *subtype_typeinfo = nullptr; value_and_holder loaded_v_h; + bool reinterpret_cast_ok = false; }; // clang-format on @@ -203,25 +210,32 @@ struct smart_holder_type_caster_load { bool load(handle src, bool convert) { if (!isinstance(src)) return false; - modified_type_caster_generic_load_impl tcgli(typeid(T)); - tcgli.load(src, convert); - loaded_v_h = tcgli.loaded_v_h; - loaded_smhldr_ptr = &loaded_v_h.holder(); + load_impl = modified_type_caster_generic_load_impl(typeid(T)); + if (!load_impl.load(src, convert)) + return false; + loaded_smhldr_ptr = &load_impl.loaded_v_h.holder(); return true; } + T *as_raw_ptr_unowned() { + if (load_impl.subtype_typeinfo != nullptr && load_impl.reinterpret_cast_ok) { + return reinterpret_cast(loaded_smhldr_ptr->vptr.get()); + } + return loaded_smhldr_ptr->as_raw_ptr_unowned(); + } + std::unique_ptr loaded_as_unique_ptr() { - void *value_void_ptr = loaded_v_h.value_ptr(); + void *value_void_ptr = load_impl.loaded_v_h.value_ptr(); auto unq_ptr = loaded_smhldr_ptr->as_unique_ptr(); - loaded_v_h.holder().~holder_type(); - loaded_v_h.set_holder_constructed(false); - loaded_v_h.value_ptr() = nullptr; - deregister_instance(loaded_v_h.inst, value_void_ptr, loaded_v_h.type); + load_impl.loaded_v_h.holder().~holder_type(); + load_impl.loaded_v_h.set_holder_constructed(false); + load_impl.loaded_v_h.value_ptr() = nullptr; + deregister_instance(load_impl.loaded_v_h.inst, value_void_ptr, load_impl.loaded_v_h.type); return unq_ptr; } protected: - value_and_holder loaded_v_h; + modified_type_caster_generic_load_impl load_impl; holder_type *loaded_smhldr_ptr = nullptr; }; @@ -316,8 +330,8 @@ struct classh_type_caster : smart_holder_type_caster_load { operator T&&() && { return this->loaded_smhldr_ptr->template rvalue_ref(); } operator T const&() { return this->loaded_smhldr_ptr->template lvalue_ref(); } operator T&() { return this->loaded_smhldr_ptr->template lvalue_ref(); } - operator T const*() { return this->loaded_smhldr_ptr->template as_raw_ptr_unowned(); } - operator T*() { return this->loaded_smhldr_ptr->template as_raw_ptr_unowned(); } + operator T const*() { return this->as_raw_ptr_unowned(); } + operator T*() { return this->as_raw_ptr_unowned(); } // clang-format on