You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

873 lines
40 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. /*
  2. pybind11/common.h -- Basic macros
  3. Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
  4. All rights reserved. Use of this source code is governed by a
  5. BSD-style license that can be found in the LICENSE file.
  6. */
  7. #pragma once
  8. #if !defined(NAMESPACE_BEGIN)
  9. # define NAMESPACE_BEGIN(name) namespace name {
  10. #endif
  11. #if !defined(NAMESPACE_END)
  12. # define NAMESPACE_END(name) }
  13. #endif
  14. #if !defined(_MSC_VER) && !defined(__INTEL_COMPILER)
  15. # if __cplusplus >= 201402L
  16. # define PYBIND11_CPP14
  17. # if __cplusplus >= 201703L /* Temporary: should be updated to >= the final C++17 value once known */
  18. # define PYBIND11_CPP17
  19. # endif
  20. # endif
  21. #elif defined(_MSC_VER)
  22. // MSVC sets _MSVC_LANG rather than __cplusplus (supposedly until the standard is fully implemented)
  23. # if _MSVC_LANG >= 201402L
  24. # define PYBIND11_CPP14
  25. # if _MSVC_LANG > 201402L && _MSC_VER >= 1910
  26. # define PYBIND11_CPP17
  27. # endif
  28. # endif
  29. #endif
  30. // Compiler version assertions
  31. #if defined(__INTEL_COMPILER)
  32. # if __INTEL_COMPILER < 1500
  33. # error pybind11 requires Intel C++ compiler v15 or newer
  34. # endif
  35. #elif defined(__clang__) && !defined(__apple_build_version__)
  36. # if __clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 3)
  37. # error pybind11 requires clang 3.3 or newer
  38. # endif
  39. #elif defined(__clang__)
  40. // Apple changes clang version macros to its Xcode version; the first Xcode release based on
  41. // (upstream) clang 3.3 was Xcode 5:
  42. # if __clang_major__ < 5
  43. # error pybind11 requires Xcode/clang 5.0 or newer
  44. # endif
  45. #elif defined(__GNUG__)
  46. # if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)
  47. # error pybind11 requires gcc 4.8 or newer
  48. # endif
  49. #elif defined(_MSC_VER)
  50. // Pybind hits various compiler bugs in 2015u2 and earlier, and also makes use of some stl features
  51. // (e.g. std::negation) added in 2015u3:
  52. # if _MSC_FULL_VER < 190024210
  53. # error pybind11 requires MSVC 2015 update 3 or newer
  54. # endif
  55. #endif
  56. #if !defined(PYBIND11_EXPORT)
  57. # if defined(WIN32) || defined(_WIN32)
  58. # define PYBIND11_EXPORT __declspec(dllexport)
  59. # else
  60. # define PYBIND11_EXPORT __attribute__ ((visibility("default")))
  61. # endif
  62. #endif
  63. #if defined(_MSC_VER)
  64. # define PYBIND11_NOINLINE __declspec(noinline)
  65. #else
  66. # define PYBIND11_NOINLINE __attribute__ ((noinline))
  67. #endif
  68. #if defined(PYBIND11_CPP14)
  69. # define PYBIND11_DEPRECATED(reason) [[deprecated(reason)]]
  70. #else
  71. # define PYBIND11_DEPRECATED(reason) __attribute__((deprecated(reason)))
  72. #endif
  73. #define PYBIND11_VERSION_MAJOR 2
  74. #define PYBIND11_VERSION_MINOR 2
  75. #define PYBIND11_VERSION_PATCH dev0
  76. /// Include Python header, disable linking to pythonX_d.lib on Windows in debug mode
  77. #if defined(_MSC_VER)
  78. # if (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION < 4)
  79. # define HAVE_ROUND 1
  80. # endif
  81. # pragma warning(push)
  82. # pragma warning(disable: 4510 4610 4512 4005)
  83. # if defined(_DEBUG)
  84. # define PYBIND11_DEBUG_MARKER
  85. # undef _DEBUG
  86. # endif
  87. #endif
  88. #include <Python.h>
  89. #include <frameobject.h>
  90. #include <pythread.h>
  91. #if defined(_WIN32) && (defined(min) || defined(max))
  92. # error Macro clash with min and max -- define NOMINMAX when compiling your program on Windows
  93. #endif
  94. #if defined(isalnum)
  95. # undef isalnum
  96. # undef isalpha
  97. # undef islower
  98. # undef isspace
  99. # undef isupper
  100. # undef tolower
  101. # undef toupper
  102. #endif
  103. #if defined(_MSC_VER)
  104. # if defined(PYBIND11_DEBUG_MARKER)
  105. # define _DEBUG
  106. # undef PYBIND11_DEBUG_MARKER
  107. # endif
  108. # pragma warning(pop)
  109. #endif
  110. #include <cstddef>
  111. #include <cstring>
  112. #include <forward_list>
  113. #include <vector>
  114. #include <string>
  115. #include <stdexcept>
  116. #include <unordered_set>
  117. #include <unordered_map>
  118. #include <memory>
  119. #include <typeindex>
  120. #include <type_traits>
  121. #if PY_MAJOR_VERSION >= 3 /// Compatibility macros for various Python versions
  122. #define PYBIND11_INSTANCE_METHOD_NEW(ptr, class_) PyInstanceMethod_New(ptr)
  123. #define PYBIND11_INSTANCE_METHOD_CHECK PyInstanceMethod_Check
  124. #define PYBIND11_INSTANCE_METHOD_GET_FUNCTION PyInstanceMethod_GET_FUNCTION
  125. #define PYBIND11_BYTES_CHECK PyBytes_Check
  126. #define PYBIND11_BYTES_FROM_STRING PyBytes_FromString
  127. #define PYBIND11_BYTES_FROM_STRING_AND_SIZE PyBytes_FromStringAndSize
  128. #define PYBIND11_BYTES_AS_STRING_AND_SIZE PyBytes_AsStringAndSize
  129. #define PYBIND11_BYTES_AS_STRING PyBytes_AsString
  130. #define PYBIND11_BYTES_SIZE PyBytes_Size
  131. #define PYBIND11_LONG_CHECK(o) PyLong_Check(o)
  132. #define PYBIND11_LONG_AS_LONGLONG(o) PyLong_AsLongLong(o)
  133. #define PYBIND11_LONG_AS_UNSIGNED_LONGLONG(o) PyLong_AsUnsignedLongLong(o)
  134. #define PYBIND11_BYTES_NAME "bytes"
  135. #define PYBIND11_STRING_NAME "str"
  136. #define PYBIND11_SLICE_OBJECT PyObject
  137. #define PYBIND11_FROM_STRING PyUnicode_FromString
  138. #define PYBIND11_STR_TYPE ::pybind11::str
  139. #define PYBIND11_PLUGIN_IMPL(name) \
  140. extern "C" PYBIND11_EXPORT PyObject *PyInit_##name()
  141. #else
  142. #define PYBIND11_INSTANCE_METHOD_NEW(ptr, class_) PyMethod_New(ptr, nullptr, class_)
  143. #define PYBIND11_INSTANCE_METHOD_CHECK PyMethod_Check
  144. #define PYBIND11_INSTANCE_METHOD_GET_FUNCTION PyMethod_GET_FUNCTION
  145. #define PYBIND11_BYTES_CHECK PyString_Check
  146. #define PYBIND11_BYTES_FROM_STRING PyString_FromString
  147. #define PYBIND11_BYTES_FROM_STRING_AND_SIZE PyString_FromStringAndSize
  148. #define PYBIND11_BYTES_AS_STRING_AND_SIZE PyString_AsStringAndSize
  149. #define PYBIND11_BYTES_AS_STRING PyString_AsString
  150. #define PYBIND11_BYTES_SIZE PyString_Size
  151. #define PYBIND11_LONG_CHECK(o) (PyInt_Check(o) || PyLong_Check(o))
  152. #define PYBIND11_LONG_AS_LONGLONG(o) (PyInt_Check(o) ? (long long) PyLong_AsLong(o) : PyLong_AsLongLong(o))
  153. #define PYBIND11_LONG_AS_UNSIGNED_LONGLONG(o) (PyInt_Check(o) ? (unsigned long long) PyLong_AsUnsignedLong(o) : PyLong_AsUnsignedLongLong(o))
  154. #define PYBIND11_BYTES_NAME "str"
  155. #define PYBIND11_STRING_NAME "unicode"
  156. #define PYBIND11_SLICE_OBJECT PySliceObject
  157. #define PYBIND11_FROM_STRING PyString_FromString
  158. #define PYBIND11_STR_TYPE ::pybind11::bytes
  159. #define PYBIND11_PLUGIN_IMPL(name) \
  160. static PyObject *pybind11_init_wrapper(); \
  161. extern "C" PYBIND11_EXPORT void init##name() { \
  162. (void)pybind11_init_wrapper(); \
  163. } \
  164. PyObject *pybind11_init_wrapper()
  165. #endif
  166. #if PY_VERSION_HEX >= 0x03050000 && PY_VERSION_HEX < 0x03050200
  167. extern "C" {
  168. struct _Py_atomic_address { void *value; };
  169. PyAPI_DATA(_Py_atomic_address) _PyThreadState_Current;
  170. }
  171. #endif
  172. #define PYBIND11_TRY_NEXT_OVERLOAD ((PyObject *) 1) // special failure return code
  173. #define PYBIND11_STRINGIFY(x) #x
  174. #define PYBIND11_TOSTRING(x) PYBIND11_STRINGIFY(x)
  175. #define PYBIND11_INTERNALS_ID "__pybind11_" \
  176. PYBIND11_TOSTRING(PYBIND11_VERSION_MAJOR) "_" PYBIND11_TOSTRING(PYBIND11_VERSION_MINOR) "__"
  177. /** \rst
  178. ***Deprecated in favor of PYBIND11_MODULE***
  179. This macro creates the entry point that will be invoked when the Python interpreter
  180. imports a plugin library. Please create a `module` in the function body and return
  181. the pointer to its underlying Python object at the end.
  182. .. code-block:: cpp
  183. PYBIND11_PLUGIN(example) {
  184. pybind11::module m("example", "pybind11 example plugin");
  185. /// Set up bindings here
  186. return m.ptr();
  187. }
  188. \endrst */
  189. #define PYBIND11_PLUGIN(name) \
  190. PYBIND11_DEPRECATED("PYBIND11_PLUGIN is deprecated, use PYBIND11_MODULE") \
  191. static PyObject *pybind11_init(); \
  192. PYBIND11_PLUGIN_IMPL(name) { \
  193. int major, minor; \
  194. if (sscanf(Py_GetVersion(), "%i.%i", &major, &minor) != 2) { \
  195. PyErr_SetString(PyExc_ImportError, "Can't parse Python version."); \
  196. return nullptr; \
  197. } else if (major != PY_MAJOR_VERSION || minor != PY_MINOR_VERSION) { \
  198. PyErr_Format(PyExc_ImportError, \
  199. "Python version mismatch: module was compiled for " \
  200. "version %i.%i, while the interpreter is running " \
  201. "version %i.%i.", PY_MAJOR_VERSION, PY_MINOR_VERSION, \
  202. major, minor); \
  203. return nullptr; \
  204. } \
  205. try { \
  206. return pybind11_init(); \
  207. } catch (pybind11::error_already_set &e) { \
  208. e.clear(); \
  209. PyErr_SetString(PyExc_ImportError, e.what()); \
  210. return nullptr; \
  211. } catch (const std::exception &e) { \
  212. PyErr_SetString(PyExc_ImportError, e.what()); \
  213. return nullptr; \
  214. } \
  215. } \
  216. PyObject *pybind11_init()
  217. /** \rst
  218. This macro creates the entry point that will be invoked when the Python interpreter
  219. imports an extension module. The module name is given as the fist argument and it
  220. should not be in quotes. The second macro argument defines a variable of type
  221. `py::module` which can be used to initialize the module.
  222. .. code-block:: cpp
  223. PYBIND11_MODULE(example, m) {
  224. m.doc() = "pybind11 example module";
  225. // Add bindings here
  226. m.def("foo", []() {
  227. return "Hello, World!";
  228. });
  229. }
  230. \endrst */
  231. #define PYBIND11_MODULE(name, variable) \
  232. static void pybind11_init_##name(pybind11::module &); \
  233. PYBIND11_PLUGIN_IMPL(name) { \
  234. int major, minor; \
  235. if (sscanf(Py_GetVersion(), "%i.%i", &major, &minor) != 2) { \
  236. PyErr_SetString(PyExc_ImportError, "Can't parse Python version."); \
  237. return nullptr; \
  238. } else if (major != PY_MAJOR_VERSION || minor != PY_MINOR_VERSION) { \
  239. PyErr_Format(PyExc_ImportError, \
  240. "Python version mismatch: module was compiled for " \
  241. "version %i.%i, while the interpreter is running " \
  242. "version %i.%i.", PY_MAJOR_VERSION, PY_MINOR_VERSION, \
  243. major, minor); \
  244. return nullptr; \
  245. } \
  246. auto m = pybind11::module(#name); \
  247. try { \
  248. pybind11_init_##name(m); \
  249. return m.ptr(); \
  250. } catch (pybind11::error_already_set &e) { \
  251. e.clear(); \
  252. PyErr_SetString(PyExc_ImportError, e.what()); \
  253. return nullptr; \
  254. } catch (const std::exception &e) { \
  255. PyErr_SetString(PyExc_ImportError, e.what()); \
  256. return nullptr; \
  257. } \
  258. } \
  259. void pybind11_init_##name(pybind11::module &variable)
  260. NAMESPACE_BEGIN(pybind11)
  261. using ssize_t = Py_ssize_t;
  262. using size_t = std::size_t;
  263. /// Approach used to cast a previously unknown C++ instance into a Python object
  264. enum class return_value_policy : uint8_t {
  265. /** This is the default return value policy, which falls back to the policy
  266. return_value_policy::take_ownership when the return value is a pointer.
  267. Otherwise, it uses return_value::move or return_value::copy for rvalue
  268. and lvalue references, respectively. See below for a description of what
  269. all of these different policies do. */
  270. automatic = 0,
  271. /** As above, but use policy return_value_policy::reference when the return
  272. value is a pointer. This is the default conversion policy for function
  273. arguments when calling Python functions manually from C++ code (i.e. via
  274. handle::operator()). You probably won't need to use this. */
  275. automatic_reference,
  276. /** Reference an existing object (i.e. do not create a new copy) and take
  277. ownership. Python will call the destructor and delete operator when the
  278. objects reference count reaches zero. Undefined behavior ensues when
  279. the C++ side does the same.. */
  280. take_ownership,
  281. /** Create a new copy of the returned object, which will be owned by
  282. Python. This policy is comparably safe because the lifetimes of the two
  283. instances are decoupled. */
  284. copy,
  285. /** Use std::move to move the return value contents into a new instance
  286. that will be owned by Python. This policy is comparably safe because the
  287. lifetimes of the two instances (move source and destination) are
  288. decoupled. */
  289. move,
  290. /** Reference an existing object, but do not take ownership. The C++ side
  291. is responsible for managing the objects lifetime and deallocating it
  292. when it is no longer used. Warning: undefined behavior will ensue when
  293. the C++ side deletes an object that is still referenced and used by
  294. Python. */
  295. reference,
  296. /** This policy only applies to methods and properties. It references the
  297. object without taking ownership similar to the above
  298. return_value_policy::reference policy. In contrast to that policy, the
  299. function or propertys implicit this argument (called the parent) is
  300. considered to be the the owner of the return value (the child).
  301. pybind11 then couples the lifetime of the parent to the child via a
  302. reference relationship that ensures that the parent cannot be garbage
  303. collected while Python is still using the child. More advanced
  304. variations of this scheme are also possible using combinations of
  305. return_value_policy::reference and the keep_alive call policy */
  306. reference_internal
  307. };
  308. NAMESPACE_BEGIN(detail)
  309. inline static constexpr int log2(size_t n, int k = 0) { return (n <= 1) ? k : log2(n >> 1, k + 1); }
  310. // Returns the size as a multiple of sizeof(void *), rounded up.
  311. inline static constexpr size_t size_in_ptrs(size_t s) { return 1 + ((s - 1) >> log2(sizeof(void *))); }
  312. inline std::string error_string();
  313. /**
  314. * The space to allocate for simple layout instance holders (see below) in multiple of the size of
  315. * a pointer (e.g. 2 means 16 bytes on 64-bit architectures). The default is the minimum required
  316. * to holder either a std::unique_ptr or std::shared_ptr (which is almost always
  317. * sizeof(std::shared_ptr<T>)).
  318. */
  319. constexpr size_t instance_simple_holder_in_ptrs() {
  320. static_assert(sizeof(std::shared_ptr<int>) >= sizeof(std::unique_ptr<int>),
  321. "pybind assumes std::shared_ptrs are at least as big as std::unique_ptrs");
  322. return size_in_ptrs(sizeof(std::shared_ptr<int>));
  323. }
  324. // Forward declarations
  325. struct type_info;
  326. struct value_and_holder;
  327. /// The 'instance' type which needs to be standard layout (need to be able to use 'offsetof')
  328. struct instance {
  329. PyObject_HEAD
  330. /// Storage for pointers and holder; see simple_layout, below, for a description
  331. union {
  332. void *simple_value_holder[1 + instance_simple_holder_in_ptrs()];
  333. struct {
  334. void **values_and_holders;
  335. bool *holder_constructed;
  336. } nonsimple;
  337. };
  338. /// Weak references (needed for keep alive):
  339. PyObject *weakrefs;
  340. /// If true, the pointer is owned which means we're free to manage it with a holder.
  341. bool owned : 1;
  342. /**
  343. * An instance has two possible value/holder layouts.
  344. *
  345. * Simple layout (when this flag is true), means the `simple_value_holder` is set with a pointer
  346. * and the holder object governing that pointer, i.e. [val1*][holder]. This layout is applied
  347. * whenever there is no python-side multiple inheritance of bound C++ types *and* the type's
  348. * holder will fit in the default space (which is large enough to hold either a std::unique_ptr
  349. * or std::shared_ptr).
  350. *
  351. * Non-simple layout applies when using custom holders that require more space than `shared_ptr`
  352. * (which is typically the size of two pointers), or when multiple inheritance is used on the
  353. * python side. Non-simple layout allocates the required amount of memory to have multiple
  354. * bound C++ classes as parents. Under this layout, `nonsimple.values_and_holders` is set to a
  355. * pointer to allocated space of the required space to hold a a sequence of value pointers and
  356. * holders followed by a set of holder-constructed flags (1 byte each), i.e.
  357. * [val1*][holder1][val2*][holder2]...[bb...] where each [block] is rounded up to a multiple of
  358. * `sizeof(void *)`. `nonsimple.holder_constructed` is, for convenience, a pointer to the
  359. * beginning of the [bb...] block (but not independently allocated).
  360. */
  361. bool simple_layout : 1;
  362. /// For simple layout, tracks whether the holder has been constructed
  363. bool simple_holder_constructed : 1;
  364. /// If true, get_internals().patients has an entry for this object
  365. bool has_patients : 1;
  366. /// Initializes all of the above type/values/holders data
  367. void allocate_layout();
  368. /// Destroys/deallocates all of the above
  369. void deallocate_layout();
  370. /// Returns the value_and_holder wrapper for the given type (or the first, if `find_type`
  371. /// omitted)
  372. value_and_holder get_value_and_holder(const type_info *find_type = nullptr);
  373. };
  374. static_assert(std::is_standard_layout<instance>::value, "Internal error: `pybind11::detail::instance` is not standard layout!");
  375. struct overload_hash {
  376. inline size_t operator()(const std::pair<const PyObject *, const char *>& v) const {
  377. size_t value = std::hash<const void *>()(v.first);
  378. value ^= std::hash<const void *>()(v.second) + 0x9e3779b9 + (value<<6) + (value>>2);
  379. return value;
  380. }
  381. };
  382. // Python loads modules by default with dlopen with the RTLD_LOCAL flag; under libc++ and possibly
  383. // other stls, this means `typeid(A)` from one module won't equal `typeid(A)` from another module
  384. // even when `A` is the same, non-hidden-visibility type (e.g. from a common include). Under
  385. // stdlibc++, this doesn't happen: equality and the type_index hash are based on the type name,
  386. // which works. If not under a known-good stl, provide our own name-based hasher and equality
  387. // functions that use the type name.
  388. #if defined(__GLIBCXX__)
  389. inline bool same_type(const std::type_info &lhs, const std::type_info &rhs) { return lhs == rhs; }
  390. using type_hash = std::hash<std::type_index>;
  391. using type_equal_to = std::equal_to<std::type_index>;
  392. #else
  393. inline bool same_type(const std::type_info &lhs, const std::type_info &rhs) {
  394. return lhs.name() == rhs.name() ||
  395. std::strcmp(lhs.name(), rhs.name()) == 0;
  396. }
  397. struct type_hash {
  398. size_t operator()(const std::type_index &t) const {
  399. size_t hash = 5381;
  400. const char *ptr = t.name();
  401. while (auto c = static_cast<unsigned char>(*ptr++))
  402. hash = (hash * 33) ^ c;
  403. return hash;
  404. }
  405. };
  406. struct type_equal_to {
  407. bool operator()(const std::type_index &lhs, const std::type_index &rhs) const {
  408. return lhs.name() == rhs.name() ||
  409. std::strcmp(lhs.name(), rhs.name()) == 0;
  410. }
  411. };
  412. #endif
  413. template <typename value_type>
  414. using type_map = std::unordered_map<std::type_index, value_type, type_hash, type_equal_to>;
  415. /// Internal data structure used to track registered instances and types
  416. struct internals {
  417. type_map<void *> registered_types_cpp; // std::type_index -> type_info
  418. std::unordered_map<PyTypeObject *, std::vector<type_info *>> registered_types_py; // PyTypeObject* -> base type_info(s)
  419. std::unordered_multimap<const void *, instance*> registered_instances; // void * -> instance*
  420. std::unordered_set<std::pair<const PyObject *, const char *>, overload_hash> inactive_overload_cache;
  421. type_map<std::vector<bool (*)(PyObject *, void *&)>> direct_conversions;
  422. std::unordered_map<const PyObject *, std::vector<PyObject *>> patients;
  423. std::forward_list<void (*) (std::exception_ptr)> registered_exception_translators;
  424. std::unordered_map<std::string, void *> shared_data; // Custom data to be shared across extensions
  425. std::vector<PyObject *> loader_patient_stack; // Used by `loader_life_support`
  426. PyTypeObject *static_property_type;
  427. PyTypeObject *default_metaclass;
  428. PyObject *instance_base;
  429. #if defined(WITH_THREAD)
  430. decltype(PyThread_create_key()) tstate = 0; // Usually an int but a long on Cygwin64 with Python 3.x
  431. PyInterpreterState *istate = nullptr;
  432. #endif
  433. };
  434. /// Return a reference to the current 'internals' information
  435. inline internals &get_internals();
  436. /// from __cpp_future__ import (convenient aliases from C++14/17)
  437. #if defined(PYBIND11_CPP14) && (!defined(_MSC_VER) || _MSC_VER >= 1910)
  438. using std::enable_if_t;
  439. using std::conditional_t;
  440. using std::remove_cv_t;
  441. using std::remove_reference_t;
  442. #else
  443. template <bool B, typename T = void> using enable_if_t = typename std::enable_if<B, T>::type;
  444. template <bool B, typename T, typename F> using conditional_t = typename std::conditional<B, T, F>::type;
  445. template <typename T> using remove_cv_t = typename std::remove_cv<T>::type;
  446. template <typename T> using remove_reference_t = typename std::remove_reference<T>::type;
  447. #endif
  448. /// Index sequences
  449. #if defined(PYBIND11_CPP14)
  450. using std::index_sequence;
  451. using std::make_index_sequence;
  452. #else
  453. template<size_t ...> struct index_sequence { };
  454. template<size_t N, size_t ...S> struct make_index_sequence_impl : make_index_sequence_impl <N - 1, N - 1, S...> { };
  455. template<size_t ...S> struct make_index_sequence_impl <0, S...> { typedef index_sequence<S...> type; };
  456. template<size_t N> using make_index_sequence = typename make_index_sequence_impl<N>::type;
  457. #endif
  458. /// Make an index sequence of the indices of true arguments
  459. template <typename ISeq, size_t, bool...> struct select_indices_impl { using type = ISeq; };
  460. template <size_t... IPrev, size_t I, bool B, bool... Bs> struct select_indices_impl<index_sequence<IPrev...>, I, B, Bs...>
  461. : select_indices_impl<conditional_t<B, index_sequence<IPrev..., I>, index_sequence<IPrev...>>, I + 1, Bs...> {};
  462. template <bool... Bs> using select_indices = typename select_indices_impl<index_sequence<>, 0, Bs...>::type;
  463. /// Backports of std::bool_constant and std::negation to accomodate older compilers
  464. template <bool B> using bool_constant = std::integral_constant<bool, B>;
  465. template <typename T> struct negation : bool_constant<!T::value> { };
  466. template <typename...> struct void_t_impl { using type = void; };
  467. template <typename... Ts> using void_t = typename void_t_impl<Ts...>::type;
  468. /// Compile-time all/any/none of that check the boolean value of all template types
  469. #ifdef __cpp_fold_expressions
  470. template <class... Ts> using all_of = bool_constant<(Ts::value && ...)>;
  471. template <class... Ts> using any_of = bool_constant<(Ts::value || ...)>;
  472. #elif !defined(_MSC_VER)
  473. template <bool...> struct bools {};
  474. template <class... Ts> using all_of = std::is_same<
  475. bools<Ts::value..., true>,
  476. bools<true, Ts::value...>>;
  477. template <class... Ts> using any_of = negation<all_of<negation<Ts>...>>;
  478. #else
  479. // MSVC has trouble with the above, but supports std::conjunction, which we can use instead (albeit
  480. // at a slight loss of compilation efficiency).
  481. template <class... Ts> using all_of = std::conjunction<Ts...>;
  482. template <class... Ts> using any_of = std::disjunction<Ts...>;
  483. #endif
  484. template <class... Ts> using none_of = negation<any_of<Ts...>>;
  485. template <class T, template<class> class... Predicates> using satisfies_all_of = all_of<Predicates<T>...>;
  486. template <class T, template<class> class... Predicates> using satisfies_any_of = any_of<Predicates<T>...>;
  487. template <class T, template<class> class... Predicates> using satisfies_none_of = none_of<Predicates<T>...>;
  488. /// Strip the class from a method type
  489. template <typename T> struct remove_class { };
  490. template <typename C, typename R, typename... A> struct remove_class<R (C::*)(A...)> { typedef R type(A...); };
  491. template <typename C, typename R, typename... A> struct remove_class<R (C::*)(A...) const> { typedef R type(A...); };
  492. /// Helper template to strip away type modifiers
  493. template <typename T> struct intrinsic_type { typedef T type; };
  494. template <typename T> struct intrinsic_type<const T> { typedef typename intrinsic_type<T>::type type; };
  495. template <typename T> struct intrinsic_type<T*> { typedef typename intrinsic_type<T>::type type; };
  496. template <typename T> struct intrinsic_type<T&> { typedef typename intrinsic_type<T>::type type; };
  497. template <typename T> struct intrinsic_type<T&&> { typedef typename intrinsic_type<T>::type type; };
  498. template <typename T, size_t N> struct intrinsic_type<const T[N]> { typedef typename intrinsic_type<T>::type type; };
  499. template <typename T, size_t N> struct intrinsic_type<T[N]> { typedef typename intrinsic_type<T>::type type; };
  500. template <typename T> using intrinsic_t = typename intrinsic_type<T>::type;
  501. /// Helper type to replace 'void' in some expressions
  502. struct void_type { };
  503. /// Helper template which holds a list of types
  504. template <typename...> struct type_list { };
  505. /// Compile-time integer sum
  506. #ifdef __cpp_fold_expressions
  507. template <typename... Ts> constexpr size_t constexpr_sum(Ts... ns) { return (0 + ... + size_t{ns}); }
  508. #else
  509. constexpr size_t constexpr_sum() { return 0; }
  510. template <typename T, typename... Ts>
  511. constexpr size_t constexpr_sum(T n, Ts... ns) { return size_t{n} + constexpr_sum(ns...); }
  512. #endif
  513. NAMESPACE_BEGIN(constexpr_impl)
  514. /// Implementation details for constexpr functions
  515. constexpr int first(int i) { return i; }
  516. template <typename T, typename... Ts>
  517. constexpr int first(int i, T v, Ts... vs) { return v ? i : first(i + 1, vs...); }
  518. constexpr int last(int /*i*/, int result) { return result; }
  519. template <typename T, typename... Ts>
  520. constexpr int last(int i, int result, T v, Ts... vs) { return last(i + 1, v ? i : result, vs...); }
  521. NAMESPACE_END(constexpr_impl)
  522. /// Return the index of the first type in Ts which satisfies Predicate<T>. Returns sizeof...(Ts) if
  523. /// none match.
  524. template <template<typename> class Predicate, typename... Ts>
  525. constexpr int constexpr_first() { return constexpr_impl::first(0, Predicate<Ts>::value...); }
  526. /// Return the index of the last type in Ts which satisfies Predicate<T>, or -1 if none match.
  527. template <template<typename> class Predicate, typename... Ts>
  528. constexpr int constexpr_last() { return constexpr_impl::last(0, -1, Predicate<Ts>::value...); }
  529. /// Return the Nth element from the parameter pack
  530. template <size_t N, typename T, typename... Ts>
  531. struct pack_element { using type = typename pack_element<N - 1, Ts...>::type; };
  532. template <typename T, typename... Ts>
  533. struct pack_element<0, T, Ts...> { using type = T; };
  534. /// Return the one and only type which matches the predicate, or Default if none match.
  535. /// If more than one type matches the predicate, fail at compile-time.
  536. template <template<typename> class Predicate, typename Default, typename... Ts>
  537. struct exactly_one {
  538. static constexpr auto found = constexpr_sum(Predicate<Ts>::value...);
  539. static_assert(found <= 1, "Found more than one type matching the predicate");
  540. static constexpr auto index = found ? constexpr_first<Predicate, Ts...>() : 0;
  541. using type = conditional_t<found, typename pack_element<index, Ts...>::type, Default>;
  542. };
  543. template <template<typename> class P, typename Default>
  544. struct exactly_one<P, Default> { using type = Default; };
  545. template <template<typename> class Predicate, typename Default, typename... Ts>
  546. using exactly_one_t = typename exactly_one<Predicate, Default, Ts...>::type;
  547. /// Defer the evaluation of type T until types Us are instantiated
  548. template <typename T, typename... /*Us*/> struct deferred_type { using type = T; };
  549. template <typename T, typename... Us> using deferred_t = typename deferred_type<T, Us...>::type;
  550. template <template<typename...> class Base>
  551. struct is_template_base_of_impl {
  552. template <typename... Us> static std::true_type check(Base<Us...> *);
  553. static std::false_type check(...);
  554. };
  555. /// Check if a template is the base of a type. For example:
  556. /// `is_template_base_of<Base, T>` is true if `struct T : Base<U> {}` where U can be anything
  557. template <template<typename...> class Base, typename T>
  558. #if !defined(_MSC_VER)
  559. using is_template_base_of = decltype(is_template_base_of_impl<Base>::check((remove_cv_t<T>*)nullptr));
  560. #else // MSVC2015 has trouble with decltype in template aliases
  561. struct is_template_base_of : decltype(is_template_base_of_impl<Base>::check((remove_cv_t<T>*)nullptr)) { };
  562. #endif
  563. /// Check if T is an instantiation of the template `Class`. For example:
  564. /// `is_instantiation<shared_ptr, T>` is true if `T == shared_ptr<U>` where U can be anything.
  565. template <template<typename...> class Class, typename T>
  566. struct is_instantiation : std::false_type { };
  567. template <template<typename...> class Class, typename... Us>
  568. struct is_instantiation<Class, Class<Us...>> : std::true_type { };
  569. /// Check if T is std::shared_ptr<U> where U can be anything
  570. template <typename T> using is_shared_ptr = is_instantiation<std::shared_ptr, T>;
  571. /// Check if T looks like an input iterator
  572. template <typename T, typename = void> struct is_input_iterator : std::false_type {};
  573. template <typename T>
  574. struct is_input_iterator<T, void_t<decltype(*std::declval<T &>()), decltype(++std::declval<T &>())>>
  575. : std::true_type {};
  576. /// Ignore that a variable is unused in compiler warnings
  577. inline void ignore_unused(const int *) { }
  578. /// Apply a function over each element of a parameter pack
  579. #ifdef __cpp_fold_expressions
  580. #define PYBIND11_EXPAND_SIDE_EFFECTS(PATTERN) (((PATTERN), void()), ...)
  581. #else
  582. using expand_side_effects = bool[];
  583. #define PYBIND11_EXPAND_SIDE_EFFECTS(PATTERN) pybind11::detail::expand_side_effects{ ((PATTERN), void(), false)..., false }
  584. #endif
  585. NAMESPACE_END(detail)
  586. /// Returns a named pointer that is shared among all extension modules (using the same
  587. /// pybind11 version) running in the current interpreter. Names starting with underscores
  588. /// are reserved for internal usage. Returns `nullptr` if no matching entry was found.
  589. inline PYBIND11_NOINLINE void* get_shared_data(const std::string& name) {
  590. auto& internals = detail::get_internals();
  591. auto it = internals.shared_data.find(name);
  592. return it != internals.shared_data.end() ? it->second : nullptr;
  593. }
  594. /// Set the shared data that can be later recovered by `get_shared_data()`.
  595. inline PYBIND11_NOINLINE void *set_shared_data(const std::string& name, void *data) {
  596. detail::get_internals().shared_data[name] = data;
  597. return data;
  598. }
  599. /// Returns a typed reference to a shared data entry (by using `get_shared_data()`) if
  600. /// such entry exists. Otherwise, a new object of default-constructible type `T` is
  601. /// added to the shared data under the given name and a reference to it is returned.
  602. template<typename T> T& get_or_create_shared_data(const std::string& name) {
  603. auto& internals = detail::get_internals();
  604. auto it = internals.shared_data.find(name);
  605. T* ptr = (T*) (it != internals.shared_data.end() ? it->second : nullptr);
  606. if (!ptr) {
  607. ptr = new T();
  608. internals.shared_data[name] = ptr;
  609. }
  610. return *ptr;
  611. }
  612. /// Fetch and hold an error which was already set in Python
  613. class error_already_set : public std::runtime_error {
  614. public:
  615. error_already_set() : std::runtime_error(detail::error_string()) {
  616. PyErr_Fetch(&type, &value, &trace);
  617. }
  618. error_already_set(const error_already_set &) = delete;
  619. error_already_set(error_already_set &&e)
  620. : std::runtime_error(e.what()), type(e.type), value(e.value),
  621. trace(e.trace) { e.type = e.value = e.trace = nullptr; }
  622. inline ~error_already_set(); // implementation in pybind11.h
  623. error_already_set& operator=(const error_already_set &) = delete;
  624. /// Give the error back to Python
  625. void restore() { PyErr_Restore(type, value, trace); type = value = trace = nullptr; }
  626. /// Clear the held Python error state (the C++ `what()` message remains intact)
  627. void clear() { restore(); PyErr_Clear(); }
  628. /// Check if the trapped exception matches a given Python exception class
  629. bool matches(PyObject *ex) const { return PyErr_GivenExceptionMatches(ex, type); }
  630. private:
  631. PyObject *type, *value, *trace;
  632. };
  633. /// C++ bindings of builtin Python exceptions
  634. class builtin_exception : public std::runtime_error {
  635. public:
  636. using std::runtime_error::runtime_error;
  637. /// Set the error using the Python C API
  638. virtual void set_error() const = 0;
  639. };
  640. #define PYBIND11_RUNTIME_EXCEPTION(name, type) \
  641. class name : public builtin_exception { public: \
  642. using builtin_exception::builtin_exception; \
  643. name() : name("") { } \
  644. void set_error() const override { PyErr_SetString(type, what()); } \
  645. };
  646. PYBIND11_RUNTIME_EXCEPTION(stop_iteration, PyExc_StopIteration)
  647. PYBIND11_RUNTIME_EXCEPTION(index_error, PyExc_IndexError)
  648. PYBIND11_RUNTIME_EXCEPTION(key_error, PyExc_KeyError)
  649. PYBIND11_RUNTIME_EXCEPTION(value_error, PyExc_ValueError)
  650. PYBIND11_RUNTIME_EXCEPTION(type_error, PyExc_TypeError)
  651. PYBIND11_RUNTIME_EXCEPTION(cast_error, PyExc_RuntimeError) /// Thrown when pybind11::cast or handle::call fail due to a type casting error
  652. PYBIND11_RUNTIME_EXCEPTION(reference_cast_error, PyExc_RuntimeError) /// Used internally
  653. [[noreturn]] PYBIND11_NOINLINE inline void pybind11_fail(const char *reason) { throw std::runtime_error(reason); }
  654. [[noreturn]] PYBIND11_NOINLINE inline void pybind11_fail(const std::string &reason) { throw std::runtime_error(reason); }
  655. template <typename T, typename SFINAE = void> struct format_descriptor { };
  656. NAMESPACE_BEGIN(detail)
  657. // Returns the index of the given type in the type char array below, and in the list in numpy.h
  658. // The order here is: bool; 8 ints ((signed,unsigned)x(8,16,32,64)bits); float,double,long double;
  659. // complex float,double,long double. Note that the long double types only participate when long
  660. // double is actually longer than double (it isn't under MSVC).
  661. // NB: not only the string below but also complex.h and numpy.h rely on this order.
  662. template <typename T, typename SFINAE = void> struct is_fmt_numeric { static constexpr bool value = false; };
  663. template <typename T> struct is_fmt_numeric<T, enable_if_t<std::is_arithmetic<T>::value>> {
  664. static constexpr bool value = true;
  665. static constexpr int index = std::is_same<T, bool>::value ? 0 : 1 + (
  666. std::is_integral<T>::value ? detail::log2(sizeof(T))*2 + std::is_unsigned<T>::value : 8 + (
  667. std::is_same<T, double>::value ? 1 : std::is_same<T, long double>::value ? 2 : 0));
  668. };
  669. NAMESPACE_END(detail)
  670. template <typename T> struct format_descriptor<T, detail::enable_if_t<std::is_arithmetic<T>::value>> {
  671. static constexpr const char c = "?bBhHiIqQfdg"[detail::is_fmt_numeric<T>::index];
  672. static constexpr const char value[2] = { c, '\0' };
  673. static std::string format() { return std::string(1, c); }
  674. };
  675. template <typename T> constexpr const char format_descriptor<
  676. T, detail::enable_if_t<std::is_arithmetic<T>::value>>::value[2];
  677. /// RAII wrapper that temporarily clears any Python error state
  678. struct error_scope {
  679. PyObject *type, *value, *trace;
  680. error_scope() { PyErr_Fetch(&type, &value, &trace); }
  681. ~error_scope() { PyErr_Restore(type, value, trace); }
  682. };
  683. /// Dummy destructor wrapper that can be used to expose classes with a private destructor
  684. struct nodelete { template <typename T> void operator()(T*) { } };
  685. // overload_cast requires variable templates: C++14
  686. #if defined(PYBIND11_CPP14)
  687. #define PYBIND11_OVERLOAD_CAST 1
  688. NAMESPACE_BEGIN(detail)
  689. template <typename... Args>
  690. struct overload_cast_impl {
  691. template <typename Return>
  692. constexpr auto operator()(Return (*pf)(Args...)) const noexcept
  693. -> decltype(pf) { return pf; }
  694. template <typename Return, typename Class>
  695. constexpr auto operator()(Return (Class::*pmf)(Args...), std::false_type = {}) const noexcept
  696. -> decltype(pmf) { return pmf; }
  697. template <typename Return, typename Class>
  698. constexpr auto operator()(Return (Class::*pmf)(Args...) const, std::true_type) const noexcept
  699. -> decltype(pmf) { return pmf; }
  700. };
  701. NAMESPACE_END(detail)
  702. /// Syntax sugar for resolving overloaded function pointers:
  703. /// - regular: static_cast<Return (Class::*)(Arg0, Arg1, Arg2)>(&Class::func)
  704. /// - sweet: overload_cast<Arg0, Arg1, Arg2>(&Class::func)
  705. template <typename... Args>
  706. static constexpr detail::overload_cast_impl<Args...> overload_cast = {};
  707. // MSVC 2015 only accepts this particular initialization syntax for this variable template.
  708. /// Const member function selector for overload_cast
  709. /// - regular: static_cast<Return (Class::*)(Arg) const>(&Class::func)
  710. /// - sweet: overload_cast<Arg>(&Class::func, const_)
  711. static constexpr auto const_ = std::true_type{};
  712. #else // no overload_cast: providing something that static_assert-fails:
  713. template <typename... Args> struct overload_cast {
  714. static_assert(detail::deferred_t<std::false_type, Args...>::value,
  715. "pybind11::overload_cast<...> requires compiling in C++14 mode");
  716. };
  717. #endif // overload_cast
  718. NAMESPACE_BEGIN(detail)
  719. // Adaptor for converting arbitrary container arguments into a vector; implicitly convertible from
  720. // any standard container (or C-style array) supporting std::begin/std::end, any singleton
  721. // arithmetic type (if T is arithmetic), or explicitly constructible from an iterator pair.
  722. template <typename T>
  723. class any_container {
  724. std::vector<T> v;
  725. public:
  726. any_container() = default;
  727. // Can construct from a pair of iterators
  728. template <typename It, typename = enable_if_t<is_input_iterator<It>::value>>
  729. any_container(It first, It last) : v(first, last) { }
  730. // Implicit conversion constructor from any arbitrary container type with values convertible to T
  731. template <typename Container, typename = enable_if_t<std::is_convertible<decltype(*std::begin(std::declval<const Container &>())), T>::value>>
  732. any_container(const Container &c) : any_container(std::begin(c), std::end(c)) { }
  733. // initializer_list's aren't deducible, so don't get matched by the above template; we need this
  734. // to explicitly allow implicit conversion from one:
  735. template <typename TIn, typename = enable_if_t<std::is_convertible<TIn, T>::value>>
  736. any_container(const std::initializer_list<TIn> &c) : any_container(c.begin(), c.end()) { }
  737. // Avoid copying if given an rvalue vector of the correct type.
  738. any_container(std::vector<T> &&v) : v(std::move(v)) { }
  739. // Moves the vector out of an rvalue any_container
  740. operator std::vector<T> &&() && { return std::move(v); }
  741. // Dereferencing obtains a reference to the underlying vector
  742. std::vector<T> &operator*() { return v; }
  743. const std::vector<T> &operator*() const { return v; }
  744. // -> lets you call methods on the underlying vector
  745. std::vector<T> *operator->() { return &v; }
  746. const std::vector<T> *operator->() const { return &v; }
  747. };
  748. NAMESPACE_END(detail)
  749. NAMESPACE_END(pybind11)