From ec86f10038bdc266e9c0cf5ab4aa0236969bc7a2 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 15 Jan 2021 16:22:18 -0800 Subject: [PATCH] Using factored-out make_constructor (PR #2798), removing duplicate code. --- include/pybind11/cast.h | 49 +++++++++++++++++++++------------------ tests/test_classh_wip.cpp | 31 ++----------------------- 2 files changed, 28 insertions(+), 52 deletions(-) diff --git a/include/pybind11/cast.h b/include/pybind11/cast.h index 6effa1bc0..5867309f0 100644 --- a/include/pybind11/cast.h +++ b/include/pybind11/cast.h @@ -824,6 +824,30 @@ template struct is_copy_assignable struct is_copy_assignable> : all_of, is_copy_assignable> {}; +// Helper for type_caster_base. +struct make_constructor { + using Constructor = void *(*)(const void *); + + /* Only enabled when the types are {copy,move}-constructible *and* when the type + does not have a private operator new implementation. */ + template ::value>> + static auto make_copy_constructor(const T *x) -> decltype(new T(*x), Constructor{}) { + return [](const void *arg) -> void * { + return new T(*reinterpret_cast(arg)); + }; + } + + template ::value>> + static auto make_move_constructor(const T *x) -> decltype(new T(std::move(*const_cast(x))), Constructor{}) { + return [](const void *arg) -> void * { + return new T(std::move(*const_cast(reinterpret_cast(arg)))); + }; + } + + static Constructor make_copy_constructor(...) { return nullptr; } + static Constructor make_move_constructor(...) { return nullptr; } +}; + PYBIND11_NAMESPACE_END(detail) // polymorphic_type_hook::get(src, tinfo) determines whether the object pointed @@ -866,7 +890,8 @@ struct polymorphic_type_hook : public polymorphic_type_hook_base {}; PYBIND11_NAMESPACE_BEGIN(detail) /// Generic type caster for objects stored on the heap -template class type_caster_base : public type_caster_generic { +template class type_caster_base : public type_caster_generic, + protected make_constructor { using itype = intrinsic_t; public: @@ -927,28 +952,6 @@ public: operator itype*() { return (type *) value; } operator itype&() { if (!value) throw reference_cast_error(); return *((itype *) value); } - -protected: - using Constructor = void *(*)(const void *); - - /* Only enabled when the types are {copy,move}-constructible *and* when the type - does not have a private operator new implementation. */ - template ::value>> - static auto make_copy_constructor(const T *x) -> decltype(new T(*x), Constructor{}) { - return [](const void *arg) -> void * { - return new T(*reinterpret_cast(arg)); - }; - } - - template ::value>> - static auto make_move_constructor(const T *x) -> decltype(new T(std::move(*const_cast(x))), Constructor{}) { - return [](const void *arg) -> void * { - return new T(std::move(*const_cast(reinterpret_cast(arg)))); - }; - } - - static Constructor make_copy_constructor(...) { return nullptr; } - static Constructor make_move_constructor(...) { return nullptr; } }; template class type_caster : public type_caster_base { }; diff --git a/tests/test_classh_wip.cpp b/tests/test_classh_wip.cpp index b5a9274fb..e663df055 100644 --- a/tests/test_classh_wip.cpp +++ b/tests/test_classh_wip.cpp @@ -123,8 +123,8 @@ struct type_caster : smart_holder_type_caster_load { policy, parent, st.second, - make_copy_constructor(src), - make_move_constructor(src)); + make_constructor::make_copy_constructor(src), + make_constructor::make_move_constructor(src)); } static handle cast(mpty *src, return_value_policy policy, handle parent) { @@ -156,33 +156,6 @@ struct type_caster : smart_holder_type_caster_load { // clang-format on - // type_caster_base BEGIN - // clang-format off - - using Constructor = void *(*)(const void *); - - /* Only enabled when the types are {copy,move}-constructible *and* when the type - does not have a private operator new implementation. */ - template ::value>> - static auto make_copy_constructor(const T *x) -> decltype(new T(*x), Constructor{}) { - return [](const void *arg) -> void * { - return new T(*reinterpret_cast(arg)); - }; - } - - template ::value>> - static auto make_move_constructor(const T *x) -> decltype(new T(std::move(*const_cast(x))), Constructor{}) { - return [](const void *arg) -> void * { - return new T(std::move(*const_cast(reinterpret_cast(arg)))); - }; - } - - static Constructor make_copy_constructor(...) { return nullptr; } - static Constructor make_move_constructor(...) { return nullptr; } - - // clang-format on - // type_caster_base END - // Originally type_caster_generic::cast. PYBIND11_NOINLINE static handle cast_const_raw_ptr(const void *_src, return_value_policy policy,