mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-15 01:44:44 +00:00
bd8985aa0f
* Step 1: Establish new `PYBIND11_SMART_HOLDER_ENABLED` macro, but only under include/pybind11/ At the stage `PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT` and `PYBIND11_SMART_HOLDER_ENABLED` are still equivalent. * Systematically replace all `PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT` with `PYBIND11_SMART_HOLDER_ENABLED` under tests/ and ubench/ As at the previous stage, `PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT` and `PYBIND11_SMART_HOLDER_ENABLED` are still equivalent. * Introduce `PYBIND11_SMART_HOLDER_DISABLE` option. * `#ifdef` out entire `wrap()` function to avoid `unused-parameter` warning-as-error under macos-13 ``` /Users/runner/work/pybind11/pybind11/tests/test_class_sh_trampoline_basic.cpp:67:23: error: unused parameter 'm' [-Werror,-Wunused-parameter] void wrap(py::module_ m, const char *py_class_name) { ^ /Users/runner/work/pybind11/pybind11/tests/test_class_sh_trampoline_basic.cpp:67:38: error: unused parameter 'py_class_name' [-Werror,-Wunused-parameter] void wrap(py::module_ m, const char *py_class_name) { ^ 2 errors generated. ```
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
#include <pybind11/smart_holder.h>
|
|
|
|
#include "pybind11_tests.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace pybind11_tests {
|
|
namespace class_sh_virtual_py_cpp_mix {
|
|
|
|
class Base {
|
|
public:
|
|
virtual ~Base() = default;
|
|
virtual int get() const { return 101; }
|
|
|
|
// Some compilers complain about implicitly defined versions of some of the following:
|
|
Base() = default;
|
|
Base(const Base &) = default;
|
|
};
|
|
|
|
class CppDerivedPlain : public Base {
|
|
public:
|
|
int get() const override { return 202; }
|
|
};
|
|
|
|
class CppDerived : public Base {
|
|
public:
|
|
int get() const override { return 212; }
|
|
};
|
|
|
|
int get_from_cpp_plainc_ptr(const Base *b) { return b->get() + 4000; }
|
|
|
|
int get_from_cpp_unique_ptr(std::unique_ptr<Base> b) { return b->get() + 5000; }
|
|
|
|
#ifdef PYBIND11_SMART_HOLDER_ENABLED
|
|
|
|
struct BaseVirtualOverrider : Base, py::trampoline_self_life_support {
|
|
using Base::Base;
|
|
|
|
int get() const override { PYBIND11_OVERRIDE(int, Base, get); }
|
|
};
|
|
|
|
struct CppDerivedVirtualOverrider : CppDerived, py::trampoline_self_life_support {
|
|
using CppDerived::CppDerived;
|
|
|
|
int get() const override { PYBIND11_OVERRIDE(int, CppDerived, get); }
|
|
};
|
|
|
|
#endif
|
|
|
|
} // namespace class_sh_virtual_py_cpp_mix
|
|
} // namespace pybind11_tests
|
|
|
|
using namespace pybind11_tests::class_sh_virtual_py_cpp_mix;
|
|
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(Base)
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(CppDerivedPlain)
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(CppDerived)
|
|
|
|
TEST_SUBMODULE(class_sh_virtual_py_cpp_mix, m) {
|
|
m.attr("defined_PYBIND11_SMART_HOLDER_ENABLED") =
|
|
#ifndef PYBIND11_SMART_HOLDER_ENABLED
|
|
false;
|
|
#else
|
|
true;
|
|
|
|
py::classh<Base, BaseVirtualOverrider>(m, "Base").def(py::init<>()).def("get", &Base::get);
|
|
|
|
py::classh<CppDerivedPlain, Base>(m, "CppDerivedPlain").def(py::init<>());
|
|
|
|
py::classh<CppDerived, Base, CppDerivedVirtualOverrider>(m, "CppDerived").def(py::init<>());
|
|
|
|
m.def("get_from_cpp_plainc_ptr", get_from_cpp_plainc_ptr, py::arg("b"));
|
|
m.def("get_from_cpp_unique_ptr", get_from_cpp_unique_ptr, py::arg("b"));
|
|
#endif // PYBIND11_SMART_HOLDER_ENABLED
|
|
}
|