mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 22:52:01 +00:00
bb6b429a2f
scons -j 48 selected_test_cpp=test_class_sh_mi_thunks.cpp && "$(cat PYROOT)"/bin/python3 $HOME/clone/pybind11_scons/run_tests.py ../pybind11 test_class_sh_mi_thunks.py -s -vv -k 'test_get_vec_size_raw_shared[get_drvd_as_base0_raw_ptr-vec_size_base0_shared_ptr]' ``` =========================================================== test session starts ============================================================ platform linux -- Python 3.11.8, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache C++ Info: 13.2.0 C++20 __pybind11_internals_v10000000_gcc_libstdcpp_cxxabi1018__ PYBIND11_SIMPLE_GIL_MANAGEMENT=False PYBIND11_NUMPY_1_ONLY=False rootdir: /usr/local/google/home/rwgk/forked/pybind11/tests configfile: pytest.ini plugins: xdist-3.5.0 collected 10 items / 9 deselected / 1 selected test_class_sh_mi_thunks.py::test_get_vec_size_raw_shared[get_drvd_as_base0_raw_ptr-vec_size_base0_shared_ptr] LOOOK A LOOOK get raw drvd 47927280 LOOOK get raw base 47927312 LOOOK B LOOOK shd load(src, convert) X LOOOK shd try_implicit_casts(src, convert) Q LOOOK shd try_implicit_casts(src, convert) R LOOOK shd load(src, convert) X LOOOK shd load_value(v_h) ENTRY LOOOK shd load_value(v_h) A LOOOK shd load_value(v_h) B LOOOK shd load(src, convert) Y 47927280 LOOOK shd try_implicit_casts(src, convert) S LOOOK shd load(src, convert) Y 47927312 LOOOK operator std::shared_ptr<type> & A 47927312 /usr/local/google/home/rwgk/forked/pybind11/include/pybind11/detail/../cast.h:891 LOOOK /usr/local/google/home/rwgk/forked/pybind11/include/pybind11/detail/../detail/type_caster_base.h:838 LOOOK /usr/local/google/home/rwgk/forked/pybind11/include/pybind11/detail/../detail/type_caster_base.h:842 LOOOK operator std::shared_ptr<type> & B 47927312 /usr/local/google/home/rwgk/forked/pybind11/include/pybind11/detail/../cast.h:893 LOOOK shd const Base0 *obj 47927312 LOOOK shd const auto *obj_der 47927280 LOOOK C PASSED ===================================================== 1 passed, 9 deselected in 0.01s ====================================================== ```
109 lines
3.7 KiB
C++
109 lines
3.7 KiB
C++
#include <pybind11/pybind11.h>
|
|
#include <pybind11/smart_holder.h>
|
|
|
|
#include "pybind11_tests.h"
|
|
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace test_class_sh_mi_thunks {
|
|
|
|
// For general background: https://shaharmike.com/cpp/vtable-part2/
|
|
// C++ vtables - Part 2 - Multiple Inheritance
|
|
// ... the compiler creates a 'thunk' method that corrects `this` ...
|
|
|
|
struct Base0 {
|
|
virtual ~Base0() = default;
|
|
Base0() = default;
|
|
Base0(const Base0 &) = delete;
|
|
};
|
|
|
|
struct Base1 {
|
|
virtual ~Base1() = default;
|
|
// Using `vector` here because it is known to make this test very sensitive to bugs.
|
|
std::vector<int> vec = {1, 2, 3, 4, 5};
|
|
Base1() = default;
|
|
Base1(const Base1 &) = delete;
|
|
};
|
|
|
|
struct Derived : Base1, Base0 {
|
|
~Derived() override = default;
|
|
Derived() = default;
|
|
Derived(const Derived &) = delete;
|
|
};
|
|
|
|
} // namespace test_class_sh_mi_thunks
|
|
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(test_class_sh_mi_thunks::Base0)
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(test_class_sh_mi_thunks::Base1)
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(test_class_sh_mi_thunks::Derived)
|
|
|
|
TEST_SUBMODULE(class_sh_mi_thunks, m) {
|
|
using namespace test_class_sh_mi_thunks;
|
|
|
|
m.def("ptrdiff_drvd_base0", []() {
|
|
auto drvd = std::unique_ptr<Derived>(new Derived);
|
|
auto *base0 = dynamic_cast<Base0 *>(drvd.get());
|
|
return std::ptrdiff_t(reinterpret_cast<char *>(drvd.get())
|
|
- reinterpret_cast<char *>(base0));
|
|
});
|
|
|
|
py::classh<Base0>(m, "Base0");
|
|
py::classh<Base1>(m, "Base1");
|
|
py::classh<Derived, Base1, Base0>(m, "Derived");
|
|
|
|
m.def(
|
|
"get_drvd_as_base0_raw_ptr",
|
|
[]() {
|
|
auto *drvd = new Derived;
|
|
auto *base0 = dynamic_cast<Base0 *>(drvd);
|
|
printf("\nLOOOK get raw drvd %ld\n", (long) drvd); fflush(stdout); // NOLINT
|
|
printf("\nLOOOK get raw base %ld\n", (long) base0); fflush(stdout); // NOLINT
|
|
return base0;
|
|
},
|
|
py::return_value_policy::take_ownership);
|
|
|
|
m.def("get_drvd_as_base0_shared_ptr", []() {
|
|
auto drvd = std::make_shared<Derived>();
|
|
auto base0 = std::dynamic_pointer_cast<Base0>(drvd);
|
|
printf("\nLOOOK get shd drvd %ld\n", (long) drvd.get()); fflush(stdout); // NOLINT
|
|
printf("\nLOOOK get shd base %ld\n", (long) base0.get()); fflush(stdout); // NOLINT
|
|
return base0;
|
|
});
|
|
|
|
m.def("get_drvd_as_base0_unique_ptr", []() {
|
|
auto drvd = std::unique_ptr<Derived>(new Derived);
|
|
auto base0 = std::unique_ptr<Base0>(std::move(drvd));
|
|
return base0;
|
|
});
|
|
|
|
m.def("vec_size_base0_raw_ptr", [](const Base0 *obj) {
|
|
printf("\nLOOOK raw const Base0 *obj %ld\n", (long) obj); fflush(stdout); // NOLINT
|
|
const auto *obj_der = dynamic_cast<const Derived *>(obj);
|
|
printf("\nLOOOK raw const auto *obj_der %ld\n", (long) obj_der); fflush(stdout); // NOLINT
|
|
if (obj_der == nullptr) {
|
|
return std::size_t(0);
|
|
}
|
|
return obj_der->vec.size();
|
|
});
|
|
|
|
m.def("vec_size_base0_shared_ptr", [](const std::shared_ptr<Base0> &obj) -> std::size_t {
|
|
printf("\nLOOOK shd const Base0 *obj %ld\n", (long) obj.get()); fflush(stdout); // NOLINT
|
|
const auto obj_der = std::dynamic_pointer_cast<Derived>(obj);
|
|
printf("\nLOOOK shd const auto *obj_der %ld\n", (long) obj_der.get()); fflush(stdout); // NOLINT
|
|
if (!obj_der) {
|
|
return std::size_t(0);
|
|
}
|
|
return obj_der->vec.size();
|
|
});
|
|
|
|
m.def("vec_size_base0_unique_ptr", [](std::unique_ptr<Base0> obj) -> std::size_t {
|
|
const auto *obj_der = dynamic_cast<const Derived *>(obj.get());
|
|
if (obj_der == nullptr) {
|
|
return std::size_t(0);
|
|
}
|
|
return obj_der->vec.size();
|
|
});
|
|
}
|