/* pybind11/detail/common.h -- Basic macros Copyright (c) 2016 Wenzel Jakob All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #pragma once #include #if PY_VERSION_HEX < 0x03080000 # error "PYTHON < 3.8 IS UNSUPPORTED. pybind11 v2.13 was the last to support Python 3.7." #endif // Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html // See also: https://github.com/python/cpython/blob/HEAD/Include/patchlevel.h /* -- start version constants -- */ #define PYBIND11_VERSION_MAJOR 3 #define PYBIND11_VERSION_MINOR 0 #define PYBIND11_VERSION_MICRO 1 // ALPHA = 0xA, BETA = 0xB, GAMMA = 0xC (release candidate), FINAL = 0xF (stable release) // - The release level is set to "alpha" for development versions. // Use 0xA0 (LEVEL=0xA, SERIAL=0) for development versions. // - For stable releases, set the serial to 0. #define PYBIND11_VERSION_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL #define PYBIND11_VERSION_RELEASE_SERIAL 0 // String version of (micro, release level, release serial), e.g.: 0a0, 0b1, 0rc1, 0 #define PYBIND11_VERSION_PATCH 1 /* -- end version constants -- */ #if !defined(Py_PACK_FULL_VERSION) // Stable API since Python 3.14.0a4 # define Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) \ ((((X) & 0xff) << 24) | (((Y) & 0xff) << 16) | (((Z) & 0xff) << 8) \ | (((LEVEL) & 0xf) << 4) | (((SERIAL) & 0xf) << 0)) #endif // Version as a single 4-byte hex number, e.g. 0x030C04B5 == 3.12.4b5. #define PYBIND11_VERSION_HEX \ Py_PACK_FULL_VERSION(PYBIND11_VERSION_MAJOR, \ PYBIND11_VERSION_MINOR, \ PYBIND11_VERSION_MICRO, \ PYBIND11_VERSION_RELEASE_LEVEL, \ PYBIND11_VERSION_RELEASE_SERIAL) #include "pybind11_namespace_macros.h" #if !(defined(_MSC_VER) && __cplusplus == 199711L) # if __cplusplus >= 201402L # define PYBIND11_CPP14 # if __cplusplus >= 201703L # define PYBIND11_CPP17 # if __cplusplus >= 202002L # define PYBIND11_CPP20 // Please update tests/pybind11_tests.cpp `cpp_std()` when adding a macro here. # endif # endif # endif #elif defined(_MSC_VER) && __cplusplus == 199711L // MSVC sets _MSVC_LANG rather than __cplusplus (supposedly until the standard is fully // implemented). Unless you use the /Zc:__cplusplus flag on Visual Studio 2017 15.7 Preview 3 // or newer. # if _MSVC_LANG >= 201402L # define PYBIND11_CPP14 # if _MSVC_LANG > 201402L # define PYBIND11_CPP17 # if _MSVC_LANG >= 202002L # define PYBIND11_CPP20 # endif # endif # endif #endif // These PYBIND11_HAS_... macros are consolidated in pybind11/detail/common.h // to simplify backward compatibility handling for users (e.g., via #ifdef checks): #define PYBIND11_HAS_TYPE_CASTER_STD_FUNCTION_SPECIALIZATIONS 1 #define PYBIND11_HAS_INTERNALS_WITH_SMART_HOLDER_SUPPORT 1 #define PYBIND11_HAS_CPP_CONDUIT 1 #define PYBIND11_HAS_NATIVE_ENUM 1 #if defined(PYBIND11_CPP17) && defined(__has_include) # if __has_include() # define PYBIND11_HAS_FILESYSTEM 1 # elif __has_include() # define PYBIND11_HAS_EXPERIMENTAL_FILESYSTEM 1 # endif #endif #if defined(__cpp_lib_launder) && !(defined(_MSC_VER) && (_MSC_VER < 1914)) # define PYBIND11_STD_LAUNDER std::launder # define PYBIND11_HAS_STD_LAUNDER 1 #else # define PYBIND11_STD_LAUNDER # define PYBIND11_HAS_STD_LAUNDER 0 #endif #if defined(PYBIND11_CPP20) # define PYBIND11_CONSTINIT constinit # define PYBIND11_DTOR_CONSTEXPR constexpr #else # define PYBIND11_CONSTINIT # define PYBIND11_DTOR_CONSTEXPR #endif // Compiler version assertions #if defined(__INTEL_COMPILER) # if __INTEL_COMPILER < 1800 # error pybind11 requires Intel C++ compiler v18 or newer # elif __INTEL_COMPILER < 1900 && defined(PYBIND11_CPP14) # error pybind11 supports only C++11 with Intel C++ compiler v18. Use v19 or newer for C++14. # endif /* The following pragma cannot be pop'ed: https://community.intel.com/t5/Intel-C-Compiler/Inline-and-no-inline-warning/td-p/1216764 */ # pragma warning disable 2196 // warning #2196: routine is both "inline" and "noinline" #elif defined(__clang__) && !defined(__apple_build_version__) # if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 3) # error pybind11 requires clang 3.3 or newer # endif #elif defined(__clang__) // Apple changes clang version macros to its Xcode version; the first Xcode release based on // (upstream) clang 3.3 was Xcode 5: # if __clang_major__ < 5 # error pybind11 requires Xcode/clang 5.0 or newer # endif #elif defined(__GNUG__) # if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8) # error pybind11 requires gcc 4.8 or newer # endif #elif defined(_MSC_VER) # if _MSC_VER < 1910 # error pybind11 2.10+ requires MSVC 2017 or newer # endif #endif #if !defined(PYBIND11_EXPORT) # if defined(WIN32) || defined(_WIN32) # define PYBIND11_EXPORT __declspec(dllexport) # else # define PYBIND11_EXPORT __attribute__((visibility("default"))) # endif #endif // For CUDA, GCC7, GCC8: // PYBIND11_NOINLINE_FORCED is incompatible with `-Wattributes -Werror`. // When defining PYBIND11_NOINLINE_FORCED, it is best to also use `-Wno-attributes`. // However, the measured shared-library size saving when using noinline are only // 1.7% for CUDA, -0.2% for GCC7, and 0.0% for GCC8 (using -DCMAKE_BUILD_TYPE=MinSizeRel, // the default under pybind11/tests). #if !defined(PYBIND11_NOINLINE_FORCED) \ && (defined(__CUDACC__) || (defined(__GNUC__) && (__GNUC__ == 7 || __GNUC__ == 8))) # define PYBIND11_NOINLINE_DISABLED #endif // The PYBIND11_NOINLINE macro is for function DEFINITIONS. // In contrast, FORWARD DECLARATIONS should never use this macro: // https://stackoverflow.com/questions/9317473/forward-declaration-of-inline-functions #if defined(PYBIND11_NOINLINE_DISABLED) // Option for maximum portability and experimentation. # define PYBIND11_NOINLINE inline #elif defined(_MSC_VER) # define PYBIND11_NOINLINE __declspec(noinline) inline #else # define PYBIND11_NOINLINE __attribute__((noinline)) inline #endif #if defined(__MINGW32__) // For unknown reasons all PYBIND11_DEPRECATED member trigger a warning when declared // whether it is used or not # define PYBIND11_DEPRECATED(reason) #elif defined(PYBIND11_CPP14) # define PYBIND11_DEPRECATED(reason) [[deprecated(reason)]] #else # define PYBIND11_DEPRECATED(reason) __attribute__((deprecated(reason))) #endif #if defined(PYBIND11_CPP17) # define PYBIND11_MAYBE_UNUSED [[maybe_unused]] #elif defined(_MSC_VER) && !defined(__clang__) # define PYBIND11_MAYBE_UNUSED #else # define PYBIND11_MAYBE_UNUSED __attribute__((__unused__)) #endif // https://en.cppreference.com/w/c/chrono/localtime #if defined(__STDC_LIB_EXT1__) && !defined(__STDC_WANT_LIB_EXT1__) # define __STDC_WANT_LIB_EXT1__ #endif #ifdef __has_include // std::optional (but including it in c++14 mode isn't allowed) # if defined(PYBIND11_CPP17) && __has_include() # define PYBIND11_HAS_OPTIONAL 1 # endif // std::experimental::optional (but not allowed in c++11 mode) # if defined(PYBIND11_CPP14) && (__has_include() && \ !__has_include()) # define PYBIND11_HAS_EXP_OPTIONAL 1 # endif // std::variant # if defined(PYBIND11_CPP17) && __has_include() # define PYBIND11_HAS_VARIANT 1 # endif #elif defined(_MSC_VER) && defined(PYBIND11_CPP17) # define PYBIND11_HAS_OPTIONAL 1 # define PYBIND11_HAS_VARIANT 1 #endif #if defined(PYBIND11_CPP17) \ && ((defined(__has_include) && __has_include()) || defined(_MSC_VER)) # define PYBIND11_HAS_STRING_VIEW 1 #endif #if (defined(PYPY_VERSION) || defined(GRAALVM_PYTHON)) && !defined(PYBIND11_SIMPLE_GIL_MANAGEMENT) # define PYBIND11_SIMPLE_GIL_MANAGEMENT #endif #include #include #include #include #include #include #include #include #include #include #include #include #if defined(__has_include) # if __has_include() # include # endif #endif // For libc++, the exceptions should be exported, // otherwise, the exception translation would be incorrect. // IMPORTANT: This code block must stay BELOW the #include above (see PR #5390). #if !defined(PYBIND11_EXPORT_EXCEPTION) # if defined(_LIBCPP_EXCEPTION) # define PYBIND11_EXPORT_EXCEPTION PYBIND11_EXPORT # else # define PYBIND11_EXPORT_EXCEPTION # endif #endif // Must be after including or one of the other headers specified by the standard #if defined(__cpp_lib_char8_t) && __cpp_lib_char8_t >= 201811L # define PYBIND11_HAS_U8STRING 1 #endif // See description of PR #4246: #if !defined(PYBIND11_NO_ASSERT_GIL_HELD_INCREF_DECREF) && !defined(NDEBUG) \ && !defined(PYPY_VERSION) && !defined(PYBIND11_ASSERT_GIL_HELD_INCREF_DECREF) # define PYBIND11_ASSERT_GIL_HELD_INCREF_DECREF #endif // Slightly faster code paths are available when PYBIND11_HAS_SUBINTERPRETER_SUPPORT is *not* // defined, so avoid defining it for implementations that do not support subinterpreters. However, // defining it unnecessarily is not expected to break anything. // This can be overridden by the user with -DPYBIND11_HAS_SUBINTERPRETER_SUPPORT=1 or 0 #ifndef PYBIND11_HAS_SUBINTERPRETER_SUPPORT # if PY_VERSION_HEX >= 0x030C0000 && !defined(PYPY_VERSION) && !defined(GRAALVM_PYTHON) # define PYBIND11_HAS_SUBINTERPRETER_SUPPORT 1 # endif #else # if PYBIND11_HAS_SUBINTERPRETER_SUPPORT == 0 # undef PYBIND11_HAS_SUBINTERPRETER_SUPPORT # endif #endif // 3.13 Compatibility #if 0x030D0000 <= PY_VERSION_HEX # define PYBIND11_TYPE_IS_TYPE_HINT "typing.TypeIs" # define PYBIND11_CAPSULE_TYPE_TYPE_HINT "types.CapsuleType" #else # define PYBIND11_TYPE_IS_TYPE_HINT "typing_extensions.TypeIs" # define PYBIND11_CAPSULE_TYPE_TYPE_HINT "typing_extensions.CapsuleType" #endif // 3.12 Compatibility #if 0x030C0000 <= PY_VERSION_HEX # define PYBIND11_BUFFER_TYPE_HINT "collections.abc.Buffer" #else # define PYBIND11_BUFFER_TYPE_HINT "typing_extensions.Buffer" #endif // 3.11 Compatibility #if 0x030B0000 <= PY_VERSION_HEX # define PYBIND11_NEVER_TYPE_HINT "typing.Never" #else # define PYBIND11_NEVER_TYPE_HINT "typing_extensions.Never" #endif // 3.10 Compatibility #if 0x030A0000 <= PY_VERSION_HEX # define PYBIND11_TYPE_GUARD_TYPE_HINT "typing.TypeGuard" #else # define PYBIND11_TYPE_GUARD_TYPE_HINT "typing_extensions.TypeGuard" #endif // #define PYBIND11_STR_LEGACY_PERMISSIVE // If DEFINED, pybind11::str can hold PyUnicodeObject or PyBytesObject // (probably surprising and never documented, but this was the // legacy behavior until and including v2.6.x). As a side-effect, // pybind11::isinstance() is true for both pybind11::str and // pybind11::bytes. // If UNDEFINED, pybind11::str can only hold PyUnicodeObject, and // pybind11::isinstance() is true only for pybind11::str. // However, for Python 2 only (!), the pybind11::str caster // implicitly decoded bytes to PyUnicodeObject. This was to ease // the transition from the legacy behavior to the non-permissive // behavior. /// Compatibility macros for Python 2 / Python 3 versions TODO: remove #define PYBIND11_INSTANCE_METHOD_NEW(ptr, class_) PyInstanceMethod_New(ptr) #define PYBIND11_INSTANCE_METHOD_CHECK PyInstanceMethod_Check #define PYBIND11_INSTANCE_METHOD_GET_FUNCTION PyInstanceMethod_GET_FUNCTION #define PYBIND11_BYTES_CHECK PyBytes_Check #define PYBIND11_BYTES_FROM_STRING PyBytes_FromString #define PYBIND11_BYTES_FROM_STRING_AND_SIZE PyBytes_FromStringAndSize #define PYBIND11_BYTES_AS_STRING_AND_SIZE PyBytes_AsStringAndSize #define PYBIND11_BYTES_AS_STRING PyBytes_AsString #define PYBIND11_BYTES_SIZE PyBytes_Size #define PYBIND11_LONG_CHECK(o) PyLong_Check(o) #define PYBIND11_LONG_AS_LONGLONG(o) PyLong_AsLongLong(o) #define PYBIND11_LONG_FROM_SIGNED(o) PyLong_FromSsize_t((ssize_t) (o)) #define PYBIND11_LONG_FROM_UNSIGNED(o) PyLong_FromSize_t((size_t) (o)) #define PYBIND11_BYTES_NAME "bytes" #define PYBIND11_STRING_NAME "str" #define PYBIND11_SLICE_OBJECT PyObject #define PYBIND11_FROM_STRING PyUnicode_FromString #define PYBIND11_STR_TYPE ::pybind11::str #define PYBIND11_BOOL_ATTR "__bool__" #define PYBIND11_NB_BOOL(ptr) ((ptr)->nb_bool) #define PYBIND11_BUILTINS_MODULE "builtins" // Providing a separate declaration to make Clang's -Wmissing-prototypes happy. // See comment for PYBIND11_MODULE below for why this is marked "maybe unused". #define PYBIND11_PLUGIN_DECL(name) \ extern "C" PYBIND11_MAYBE_UNUSED PYBIND11_EXPORT PyObject *PyInit_##name(); #define PYBIND11_PLUGIN_IMPL(name) \ PYBIND11_PLUGIN_DECL(name) \ extern "C" PYBIND11_EXPORT PyObject *PyInit_##name() #define PYBIND11_TRY_NEXT_OVERLOAD ((PyObject *) 1) // special failure return code #define PYBIND11_STRINGIFY(x) #x #define PYBIND11_TOSTRING(x) PYBIND11_STRINGIFY(x) #define PYBIND11_CONCAT(first, second) first##second #define PYBIND11_ENSURE_INTERNALS_READY \ { \ pybind11::detail::get_internals_pp_manager().unref(); \ pybind11::detail::get_internals(); \ } #if !defined(GRAALVM_PYTHON) # define PYBIND11_PYCFUNCTION_GET_DOC(func) ((func)->m_ml->ml_doc) # define PYBIND11_PYCFUNCTION_SET_DOC(func, doc) \ do { \ (func)->m_ml->ml_doc = (doc); \ } while (0) #else # define PYBIND11_PYCFUNCTION_GET_DOC(func) (GraalPyCFunction_GetDoc((PyObject *) (func))) # define PYBIND11_PYCFUNCTION_SET_DOC(func, doc) \ do { \ GraalPyCFunction_SetDoc((PyObject *) (func), (doc)); \ } while (0) #endif #define PYBIND11_CHECK_PYTHON_VERSION \ { \ const char *compiled_ver \ = PYBIND11_TOSTRING(PY_MAJOR_VERSION) "." PYBIND11_TOSTRING(PY_MINOR_VERSION); \ const char *runtime_ver = Py_GetVersion(); \ size_t len = std::strlen(compiled_ver); \ if (std::strncmp(runtime_ver, compiled_ver, len) != 0 \ || (runtime_ver[len] >= '0' && runtime_ver[len] <= '9')) { \ PyErr_Format(PyExc_ImportError, \ "Python version mismatch: module was compiled for Python %s, " \ "but the interpreter version is incompatible: %s.", \ compiled_ver, \ runtime_ver); \ return nullptr; \ } \ } #define PYBIND11_CATCH_INIT_EXCEPTIONS \ catch (pybind11::error_already_set & e) { \ pybind11::raise_from(e, PyExc_ImportError, "initialization failed"); \ } \ catch (const std::exception &e) { \ ::pybind11::set_error(PyExc_ImportError, e.what()); \ } /** \rst ***Deprecated in favor of PYBIND11_MODULE*** This macro creates the entry point that will be invoked when the Python interpreter imports a plugin library. Please create a `module_` in the function body and return the pointer to its underlying Python object at the end. .. code-block:: cpp PYBIND11_PLUGIN(example) { pybind11::module_ m("example", "pybind11 example plugin"); /// Set up bindings here return m.ptr(); } \endrst */ #define PYBIND11_PLUGIN(name) \ PYBIND11_DEPRECATED("PYBIND11_PLUGIN is deprecated, use PYBIND11_MODULE") \ static PyObject *pybind11_init(); \ PYBIND11_PLUGIN_IMPL(name) { \ PYBIND11_CHECK_PYTHON_VERSION \ PYBIND11_ENSURE_INTERNALS_READY \ try { \ return pybind11_init(); \ } \ PYBIND11_CATCH_INIT_EXCEPTIONS \ return nullptr; \ } \ PyObject *pybind11_init() // this push is for the next several macros PYBIND11_WARNING_PUSH PYBIND11_WARNING_DISABLE_CLANG("-Wgnu-zero-variadic-macro-arguments") /** Create a PyInit_ function for this module. Note that this is run once for each (sub-)interpreter the module is imported into, including possibly concurrently. The PyModuleDef is allowed to be static, but the PyObject* resulting from PyModuleDef_Init should be treated like any other PyObject (so not shared across interpreters). */ #define PYBIND11_MODULE_PYINIT(name, pre_init, ...) \ static int PYBIND11_CONCAT(pybind11_exec_, name)(PyObject *); \ PYBIND11_PLUGIN_IMPL(name) { \ PYBIND11_CHECK_PYTHON_VERSION \ pre_init; \ PYBIND11_ENSURE_INTERNALS_READY \ static ::pybind11::detail::slots_array mod_def_slots = ::pybind11::detail::init_slots( \ &PYBIND11_CONCAT(pybind11_exec_, name), ##__VA_ARGS__); \ static PyModuleDef def{/* m_base */ PyModuleDef_HEAD_INIT, \ /* m_name */ PYBIND11_TOSTRING(name), \ /* m_doc */ nullptr, \ /* m_size */ 0, \ /* m_methods */ nullptr, \ /* m_slots */ mod_def_slots.data(), \ /* m_traverse */ nullptr, \ /* m_clear */ nullptr, \ /* m_free */ nullptr}; \ return PyModuleDef_Init(&def); \ } #define PYBIND11_MODULE_EXEC(name, variable) \ static void PYBIND11_CONCAT(pybind11_init_, name)(::pybind11::module_ &); \ int PYBIND11_CONCAT(pybind11_exec_, name)(PyObject * pm) { \ try { \ auto m = pybind11::reinterpret_borrow<::pybind11::module_>(pm); \ if (!pybind11::detail::get_cached_module(m.attr("__spec__").attr("name"))) { \ PYBIND11_CONCAT(pybind11_init_, name)(m); \ pybind11::detail::cache_completed_module(m); \ } \ return 0; \ } \ PYBIND11_CATCH_INIT_EXCEPTIONS \ return -1; \ } \ void PYBIND11_CONCAT(pybind11_init_, name)(::pybind11::module_ \ & variable) // NOLINT(bugprone-macro-parentheses) /** \rst This macro creates the entry point that will be invoked when the Python interpreter imports an extension module. The module name is given as the first argument and it should not be in quotes. The second macro argument defines a variable of type ``py::module_`` which can be used to initialize the module. The entry point is marked as "maybe unused" to aid dead-code detection analysis: since the entry point is typically only looked up at runtime and not referenced during translation, it would otherwise appear as unused ("dead") code. .. code-block:: cpp PYBIND11_MODULE(example, m) { m.doc() = "pybind11 example module"; // Add bindings here m.def("foo", []() { return "Hello, World!"; }); } The third and subsequent macro arguments are optional (available since 2.13.0), and can be used to mark the extension module as supporting various Python features. - ``mod_gil_not_used()`` - ``multiple_interpreters::per_interpreter_gil()`` - ``multiple_interpreters::shared_gil()`` - ``multiple_interpreters::not_supported()`` .. code-block:: cpp PYBIND11_MODULE(example, m, py::mod_gil_not_used()) { m.doc() = "pybind11 example module safe to run without the GIL"; m.def("foo", []() { return "Hello, Free-threaded World!"; }); } \endrst */ #define PYBIND11_MODULE(name, variable, ...) \ PYBIND11_MODULE_PYINIT( \ name, (pybind11::detail::get_num_interpreters_seen() += 1), ##__VA_ARGS__) \ PYBIND11_MODULE_EXEC(name, variable) // pop gnu-zero-variadic-macro-arguments PYBIND11_WARNING_POP PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE) using ssize_t = Py_ssize_t; using size_t = std::size_t; template inline ssize_t ssize_t_cast(const IntType &val) { static_assert(sizeof(IntType) <= sizeof(ssize_t), "Implicit narrowing is not permitted."); return static_cast(val); } /// Approach used to cast a previously unknown C++ instance into a Python object enum class return_value_policy : uint8_t { /** This is the default return value policy, which falls back to the policy return_value_policy::take_ownership when the return value is a pointer. Otherwise, it uses return_value::move or return_value::copy for rvalue and lvalue references, respectively. See below for a description of what all of these different policies do. */ automatic = 0, /** As above, but use policy return_value_policy::reference when the return value is a pointer. This is the default conversion policy for function arguments when calling Python functions manually from C++ code (i.e. via handle::operator()). You probably won't need to use this. */ automatic_reference, /** Reference an existing object (i.e. do not create a new copy) and take ownership. Python will call the destructor and delete operator when the object's reference count reaches zero. Undefined behavior ensues when the C++ side does the same.. */ take_ownership, /** Create a new copy of the returned object, which will be owned by Python. This policy is comparably safe because the lifetimes of the two instances are decoupled. */ copy, /** Use std::move to move the return value contents into a new instance that will be owned by Python. This policy is comparably safe because the lifetimes of the two instances (move source and destination) are decoupled. */ move, /** Reference an existing object, but do not take ownership. The C++ side is responsible for managing the object's lifetime and deallocating it when it is no longer used. Warning: undefined behavior will ensue when the C++ side deletes an object that is still referenced and used by Python. */ reference, /** This policy only applies to methods and properties. It references the object without taking ownership similar to the above return_value_policy::reference policy. In contrast to that policy, the function or property's implicit this argument (called the parent) is considered to be the owner of the return value (the child). pybind11 then couples the lifetime of the parent to the child via a reference relationship that ensures that the parent cannot be garbage collected while Python is still using the child. More advanced variations of this scheme are also possible using combinations of return_value_policy::reference and the keep_alive call policy */ reference_internal }; PYBIND11_NAMESPACE_BEGIN(detail) inline static constexpr int log2(size_t n, int k = 0) { return (n <= 1) ? k : log2(n >> 1, k + 1); } // Returns the size as a multiple of sizeof(void *), rounded up. inline static constexpr size_t size_in_ptrs(size_t s) { return 1 + ((s - 1) >> log2(sizeof(void *))); } /** * The space to allocate for simple layout instance holders (see below) in multiple of the size of * a pointer (e.g. 2 means 16 bytes on 64-bit architectures). The default is the minimum required * to holder either a std::unique_ptr or std::shared_ptr (which is almost always * sizeof(std::shared_ptr)). */ constexpr size_t instance_simple_holder_in_ptrs() { static_assert(sizeof(std::shared_ptr) >= sizeof(std::unique_ptr), "pybind assumes std::shared_ptrs are at least as big as std::unique_ptrs"); return size_in_ptrs(sizeof(std::shared_ptr)); } // Forward declarations struct type_info; struct value_and_holder; struct nonsimple_values_and_holders { void **values_and_holders; uint8_t *status; }; /// The 'instance' type which needs to be standard layout (need to be able to use 'offsetof') struct instance { PyObject_HEAD /// Storage for pointers and holder; see simple_layout, below, for a description union { void *simple_value_holder[1 + instance_simple_holder_in_ptrs()]; nonsimple_values_and_holders nonsimple; }; /// Weak references PyObject *weakrefs; /// If true, the pointer is owned which means we're free to manage it with a holder. bool owned : 1; /** * An instance has two possible value/holder layouts. * * Simple layout (when this flag is true), means the `simple_value_holder` is set with a * pointer and the holder object governing that pointer, i.e. [val1*][holder]. This layout is * applied whenever there is no python-side multiple inheritance of bound C++ types *and* the * type's holder will fit in the default space (which is large enough to hold either a * std::unique_ptr or std::shared_ptr). * * Non-simple layout applies when using custom holders that require more space than * `shared_ptr` (which is typically the size of two pointers), or when multiple inheritance is * used on the python side. Non-simple layout allocates the required amount of memory to have * multiple bound C++ classes as parents. Under this layout, `nonsimple.values_and_holders` is * set to a pointer to allocated space of the required space to hold a sequence of value * pointers and holders followed `status`, a set of bit flags (1 byte each), i.e. * [val1*][holder1][val2*][holder2]...[bb...] where each [block] is rounded up to a multiple * of `sizeof(void *)`. `nonsimple.status` is, for convenience, a pointer to the beginning of * the [bb...] block (but not independently allocated). * * Status bits indicate whether the associated holder is constructed (& * status_holder_constructed) and whether the value pointer is registered (& * status_instance_registered) in `registered_instances`. */ bool simple_layout : 1; /// For simple layout, tracks whether the holder has been constructed bool simple_holder_constructed : 1; /// For simple layout, tracks whether the instance is registered in `registered_instances` bool simple_instance_registered : 1; /// If true, get_internals().patients has an entry for this object bool has_patients : 1; /// If true, this Python object needs to be kept alive for the lifetime of the C++ value. bool is_alias : 1; /// Initializes all of the above type/values/holders data (but not the instance values /// themselves) void allocate_layout(); /// Destroys/deallocates all of the above void deallocate_layout(); /// Returns the value_and_holder wrapper for the given type (or the first, if `find_type` /// omitted). Returns a default-constructed (with `.inst = nullptr`) object on failure if /// `throw_if_missing` is false. value_and_holder get_value_and_holder(const type_info *find_type = nullptr, bool throw_if_missing = true); /// Bit values for the non-simple status flags static constexpr uint8_t status_holder_constructed = 1; static constexpr uint8_t status_instance_registered = 2; }; static_assert(std::is_standard_layout::value, "Internal error: `pybind11::detail::instance` is not standard layout!"); // Some older compilers (e.g. gcc 9.4.0) require // static_assert(always_false::value, "..."); // instead of // static_assert(false, "..."); // to trigger the static_assert() in a template only if it is actually instantiated. template struct always_false : std::false_type {}; /// from __cpp_future__ import (convenient aliases from C++14/17) #if defined(PYBIND11_CPP14) using std::conditional_t; using std::enable_if_t; using std::remove_cv_t; using std::remove_reference_t; #else template using enable_if_t = typename std::enable_if::type; template using conditional_t = typename std::conditional::type; template using remove_cv_t = typename std::remove_cv::type; template using remove_reference_t = typename std::remove_reference::type; #endif #if defined(PYBIND11_CPP20) && defined(__cpp_lib_remove_cvref) using std::remove_cvref; using std::remove_cvref_t; #else template struct remove_cvref { using type = remove_cv_t>; }; template using remove_cvref_t = typename remove_cvref::type; #endif /// Example usage: is_same_ignoring_cvref::value template using is_same_ignoring_cvref = std::is_same, U>; /// Index sequences #if defined(PYBIND11_CPP14) using std::index_sequence; using std::make_index_sequence; #else template struct index_sequence {}; // Comments about the algorithm below. // // Credit: This is based on an algorithm by taocpp here: // https://github.com/taocpp/sequences/blob/main/include/tao/seq/make_integer_sequence.hpp // but significantly simplified. // // We build up a sequence S by repeatedly doubling its length and sometimes adding 1 to the end. // E.g. if the current S is 0...3, then we either go to 0...7 or 0...8 on the next pass. // The goal is to end with S = 0...N-1. // The key insight is that the times we need to add an additional digit to S correspond // exactly to the 1's in the binary representation of the number N. // // Invariants: // - digit is a power of 2 // - N_digit_is_1 is whether N's binary representation has a 1 in that digit's position. // - end <= N // - S is 0...end-1. // - if digit > 0, end * digit * 2 <= N < (end+1) * digit * 2 // // The process starts with digit > N, end = 0, and S is empty. // The process concludes with digit=0, in which case, end == N and S is 0...N-1. template // N_digit_is_1=false struct make_index_sequence_impl : make_index_sequence_impl { }; template struct make_index_sequence_impl : make_index_sequence_impl {}; template struct make_index_sequence_impl<0, false, N, end, S...> { using type = index_sequence; }; constexpr size_t next_power_of_2(size_t N) { return N == 0 ? 1 : next_power_of_2(N >> 1) << 1; } template using make_index_sequence = typename make_index_sequence_impl::type; #endif /// Make an index sequence of the indices of true arguments template struct select_indices_impl { using type = ISeq; }; template struct select_indices_impl, I, B, Bs...> : select_indices_impl, index_sequence>, I + 1, Bs...> {}; template using select_indices = typename select_indices_impl, 0, Bs...>::type; /// Backports of std::bool_constant and std::negation to accommodate older compilers template using bool_constant = std::integral_constant; template struct negation : bool_constant {}; // PGI/Intel cannot detect operator delete with the "compatible" void_t impl, so // using the new one (C++14 defect, so generally works on newer compilers, even // if not in C++17 mode) #if defined(__PGIC__) || defined(__INTEL_COMPILER) template using void_t = void; #else template struct void_t_impl { using type = void; }; template using void_t = typename void_t_impl::type; #endif /// Compile-time all/any/none of that check the boolean value of all template types #if defined(__cpp_fold_expressions) && !(defined(_MSC_VER) && (_MSC_VER < 1916)) template using all_of = bool_constant<(Ts::value && ...)>; template using any_of = bool_constant<(Ts::value || ...)>; #elif !defined(_MSC_VER) template struct bools {}; template using all_of = std::is_same, bools>; template using any_of = negation...>>; #else // MSVC has trouble with the above, but supports std::conjunction, which we can use instead (albeit // at a slight loss of compilation efficiency). template using all_of = std::conjunction; template using any_of = std::disjunction; #endif template using none_of = negation>; template class... Predicates> using satisfies_all_of = all_of...>; template class... Predicates> using satisfies_any_of = any_of...>; template class... Predicates> using satisfies_none_of = none_of...>; /// Strip the class from a method type template struct remove_class {}; template struct remove_class { using type = R(A...); }; template struct remove_class { using type = R(A...); }; #ifdef __cpp_noexcept_function_type template struct remove_class { using type = R(A...); }; template struct remove_class { using type = R(A...); }; #endif /// Helper template to strip away type modifiers template struct intrinsic_type { using type = T; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template struct intrinsic_type { using type = typename intrinsic_type::type; }; template using intrinsic_t = typename intrinsic_type::type; /// Helper type to replace 'void' in some expressions struct void_type {}; /// Helper template which holds a list of types template struct type_list {}; /// Compile-time integer sum #ifdef __cpp_fold_expressions template constexpr size_t constexpr_sum(Ts... ns) { return (0 + ... + size_t{ns}); } #else constexpr size_t constexpr_sum() { return 0; } template constexpr size_t constexpr_sum(T n, Ts... ns) { return size_t{n} + constexpr_sum(ns...); } #endif PYBIND11_NAMESPACE_BEGIN(constexpr_impl) /// Implementation details for constexpr functions constexpr int first(int i) { return i; } template constexpr int first(int i, T v, Ts... vs) { return v ? i : first(i + 1, vs...); } constexpr int last(int /*i*/, int result) { return result; } template constexpr int last(int i, int result, T v, Ts... vs) { return last(i + 1, v ? i : result, vs...); } PYBIND11_NAMESPACE_END(constexpr_impl) /// Return the index of the first type in Ts which satisfies Predicate. /// Returns sizeof...(Ts) if none match. template