mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
Compare commits
13 Commits
6ea2618780
...
bd15bfa46a
Author | SHA1 | Date | |
---|---|---|---|
|
bd15bfa46a | ||
|
1f8b4a7f1a | ||
|
ad9fd39e14 | ||
|
1d9483ff73 | ||
|
a7910be630 | ||
|
0cf3a0f7b5 | ||
|
5b7c0b04b9 | ||
|
ef5a9560bb | ||
|
5efc7439d4 | ||
|
cc1dbb9847 | ||
|
a253b4e0c0 | ||
|
23377c09ea | ||
|
7a98bcc612 |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -243,7 +243,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
|
- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
|
||||||
uses: deadsnakes/action@v3.1.0
|
uses: deadsnakes/action@v3.2.0
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
debug: ${{ matrix.python-debug }}
|
debug: ${{ matrix.python-debug }}
|
||||||
|
2
.github/workflows/emscripten.yaml
vendored
2
.github/workflows/emscripten.yaml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
submodules: true
|
submodules: true
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- uses: pypa/cibuildwheel@v2.20
|
- uses: pypa/cibuildwheel@v2.21
|
||||||
env:
|
env:
|
||||||
PYODIDE_BUILD_EXPORTS: whole_archive
|
PYODIDE_BUILD_EXPORTS: whole_archive
|
||||||
with:
|
with:
|
||||||
|
9
.github/workflows/pip.yml
vendored
9
.github/workflows/pip.yml
vendored
@ -91,18 +91,19 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.event_name == 'release' && github.event.action == 'published'
|
if: github.event_name == 'release' && github.event.action == 'published'
|
||||||
needs: [packaging]
|
needs: [packaging]
|
||||||
environment: pypi
|
environment:
|
||||||
|
name: pypi
|
||||||
|
url: https://pypi.org/p/pybind11
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
attestations: write
|
attestations: write
|
||||||
contents: read
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Downloads all to directories matching the artifact names
|
# Downloads all to directories matching the artifact names
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
|
|
||||||
- name: Generate artifact attestation for sdist and wheel
|
- name: Generate artifact attestation for sdist and wheel
|
||||||
uses: actions/attest-build-provenance@6149ea5740be74af77f260b9db67e633f6b0a9a1 # v1.4.2
|
uses: actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c # v1.4.3
|
||||||
with:
|
with:
|
||||||
subject-path: "*/pybind11*"
|
subject-path: "*/pybind11*"
|
||||||
|
|
||||||
@ -110,8 +111,10 @@ jobs:
|
|||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
with:
|
with:
|
||||||
packages-dir: standard/
|
packages-dir: standard/
|
||||||
|
attestations: true
|
||||||
|
|
||||||
- name: Publish global package
|
- name: Publish global package
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
with:
|
with:
|
||||||
packages-dir: global/
|
packages-dir: global/
|
||||||
|
attestations: true
|
||||||
|
@ -129,6 +129,7 @@ endif()
|
|||||||
set(PYBIND11_HEADERS
|
set(PYBIND11_HEADERS
|
||||||
include/pybind11/detail/class.h
|
include/pybind11/detail/class.h
|
||||||
include/pybind11/detail/common.h
|
include/pybind11/detail/common.h
|
||||||
|
include/pybind11/detail/cpp_conduit.h
|
||||||
include/pybind11/detail/descr.h
|
include/pybind11/detail/descr.h
|
||||||
include/pybind11/detail/init.h
|
include/pybind11/detail/init.h
|
||||||
include/pybind11/detail/internals.h
|
include/pybind11/detail/internals.h
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.. figure:: https://github.com/pybind/pybind11/raw/master/docs/pybind11-logo.png
|
.. figure:: https://github.com/pybind/pybind11/raw/master/docs/pybind11-logo.png
|
||||||
:alt: pybind11 logo
|
:alt: pybind11 logo
|
||||||
|
|
||||||
**pybind11 — Seamless operability between C++11 and Python**
|
**pybind11 — Seamless operability between C++ and Python**
|
||||||
|
|
||||||
|Latest Documentation Status| |Stable Documentation Status| |Gitter chat| |GitHub Discussions| |CI| |Build status|
|
|Latest Documentation Status| |Stable Documentation Status| |Gitter chat| |GitHub Discussions| |CI| |Build status|
|
||||||
|
|
||||||
|
@ -31,6 +31,37 @@ New Features:
|
|||||||
* The ``array_caster`` in pybind11/stl.h was enhanced to support value types that are not default-constructible.
|
* The ``array_caster`` in pybind11/stl.h was enhanced to support value types that are not default-constructible.
|
||||||
`#5305 <https://github.com/pybind/pybind11/pull/5305>`_
|
`#5305 <https://github.com/pybind/pybind11/pull/5305>`_
|
||||||
|
|
||||||
|
* Added ``py::warnings`` namespace with ``py::warnings::warn`` and ``py::warnings::new_warning_type`` that provides the interface for Python warnings.
|
||||||
|
`#5291 <https://github.com/pybind/pybind11/pull/5291>`_
|
||||||
|
|
||||||
|
Version 2.13.6 (September 13, 2024)
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
New Features:
|
||||||
|
|
||||||
|
* A new ``self._pybind11_conduit_v1_()`` method is automatically added to all
|
||||||
|
``py::class_``-wrapped types, to enable type-safe interoperability between
|
||||||
|
different independent Python/C++ bindings systems, including pybind11
|
||||||
|
versions with different ``PYBIND11_INTERNALS_VERSION``'s. Supported on
|
||||||
|
pybind11 2.11.2, 2.12.1, and 2.13.6+.
|
||||||
|
`#5296 <https://github.com/pybind/pybind11/pull/5296>`_
|
||||||
|
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
* Using ``__cpp_nontype_template_args`` instead of ``__cpp_nontype_template_parameter_class``.
|
||||||
|
`#5330 <https://github.com/pybind/pybind11/pull/5330>`_
|
||||||
|
|
||||||
|
* Properly translate C++ exception to Python exception when creating Python buffer from wrapped object.
|
||||||
|
`#5324 <https://github.com/pybind/pybind11/pull/5324>`_
|
||||||
|
|
||||||
|
|
||||||
|
Documentation:
|
||||||
|
|
||||||
|
* Adds an answer (FAQ) for "What is a highly conclusive and simple way to find memory leaks?".
|
||||||
|
`#5340 <https://github.com/pybind/pybind11/pull/5340>`_
|
||||||
|
|
||||||
|
|
||||||
Version 2.13.5 (August 22, 2024)
|
Version 2.13.5 (August 22, 2024)
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|
||||||
@ -238,6 +269,18 @@ Other:
|
|||||||
* Update docs and noxfile.
|
* Update docs and noxfile.
|
||||||
`#5071 <https://github.com/pybind/pybind11/pull/5071>`_
|
`#5071 <https://github.com/pybind/pybind11/pull/5071>`_
|
||||||
|
|
||||||
|
Version 2.12.1 (September 13, 2024)
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
New Features:
|
||||||
|
|
||||||
|
* A new ``self._pybind11_conduit_v1_()`` method is automatically added to all
|
||||||
|
``py::class_``-wrapped types, to enable type-safe interoperability between
|
||||||
|
different independent Python/C++ bindings systems, including pybind11
|
||||||
|
versions with different ``PYBIND11_INTERNALS_VERSION``'s. Supported on
|
||||||
|
pybind11 2.11.2, 2.12.1, and 2.13.6+.
|
||||||
|
`#5296 <https://github.com/pybind/pybind11/pull/5296>`_
|
||||||
|
|
||||||
|
|
||||||
Version 2.12.0 (March 27, 2024)
|
Version 2.12.0 (March 27, 2024)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
@ -413,6 +456,18 @@ Other:
|
|||||||
* An ``assert()`` was added to help Coverty avoid generating a false positive.
|
* An ``assert()`` was added to help Coverty avoid generating a false positive.
|
||||||
`#4817 <https://github.com/pybind/pybind11/pull/4817>`_
|
`#4817 <https://github.com/pybind/pybind11/pull/4817>`_
|
||||||
|
|
||||||
|
Version 2.11.2 (September 13, 2024)
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
New Features:
|
||||||
|
|
||||||
|
* A new ``self._pybind11_conduit_v1_()`` method is automatically added to all
|
||||||
|
``py::class_``-wrapped types, to enable type-safe interoperability between
|
||||||
|
different independent Python/C++ bindings systems, including pybind11
|
||||||
|
versions with different ``PYBIND11_INTERNALS_VERSION``'s. Supported on
|
||||||
|
pybind11 2.11.2, 2.12.1, and 2.13.6+.
|
||||||
|
`#5296 <https://github.com/pybind/pybind11/pull/5296>`_
|
||||||
|
|
||||||
|
|
||||||
Version 2.11.1 (July 17, 2023)
|
Version 2.11.1 (July 17, 2023)
|
||||||
------------------------------
|
------------------------------
|
||||||
|
77
include/pybind11/detail/cpp_conduit.h
Normal file
77
include/pybind11/detail/cpp_conduit.h
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <pybind11/pytypes.h>
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
#include "internals.h"
|
||||||
|
|
||||||
|
#include <typeinfo>
|
||||||
|
|
||||||
|
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
||||||
|
PYBIND11_NAMESPACE_BEGIN(detail)
|
||||||
|
|
||||||
|
// Forward declaration needed here: Refactoring opportunity.
|
||||||
|
extern "C" inline PyObject *pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *);
|
||||||
|
|
||||||
|
inline bool type_is_managed_by_our_internals(PyTypeObject *type_obj) {
|
||||||
|
#if defined(PYPY_VERSION)
|
||||||
|
auto &internals = get_internals();
|
||||||
|
return bool(internals.registered_types_py.find(type_obj)
|
||||||
|
!= internals.registered_types_py.end());
|
||||||
|
#else
|
||||||
|
return bool(type_obj->tp_new == pybind11_object_new);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool is_instance_method_of_type(PyTypeObject *type_obj, PyObject *attr_name) {
|
||||||
|
PyObject *descr = _PyType_Lookup(type_obj, attr_name);
|
||||||
|
return bool((descr != nullptr) && PyInstanceMethod_Check(descr));
|
||||||
|
}
|
||||||
|
|
||||||
|
inline object try_get_cpp_conduit_method(PyObject *obj) {
|
||||||
|
if (PyType_Check(obj)) {
|
||||||
|
return object();
|
||||||
|
}
|
||||||
|
PyTypeObject *type_obj = Py_TYPE(obj);
|
||||||
|
str attr_name("_pybind11_conduit_v1_");
|
||||||
|
bool assumed_to_be_callable = false;
|
||||||
|
if (type_is_managed_by_our_internals(type_obj)) {
|
||||||
|
if (!is_instance_method_of_type(type_obj, attr_name.ptr())) {
|
||||||
|
return object();
|
||||||
|
}
|
||||||
|
assumed_to_be_callable = true;
|
||||||
|
}
|
||||||
|
PyObject *method = PyObject_GetAttr(obj, attr_name.ptr());
|
||||||
|
if (method == nullptr) {
|
||||||
|
PyErr_Clear();
|
||||||
|
return object();
|
||||||
|
}
|
||||||
|
if (!assumed_to_be_callable && PyCallable_Check(method) == 0) {
|
||||||
|
Py_DECREF(method);
|
||||||
|
return object();
|
||||||
|
}
|
||||||
|
return reinterpret_steal<object>(method);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void *try_raw_pointer_ephemeral_from_cpp_conduit(handle src,
|
||||||
|
const std::type_info *cpp_type_info) {
|
||||||
|
object method = try_get_cpp_conduit_method(src.ptr());
|
||||||
|
if (method) {
|
||||||
|
capsule cpp_type_info_capsule(const_cast<void *>(static_cast<const void *>(cpp_type_info)),
|
||||||
|
typeid(std::type_info).name());
|
||||||
|
object cpp_conduit = method(bytes(PYBIND11_PLATFORM_ABI_ID),
|
||||||
|
cpp_type_info_capsule,
|
||||||
|
bytes("raw_pointer_ephemeral"));
|
||||||
|
if (isinstance<capsule>(cpp_conduit)) {
|
||||||
|
return reinterpret_borrow<capsule>(cpp_conduit).get_pointer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define PYBIND11_HAS_CPP_CONDUIT 1
|
||||||
|
|
||||||
|
PYBIND11_NAMESPACE_END(detail)
|
||||||
|
PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
|
@ -50,12 +50,12 @@ inline void try_translate_exceptions() {
|
|||||||
- delegate translation to the next translator by throwing a new type of exception.
|
- delegate translation to the next translator by throwing a new type of exception.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
bool handled = with_internals([&](internals &internals) {
|
bool handled = with_exception_translators(
|
||||||
auto &local_exception_translators = get_local_internals().registered_exception_translators;
|
[&](std::forward_list<ExceptionTranslator> &exception_translators,
|
||||||
|
std::forward_list<ExceptionTranslator> &local_exception_translators) {
|
||||||
if (detail::apply_exception_translators(local_exception_translators)) {
|
if (detail::apply_exception_translators(local_exception_translators)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
auto &exception_translators = internals.registered_exception_translators;
|
|
||||||
if (detail::apply_exception_translators(exception_translators)) {
|
if (detail::apply_exception_translators(exception_translators)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,11 @@
|
|||||||
# if PY_VERSION_HEX >= 0x030C0000 || defined(_MSC_VER)
|
# if PY_VERSION_HEX >= 0x030C0000 || defined(_MSC_VER)
|
||||||
// Version bump for Python 3.12+, before first 3.12 beta release.
|
// Version bump for Python 3.12+, before first 3.12 beta release.
|
||||||
// Version bump for MSVC piggy-backed on PR #4779. See comments there.
|
// Version bump for MSVC piggy-backed on PR #4779. See comments there.
|
||||||
|
# ifdef Py_GIL_DISABLED
|
||||||
|
# define PYBIND11_INTERNALS_VERSION 6
|
||||||
|
# else
|
||||||
# define PYBIND11_INTERNALS_VERSION 5
|
# define PYBIND11_INTERNALS_VERSION 5
|
||||||
|
# endif
|
||||||
# else
|
# else
|
||||||
# define PYBIND11_INTERNALS_VERSION 4
|
# define PYBIND11_INTERNALS_VERSION 4
|
||||||
# endif
|
# endif
|
||||||
@ -177,6 +181,7 @@ static_assert(sizeof(instance_map_shard) % 64 == 0,
|
|||||||
struct internals {
|
struct internals {
|
||||||
#ifdef Py_GIL_DISABLED
|
#ifdef Py_GIL_DISABLED
|
||||||
pymutex mutex;
|
pymutex mutex;
|
||||||
|
pymutex exception_translator_mutex;
|
||||||
#endif
|
#endif
|
||||||
// std::type_index -> pybind11's type information
|
// std::type_index -> pybind11's type information
|
||||||
type_map<type_info *> registered_types_cpp;
|
type_map<type_info *> registered_types_cpp;
|
||||||
@ -321,15 +326,17 @@ struct type_info {
|
|||||||
# define PYBIND11_INTERNALS_KIND ""
|
# define PYBIND11_INTERNALS_KIND ""
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define PYBIND11_PLATFORM_ABI_ID \
|
||||||
|
PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB PYBIND11_BUILD_ABI \
|
||||||
|
PYBIND11_BUILD_TYPE
|
||||||
|
|
||||||
#define PYBIND11_INTERNALS_ID \
|
#define PYBIND11_INTERNALS_ID \
|
||||||
"__pybind11_internals_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
"__pybind11_internals_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
||||||
PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB \
|
PYBIND11_PLATFORM_ABI_ID "__"
|
||||||
PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
|
|
||||||
|
|
||||||
#define PYBIND11_MODULE_LOCAL_ID \
|
#define PYBIND11_MODULE_LOCAL_ID \
|
||||||
"__pybind11_module_local_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
"__pybind11_module_local_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
||||||
PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB \
|
PYBIND11_PLATFORM_ABI_ID "__"
|
||||||
PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
|
|
||||||
|
|
||||||
/// Each module locally stores a pointer to the `internals` data. The data
|
/// Each module locally stores a pointer to the `internals` data. The data
|
||||||
/// itself is shared among modules with the same `PYBIND11_INTERNALS_ID`.
|
/// itself is shared among modules with the same `PYBIND11_INTERNALS_ID`.
|
||||||
@ -641,6 +648,19 @@ inline auto with_internals(const F &cb) -> decltype(cb(get_internals())) {
|
|||||||
return cb(internals);
|
return cb(internals);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename F>
|
||||||
|
inline auto with_exception_translators(const F &cb)
|
||||||
|
-> decltype(cb(get_internals().registered_exception_translators,
|
||||||
|
get_local_internals().registered_exception_translators)) {
|
||||||
|
auto &internals = get_internals();
|
||||||
|
#ifdef Py_GIL_DISABLED
|
||||||
|
std::unique_lock<pymutex> lock((internals).exception_translator_mutex);
|
||||||
|
#endif
|
||||||
|
auto &local_internals = get_local_internals();
|
||||||
|
return cb(internals.registered_exception_translators,
|
||||||
|
local_internals.registered_exception_translators);
|
||||||
|
}
|
||||||
|
|
||||||
inline std::uint64_t mix64(std::uint64_t z) {
|
inline std::uint64_t mix64(std::uint64_t z) {
|
||||||
// David Stafford's variant 13 of the MurmurHash3 finalizer popularized
|
// David Stafford's variant 13 of the MurmurHash3 finalizer popularized
|
||||||
// by the SplitMix PRNG.
|
// by the SplitMix PRNG.
|
||||||
|
@ -12,14 +12,17 @@
|
|||||||
#include <pybind11/pytypes.h>
|
#include <pybind11/pytypes.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
#include "cpp_conduit.h"
|
||||||
#include "descr.h"
|
#include "descr.h"
|
||||||
#include "internals.h"
|
#include "internals.h"
|
||||||
#include "typeid.h"
|
#include "typeid.h"
|
||||||
#include "value_and_holder.h"
|
#include "value_and_holder.h"
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <cstring>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <new>
|
#include <new>
|
||||||
|
#include <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <typeindex>
|
#include <typeindex>
|
||||||
@ -611,6 +614,13 @@ public:
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
bool try_cpp_conduit(handle src) {
|
||||||
|
value = try_raw_pointer_ephemeral_from_cpp_conduit(src, cpptype);
|
||||||
|
if (value != nullptr) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
void check_holder_compat() {}
|
void check_holder_compat() {}
|
||||||
|
|
||||||
PYBIND11_NOINLINE static void *local_load(PyObject *src, const type_info *ti) {
|
PYBIND11_NOINLINE static void *local_load(PyObject *src, const type_info *ti) {
|
||||||
@ -742,6 +752,10 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (convert && cpptype && this_.try_cpp_conduit(src)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -769,6 +783,32 @@ public:
|
|||||||
void *value = nullptr;
|
void *value = nullptr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline object cpp_conduit_method(handle self,
|
||||||
|
const bytes &pybind11_platform_abi_id,
|
||||||
|
const capsule &cpp_type_info_capsule,
|
||||||
|
const bytes &pointer_kind) {
|
||||||
|
#ifdef PYBIND11_HAS_STRING_VIEW
|
||||||
|
using cpp_str = std::string_view;
|
||||||
|
#else
|
||||||
|
using cpp_str = std::string;
|
||||||
|
#endif
|
||||||
|
if (cpp_str(pybind11_platform_abi_id) != PYBIND11_PLATFORM_ABI_ID) {
|
||||||
|
return none();
|
||||||
|
}
|
||||||
|
if (std::strcmp(cpp_type_info_capsule.name(), typeid(std::type_info).name()) != 0) {
|
||||||
|
return none();
|
||||||
|
}
|
||||||
|
if (cpp_str(pointer_kind) != "raw_pointer_ephemeral") {
|
||||||
|
throw std::runtime_error("Invalid pointer_kind: \"" + std::string(pointer_kind) + "\"");
|
||||||
|
}
|
||||||
|
const auto *cpp_type_info = cpp_type_info_capsule.get_pointer<const std::type_info>();
|
||||||
|
type_caster_generic caster(*cpp_type_info);
|
||||||
|
if (!caster.load(self, false)) {
|
||||||
|
return none();
|
||||||
|
}
|
||||||
|
return capsule(caster.value, cpp_type_info->name());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine suitable casting operator for pointer-or-lvalue-casting type casters. The type caster
|
* Determine suitable casting operator for pointer-or-lvalue-casting type casters. The type caster
|
||||||
* needs to provide `operator T*()` and `operator T&()` operators.
|
* needs to provide `operator T*()` and `operator T&()` operators.
|
||||||
|
@ -592,7 +592,8 @@ protected:
|
|||||||
int index = 0;
|
int index = 0;
|
||||||
/* Create a nice pydoc rec including all signatures and
|
/* Create a nice pydoc rec including all signatures and
|
||||||
docstrings of the functions in the overload chain */
|
docstrings of the functions in the overload chain */
|
||||||
if (chain && options::show_function_signatures()) {
|
if (chain && options::show_function_signatures()
|
||||||
|
&& std::strcmp(rec->name, "_pybind11_conduit_v1_") != 0) {
|
||||||
// First a generic signature
|
// First a generic signature
|
||||||
signatures += rec->name;
|
signatures += rec->name;
|
||||||
signatures += "(*args, **kwargs)\n";
|
signatures += "(*args, **kwargs)\n";
|
||||||
@ -601,7 +602,8 @@ protected:
|
|||||||
// Then specific overload signatures
|
// Then specific overload signatures
|
||||||
bool first_user_def = true;
|
bool first_user_def = true;
|
||||||
for (auto *it = chain_start; it != nullptr; it = it->next) {
|
for (auto *it = chain_start; it != nullptr; it = it->next) {
|
||||||
if (options::show_function_signatures()) {
|
if (options::show_function_signatures()
|
||||||
|
&& std::strcmp(rec->name, "_pybind11_conduit_v1_") != 0) {
|
||||||
if (index > 0) {
|
if (index > 0) {
|
||||||
signatures += '\n';
|
signatures += '\n';
|
||||||
}
|
}
|
||||||
@ -1380,7 +1382,17 @@ protected:
|
|||||||
} else {
|
} else {
|
||||||
internals.registered_types_cpp[tindex] = tinfo;
|
internals.registered_types_cpp[tindex] = tinfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PYBIND11_WARNING_PUSH
|
||||||
|
#if defined(__GNUC__) && __GNUC__ == 12
|
||||||
|
// When using GCC 12 these warnings are disabled as they trigger
|
||||||
|
// false positive warnings. Discussed here:
|
||||||
|
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115824.
|
||||||
|
PYBIND11_WARNING_DISABLE_GCC("-Warray-bounds")
|
||||||
|
PYBIND11_WARNING_DISABLE_GCC("-Wstringop-overread")
|
||||||
|
#endif
|
||||||
internals.registered_types_py[(PyTypeObject *) m_ptr] = {tinfo};
|
internals.registered_types_py[(PyTypeObject *) m_ptr] = {tinfo};
|
||||||
|
PYBIND11_WARNING_POP
|
||||||
});
|
});
|
||||||
|
|
||||||
if (rec.bases.size() > 1 || rec.multiple_inheritance) {
|
if (rec.bases.size() > 1 || rec.multiple_inheritance) {
|
||||||
@ -1601,6 +1613,7 @@ public:
|
|||||||
= instances[std::type_index(typeid(type))];
|
= instances[std::type_index(typeid(type))];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
def("_pybind11_conduit_v1_", cpp_conduit_method);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Base, detail::enable_if_t<is_base<Base>::value, int> = 0>
|
template <typename Base, detail::enable_if_t<is_base<Base>::value, int> = 0>
|
||||||
@ -2573,9 +2586,11 @@ void implicitly_convertible() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline void register_exception_translator(ExceptionTranslator &&translator) {
|
inline void register_exception_translator(ExceptionTranslator &&translator) {
|
||||||
detail::with_internals([&](detail::internals &internals) {
|
detail::with_exception_translators(
|
||||||
internals.registered_exception_translators.push_front(
|
[&](std::forward_list<ExceptionTranslator> &exception_translators,
|
||||||
std::forward<ExceptionTranslator>(translator));
|
std::forward_list<ExceptionTranslator> &local_exception_translators) {
|
||||||
|
(void) local_exception_translators;
|
||||||
|
exception_translators.push_front(std::forward<ExceptionTranslator>(translator));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2586,10 +2601,11 @@ inline void register_exception_translator(ExceptionTranslator &&translator) {
|
|||||||
* the exception.
|
* the exception.
|
||||||
*/
|
*/
|
||||||
inline void register_local_exception_translator(ExceptionTranslator &&translator) {
|
inline void register_local_exception_translator(ExceptionTranslator &&translator) {
|
||||||
detail::with_internals([&](detail::internals &internals) {
|
detail::with_exception_translators(
|
||||||
(void) internals;
|
[&](std::forward_list<ExceptionTranslator> &exception_translators,
|
||||||
detail::get_local_internals().registered_exception_translators.push_front(
|
std::forward_list<ExceptionTranslator> &local_exception_translators) {
|
||||||
std::forward<ExceptionTranslator>(translator));
|
(void) exception_translators;
|
||||||
|
local_exception_translators.push_front(std::forward<ExceptionTranslator>(translator));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,6 +118,7 @@ set(PYBIND11_TEST_FILES
|
|||||||
test_const_name
|
test_const_name
|
||||||
test_constants_and_functions
|
test_constants_and_functions
|
||||||
test_copy_move
|
test_copy_move
|
||||||
|
test_cpp_conduit
|
||||||
test_custom_type_casters
|
test_custom_type_casters
|
||||||
test_custom_type_setup
|
test_custom_type_setup
|
||||||
test_docstring_options
|
test_docstring_options
|
||||||
@ -218,6 +219,8 @@ tests_extra_targets("test_exceptions.py;test_local_bindings.py;test_stl.py;test_
|
|||||||
# And add additional targets for other tests.
|
# And add additional targets for other tests.
|
||||||
tests_extra_targets("test_exceptions.py" "cross_module_interleaved_error_already_set")
|
tests_extra_targets("test_exceptions.py" "cross_module_interleaved_error_already_set")
|
||||||
tests_extra_targets("test_gil_scoped.py" "cross_module_gil_utils")
|
tests_extra_targets("test_gil_scoped.py" "cross_module_gil_utils")
|
||||||
|
tests_extra_targets("test_cpp_conduit.py"
|
||||||
|
"exo_planet_pybind11;exo_planet_c_api;home_planet_very_lonely_traveler")
|
||||||
|
|
||||||
set(PYBIND11_EIGEN_REPO
|
set(PYBIND11_EIGEN_REPO
|
||||||
"https://gitlab.com/libeigen/eigen.git"
|
"https://gitlab.com/libeigen/eigen.git"
|
||||||
|
10
tests/custom_exceptions.py
Normal file
10
tests/custom_exceptions.py
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
|
||||||
|
class PythonMyException7(Exception):
|
||||||
|
def __init__(self, message):
|
||||||
|
self.message = message
|
||||||
|
super().__init__(message)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return "[PythonMyException7]: " + self.message.a
|
103
tests/exo_planet_c_api.cpp
Normal file
103
tests/exo_planet_c_api.cpp
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
// THIS MUST STAY AT THE TOP!
|
||||||
|
#include <pybind11/pybind11.h> // EXCLUSIVELY for PYBIND11_PLATFORM_ABI_ID
|
||||||
|
// Potential future direction to maximize reusability:
|
||||||
|
// (e.g. for use from SWIG, Cython, PyCLIF, nanobind):
|
||||||
|
// #include <pybind11/compat/platform_abi_id.h>
|
||||||
|
// This would only depend on:
|
||||||
|
// 1. A C++ compiler, WITHOUT requiring -fexceptions.
|
||||||
|
// 2. Python.h
|
||||||
|
|
||||||
|
#include "test_cpp_conduit_traveler_types.h"
|
||||||
|
|
||||||
|
#include <Python.h>
|
||||||
|
#include <typeinfo>
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
void *get_cpp_conduit_void_ptr(PyObject *py_obj, const std::type_info *cpp_type_info) {
|
||||||
|
PyObject *cpp_type_info_capsule
|
||||||
|
= PyCapsule_New(const_cast<void *>(static_cast<const void *>(cpp_type_info)),
|
||||||
|
typeid(std::type_info).name(),
|
||||||
|
nullptr);
|
||||||
|
if (cpp_type_info_capsule == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
PyObject *cpp_conduit = PyObject_CallMethod(py_obj,
|
||||||
|
"_pybind11_conduit_v1_",
|
||||||
|
"yOy",
|
||||||
|
PYBIND11_PLATFORM_ABI_ID,
|
||||||
|
cpp_type_info_capsule,
|
||||||
|
"raw_pointer_ephemeral");
|
||||||
|
Py_DECREF(cpp_type_info_capsule);
|
||||||
|
if (cpp_conduit == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
void *void_ptr = PyCapsule_GetPointer(cpp_conduit, cpp_type_info->name());
|
||||||
|
Py_DECREF(cpp_conduit);
|
||||||
|
if (PyErr_Occurred()) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return void_ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
T *get_cpp_conduit_type_ptr(PyObject *py_obj) {
|
||||||
|
void *void_ptr = get_cpp_conduit_void_ptr(py_obj, &typeid(T));
|
||||||
|
if (void_ptr == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return static_cast<T *>(void_ptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" PyObject *wrapGetLuggage(PyObject * /*self*/, PyObject *traveler) {
|
||||||
|
const auto *cpp_traveler
|
||||||
|
= get_cpp_conduit_type_ptr<pybind11_tests::test_cpp_conduit::Traveler>(traveler);
|
||||||
|
if (cpp_traveler == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return PyUnicode_FromString(cpp_traveler->luggage.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" PyObject *wrapGetPoints(PyObject * /*self*/, PyObject *premium_traveler) {
|
||||||
|
const auto *cpp_premium_traveler
|
||||||
|
= get_cpp_conduit_type_ptr<pybind11_tests::test_cpp_conduit::PremiumTraveler>(
|
||||||
|
premium_traveler);
|
||||||
|
if (cpp_premium_traveler == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return PyLong_FromLong(static_cast<long>(cpp_premium_traveler->points));
|
||||||
|
}
|
||||||
|
|
||||||
|
PyMethodDef ThisMethodDef[] = {{"GetLuggage", wrapGetLuggage, METH_O, nullptr},
|
||||||
|
{"GetPoints", wrapGetPoints, METH_O, nullptr},
|
||||||
|
{nullptr, nullptr, 0, nullptr}};
|
||||||
|
|
||||||
|
struct PyModuleDef ThisModuleDef = {
|
||||||
|
PyModuleDef_HEAD_INIT, // m_base
|
||||||
|
"exo_planet_c_api", // m_name
|
||||||
|
nullptr, // m_doc
|
||||||
|
-1, // m_size
|
||||||
|
ThisMethodDef, // m_methods
|
||||||
|
nullptr, // m_slots
|
||||||
|
nullptr, // m_traverse
|
||||||
|
nullptr, // m_clear
|
||||||
|
nullptr // m_free
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
#if defined(WIN32) || defined(_WIN32)
|
||||||
|
# define EXO_PLANET_C_API_EXPORT __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
# define EXO_PLANET_C_API_EXPORT __attribute__((visibility("default")))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
extern "C" EXO_PLANET_C_API_EXPORT PyObject *PyInit_exo_planet_c_api() {
|
||||||
|
PyObject *m = PyModule_Create(&ThisModuleDef);
|
||||||
|
if (m == nullptr) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
return m;
|
||||||
|
}
|
19
tests/exo_planet_pybind11.cpp
Normal file
19
tests/exo_planet_pybind11.cpp
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#if defined(PYBIND11_INTERNALS_VERSION)
|
||||||
|
# undef PYBIND11_INTERNALS_VERSION
|
||||||
|
#endif
|
||||||
|
#define PYBIND11_INTERNALS_VERSION 900000001
|
||||||
|
|
||||||
|
#include "test_cpp_conduit_traveler_bindings.h"
|
||||||
|
|
||||||
|
namespace pybind11_tests {
|
||||||
|
namespace test_cpp_conduit {
|
||||||
|
|
||||||
|
PYBIND11_MODULE(exo_planet_pybind11, m) {
|
||||||
|
wrap_traveler(m);
|
||||||
|
m.def("wrap_very_lonely_traveler", [m]() { wrap_very_lonely_traveler(m); });
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace test_cpp_conduit
|
||||||
|
} // namespace pybind11_tests
|
@ -53,6 +53,7 @@ main_headers = {
|
|||||||
detail_headers = {
|
detail_headers = {
|
||||||
"include/pybind11/detail/class.h",
|
"include/pybind11/detail/class.h",
|
||||||
"include/pybind11/detail/common.h",
|
"include/pybind11/detail/common.h",
|
||||||
|
"include/pybind11/detail/cpp_conduit.h",
|
||||||
"include/pybind11/detail/descr.h",
|
"include/pybind11/detail/descr.h",
|
||||||
"include/pybind11/detail/init.h",
|
"include/pybind11/detail/init.h",
|
||||||
"include/pybind11/detail/internals.h",
|
"include/pybind11/detail/internals.h",
|
||||||
|
13
tests/home_planet_very_lonely_traveler.cpp
Normal file
13
tests/home_planet_very_lonely_traveler.cpp
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#include "test_cpp_conduit_traveler_bindings.h"
|
||||||
|
|
||||||
|
namespace pybind11_tests {
|
||||||
|
namespace test_cpp_conduit {
|
||||||
|
|
||||||
|
PYBIND11_MODULE(home_planet_very_lonely_traveler, m) {
|
||||||
|
m.def("wrap_very_lonely_traveler", [m]() { wrap_very_lonely_traveler(m); });
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace test_cpp_conduit
|
||||||
|
} // namespace pybind11_tests
|
22
tests/test_cpp_conduit.cpp
Normal file
22
tests/test_cpp_conduit.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#include "pybind11_tests.h"
|
||||||
|
#include "test_cpp_conduit_traveler_bindings.h"
|
||||||
|
|
||||||
|
#include <typeinfo>
|
||||||
|
|
||||||
|
namespace pybind11_tests {
|
||||||
|
namespace test_cpp_conduit {
|
||||||
|
|
||||||
|
TEST_SUBMODULE(cpp_conduit, m) {
|
||||||
|
m.attr("PYBIND11_PLATFORM_ABI_ID") = py::bytes(PYBIND11_PLATFORM_ABI_ID);
|
||||||
|
m.attr("cpp_type_info_capsule_Traveler")
|
||||||
|
= py::capsule(&typeid(Traveler), typeid(std::type_info).name());
|
||||||
|
m.attr("cpp_type_info_capsule_int") = py::capsule(&typeid(int), typeid(std::type_info).name());
|
||||||
|
|
||||||
|
wrap_traveler(m);
|
||||||
|
wrap_lonely_traveler(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace test_cpp_conduit
|
||||||
|
} // namespace pybind11_tests
|
162
tests/test_cpp_conduit.py
Normal file
162
tests/test_cpp_conduit.py
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
# Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import exo_planet_c_api
|
||||||
|
import exo_planet_pybind11
|
||||||
|
import home_planet_very_lonely_traveler
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from pybind11_tests import cpp_conduit as home_planet
|
||||||
|
|
||||||
|
|
||||||
|
def test_traveler_getattr_actually_exists():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
assert t_h.any_name == "Traveler GetAttr: any_name luggage: home"
|
||||||
|
|
||||||
|
|
||||||
|
def test_premium_traveler_getattr_actually_exists():
|
||||||
|
t_h = home_planet.PremiumTraveler("home", 7)
|
||||||
|
assert t_h.secret_name == "PremiumTraveler GetAttr: secret_name points: 7"
|
||||||
|
|
||||||
|
|
||||||
|
def test_call_cpp_conduit_success():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
cap = t_h._pybind11_conduit_v1_(
|
||||||
|
home_planet.PYBIND11_PLATFORM_ABI_ID,
|
||||||
|
home_planet.cpp_type_info_capsule_Traveler,
|
||||||
|
b"raw_pointer_ephemeral",
|
||||||
|
)
|
||||||
|
assert cap.__class__.__name__ == "PyCapsule"
|
||||||
|
|
||||||
|
|
||||||
|
def test_call_cpp_conduit_platform_abi_id_mismatch():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
cap = t_h._pybind11_conduit_v1_(
|
||||||
|
home_planet.PYBIND11_PLATFORM_ABI_ID + b"MISMATCH",
|
||||||
|
home_planet.cpp_type_info_capsule_Traveler,
|
||||||
|
b"raw_pointer_ephemeral",
|
||||||
|
)
|
||||||
|
assert cap is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_call_cpp_conduit_cpp_type_info_capsule_mismatch():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
cap = t_h._pybind11_conduit_v1_(
|
||||||
|
home_planet.PYBIND11_PLATFORM_ABI_ID,
|
||||||
|
home_planet.cpp_type_info_capsule_int,
|
||||||
|
b"raw_pointer_ephemeral",
|
||||||
|
)
|
||||||
|
assert cap is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_call_cpp_conduit_pointer_kind_invalid():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
with pytest.raises(
|
||||||
|
RuntimeError, match='^Invalid pointer_kind: "raw_pointer_ephemreal"$'
|
||||||
|
):
|
||||||
|
t_h._pybind11_conduit_v1_(
|
||||||
|
home_planet.PYBIND11_PLATFORM_ABI_ID,
|
||||||
|
home_planet.cpp_type_info_capsule_Traveler,
|
||||||
|
b"raw_pointer_ephemreal",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_home_only_basic():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
assert t_h.luggage == "home"
|
||||||
|
assert home_planet.get_luggage(t_h) == "home"
|
||||||
|
|
||||||
|
|
||||||
|
def test_home_only_premium():
|
||||||
|
p_h = home_planet.PremiumTraveler("home", 2)
|
||||||
|
assert p_h.luggage == "home"
|
||||||
|
assert home_planet.get_luggage(p_h) == "home"
|
||||||
|
assert home_planet.get_points(p_h) == 2
|
||||||
|
|
||||||
|
|
||||||
|
def test_exo_only_basic():
|
||||||
|
t_e = exo_planet_pybind11.Traveler("exo")
|
||||||
|
assert t_e.luggage == "exo"
|
||||||
|
assert exo_planet_pybind11.get_luggage(t_e) == "exo"
|
||||||
|
|
||||||
|
|
||||||
|
def test_exo_only_premium():
|
||||||
|
p_e = exo_planet_pybind11.PremiumTraveler("exo", 3)
|
||||||
|
assert p_e.luggage == "exo"
|
||||||
|
assert exo_planet_pybind11.get_luggage(p_e) == "exo"
|
||||||
|
assert exo_planet_pybind11.get_points(p_e) == 3
|
||||||
|
|
||||||
|
|
||||||
|
def test_home_passed_to_exo_basic():
|
||||||
|
t_h = home_planet.Traveler("home")
|
||||||
|
assert exo_planet_pybind11.get_luggage(t_h) == "home"
|
||||||
|
|
||||||
|
|
||||||
|
def test_exo_passed_to_home_basic():
|
||||||
|
t_e = exo_planet_pybind11.Traveler("exo")
|
||||||
|
assert home_planet.get_luggage(t_e) == "exo"
|
||||||
|
|
||||||
|
|
||||||
|
def test_home_passed_to_exo_premium():
|
||||||
|
p_h = home_planet.PremiumTraveler("home", 2)
|
||||||
|
assert exo_planet_pybind11.get_luggage(p_h) == "home"
|
||||||
|
assert exo_planet_pybind11.get_points(p_h) == 2
|
||||||
|
|
||||||
|
|
||||||
|
def test_exo_passed_to_home_premium():
|
||||||
|
p_e = exo_planet_pybind11.PremiumTraveler("exo", 3)
|
||||||
|
assert home_planet.get_luggage(p_e) == "exo"
|
||||||
|
assert home_planet.get_points(p_e) == 3
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"traveler_type", [home_planet.Traveler, exo_planet_pybind11.Traveler]
|
||||||
|
)
|
||||||
|
def test_exo_planet_c_api_traveler(traveler_type):
|
||||||
|
t = traveler_type("socks")
|
||||||
|
assert exo_planet_c_api.GetLuggage(t) == "socks"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"premium_traveler_type",
|
||||||
|
[home_planet.PremiumTraveler, exo_planet_pybind11.PremiumTraveler],
|
||||||
|
)
|
||||||
|
def test_exo_planet_c_api_premium_traveler(premium_traveler_type):
|
||||||
|
pt = premium_traveler_type("gucci", 5)
|
||||||
|
assert exo_planet_c_api.GetLuggage(pt) == "gucci"
|
||||||
|
assert exo_planet_c_api.GetPoints(pt) == 5
|
||||||
|
|
||||||
|
|
||||||
|
def test_home_planet_wrap_very_lonely_traveler():
|
||||||
|
# This does not exercise the cpp_conduit feature, but is here to
|
||||||
|
# demonstrate that the cpp_conduit feature does not solve all
|
||||||
|
# cross-extension interoperability issues.
|
||||||
|
# Here is the proof that the following works for extensions with
|
||||||
|
# matching `PYBIND11_INTERNALS_ID`s:
|
||||||
|
# test_cpp_conduit.cpp:
|
||||||
|
# py::class_<LonelyTraveler>
|
||||||
|
# home_planet_very_lonely_traveler.cpp:
|
||||||
|
# py::class_<VeryLonelyTraveler, LonelyTraveler>
|
||||||
|
# See test_exo_planet_pybind11_wrap_very_lonely_traveler() for the negative
|
||||||
|
# test.
|
||||||
|
assert home_planet.LonelyTraveler is not None # Verify that the base class exists.
|
||||||
|
home_planet_very_lonely_traveler.wrap_very_lonely_traveler()
|
||||||
|
# Ensure that the derived class exists.
|
||||||
|
assert home_planet_very_lonely_traveler.VeryLonelyTraveler is not None
|
||||||
|
|
||||||
|
|
||||||
|
def test_exo_planet_pybind11_wrap_very_lonely_traveler():
|
||||||
|
# See comment under test_home_planet_wrap_very_lonely_traveler() first.
|
||||||
|
# Here the `PYBIND11_INTERNALS_ID`s don't match between:
|
||||||
|
# test_cpp_conduit.cpp:
|
||||||
|
# py::class_<LonelyTraveler>
|
||||||
|
# exo_planet_pybind11.cpp:
|
||||||
|
# py::class_<VeryLonelyTraveler, LonelyTraveler>
|
||||||
|
assert home_planet.LonelyTraveler is not None # Verify that the base class exists.
|
||||||
|
with pytest.raises(
|
||||||
|
RuntimeError,
|
||||||
|
match='^generic_type: type "VeryLonelyTraveler" referenced unknown base type '
|
||||||
|
'"pybind11_tests::test_cpp_conduit::LonelyTraveler"$',
|
||||||
|
):
|
||||||
|
exo_planet_pybind11.wrap_very_lonely_traveler()
|
47
tests/test_cpp_conduit_traveler_bindings.h
Normal file
47
tests/test_cpp_conduit_traveler_bindings.h
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <pybind11/pybind11.h>
|
||||||
|
|
||||||
|
#include "test_cpp_conduit_traveler_types.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace pybind11_tests {
|
||||||
|
namespace test_cpp_conduit {
|
||||||
|
|
||||||
|
namespace py = pybind11;
|
||||||
|
|
||||||
|
inline void wrap_traveler(py::module_ m) {
|
||||||
|
py::class_<Traveler>(m, "Traveler")
|
||||||
|
.def(py::init<std::string>())
|
||||||
|
.def_readwrite("luggage", &Traveler::luggage)
|
||||||
|
// See issue #3788:
|
||||||
|
.def("__getattr__", [](const Traveler &self, const std::string &key) {
|
||||||
|
return "Traveler GetAttr: " + key + " luggage: " + self.luggage;
|
||||||
|
});
|
||||||
|
|
||||||
|
m.def("get_luggage", [](const Traveler &person) { return person.luggage; });
|
||||||
|
|
||||||
|
py::class_<PremiumTraveler, Traveler>(m, "PremiumTraveler")
|
||||||
|
.def(py::init<std::string, int>())
|
||||||
|
.def_readwrite("points", &PremiumTraveler::points)
|
||||||
|
// See issue #3788:
|
||||||
|
.def("__getattr__", [](const PremiumTraveler &self, const std::string &key) {
|
||||||
|
return "PremiumTraveler GetAttr: " + key + " points: " + std::to_string(self.points);
|
||||||
|
});
|
||||||
|
|
||||||
|
m.def("get_points", [](const PremiumTraveler &person) { return person.points; });
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void wrap_lonely_traveler(py::module_ m) {
|
||||||
|
py::class_<LonelyTraveler>(std::move(m), "LonelyTraveler");
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void wrap_very_lonely_traveler(py::module_ m) {
|
||||||
|
py::class_<VeryLonelyTraveler, LonelyTraveler>(std::move(m), "VeryLonelyTraveler");
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace test_cpp_conduit
|
||||||
|
} // namespace pybind11_tests
|
25
tests/test_cpp_conduit_traveler_types.h
Normal file
25
tests/test_cpp_conduit_traveler_types.h
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
// Copyright (c) 2024 The pybind Community.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace pybind11_tests {
|
||||||
|
namespace test_cpp_conduit {
|
||||||
|
|
||||||
|
struct Traveler {
|
||||||
|
explicit Traveler(const std::string &luggage) : luggage(luggage) {}
|
||||||
|
std::string luggage;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PremiumTraveler : Traveler {
|
||||||
|
explicit PremiumTraveler(const std::string &luggage, int points)
|
||||||
|
: Traveler(luggage), points(points) {}
|
||||||
|
int points;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct LonelyTraveler {};
|
||||||
|
struct VeryLonelyTraveler : LonelyTraveler {};
|
||||||
|
|
||||||
|
} // namespace test_cpp_conduit
|
||||||
|
} // namespace pybind11_tests
|
@ -111,6 +111,16 @@ struct PythonAlreadySetInDestructor {
|
|||||||
py::str s;
|
py::str s;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct CustomData {
|
||||||
|
explicit CustomData(const std::string &a) : a(a) {}
|
||||||
|
std::string a;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MyException7 {
|
||||||
|
explicit MyException7(const CustomData &message) : message(message) {}
|
||||||
|
CustomData message;
|
||||||
|
};
|
||||||
|
|
||||||
TEST_SUBMODULE(exceptions, m) {
|
TEST_SUBMODULE(exceptions, m) {
|
||||||
m.def("throw_std_exception",
|
m.def("throw_std_exception",
|
||||||
[]() { throw std::runtime_error("This exception was intentionally thrown."); });
|
[]() { throw std::runtime_error("This exception was intentionally thrown."); });
|
||||||
@ -385,4 +395,33 @@ TEST_SUBMODULE(exceptions, m) {
|
|||||||
|
|
||||||
// m.def("pass_exception_void", [](const py::exception<void>&) {}); // Does not compile.
|
// m.def("pass_exception_void", [](const py::exception<void>&) {}); // Does not compile.
|
||||||
m.def("return_exception_void", []() { return py::exception<void>(); });
|
m.def("return_exception_void", []() { return py::exception<void>(); });
|
||||||
|
|
||||||
|
m.def("throws7", []() {
|
||||||
|
auto data = CustomData("abc");
|
||||||
|
throw MyException7(data);
|
||||||
|
});
|
||||||
|
|
||||||
|
py::class_<CustomData>(m, "CustomData", py::module_local())
|
||||||
|
.def(py::init<const std::string &>())
|
||||||
|
.def_readwrite("a", &CustomData::a);
|
||||||
|
|
||||||
|
PYBIND11_CONSTINIT static py::gil_safe_call_once_and_store<py::object>
|
||||||
|
PythonMyException7_storage;
|
||||||
|
PythonMyException7_storage.call_once_and_store_result([&]() {
|
||||||
|
auto mod = py::module_::import("custom_exceptions");
|
||||||
|
py::object obj = mod.attr("PythonMyException7");
|
||||||
|
return obj;
|
||||||
|
});
|
||||||
|
|
||||||
|
py::register_local_exception_translator([](std::exception_ptr p) {
|
||||||
|
try {
|
||||||
|
if (p) {
|
||||||
|
std::rethrow_exception(p);
|
||||||
|
}
|
||||||
|
} catch (const MyException7 &e) {
|
||||||
|
auto exc_type = PythonMyException7_storage.get_stored();
|
||||||
|
py::object exc_inst = exc_type(e.message);
|
||||||
|
PyErr_SetObject(PyExc_Exception, exc_inst.ptr());
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ from __future__ import annotations
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from custom_exceptions import PythonMyException7
|
||||||
|
|
||||||
import env
|
import env
|
||||||
import pybind11_cross_module_tests as cm
|
import pybind11_cross_module_tests as cm
|
||||||
@ -195,6 +196,10 @@ def test_custom(msg):
|
|||||||
raise RuntimeError("Exception error: caught child from parent") from err
|
raise RuntimeError("Exception error: caught child from parent") from err
|
||||||
assert msg(excinfo.value) == "this is a helper-defined translated exception"
|
assert msg(excinfo.value) == "this is a helper-defined translated exception"
|
||||||
|
|
||||||
|
with pytest.raises(PythonMyException7) as excinfo:
|
||||||
|
m.throws7()
|
||||||
|
assert msg(excinfo.value) == "[PythonMyException7]: abc"
|
||||||
|
|
||||||
|
|
||||||
def test_nested_throws(capture):
|
def test_nested_throws(capture):
|
||||||
"""Tests nested (e.g. C++ -> Python -> C++) exception handling"""
|
"""Tests nested (e.g. C++ -> Python -> C++) exception handling"""
|
||||||
|
@ -274,10 +274,6 @@ function(pybind11_add_module target_name)
|
|||||||
target_link_libraries(${target_name} PRIVATE pybind11::embed)
|
target_link_libraries(${target_name} PRIVATE pybind11::embed)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(MSVC)
|
|
||||||
target_link_libraries(${target_name} PRIVATE pybind11::windows_extras)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# -fvisibility=hidden is required to allow multiple modules compiled against
|
# -fvisibility=hidden is required to allow multiple modules compiled against
|
||||||
# different pybind versions to work properly, and for some features (e.g.
|
# different pybind versions to work properly, and for some features (e.g.
|
||||||
# py::module_local). We force it on everything inside the `pybind11`
|
# py::module_local). We force it on everything inside the `pybind11`
|
||||||
|
Loading…
Reference in New Issue
Block a user