2015-07-05 18:05:44 +00:00
|
|
|
/*
|
|
|
|
pybind/cast.h: Partial template specializations to cast between
|
|
|
|
C++ and Python types
|
|
|
|
|
|
|
|
Copyright (c) 2015 Wenzel Jakob <wenzel@inf.ethz.ch>
|
|
|
|
|
|
|
|
All rights reserved. Use of this source code is governed by a
|
|
|
|
BSD-style license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2015-07-11 15:41:48 +00:00
|
|
|
#pragma once
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2015-07-11 15:41:48 +00:00
|
|
|
#include <pybind/pytypes.h>
|
|
|
|
#include <pybind/typeid.h>
|
2015-07-05 18:05:44 +00:00
|
|
|
#include <array>
|
2015-08-28 15:53:31 +00:00
|
|
|
#include <limits>
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
NAMESPACE_BEGIN(pybind)
|
|
|
|
NAMESPACE_BEGIN(detail)
|
|
|
|
|
2015-08-24 13:31:24 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define NOINLINE __declspec(noinline)
|
|
|
|
#else
|
|
|
|
#define NOINLINE __attribute__ ((noinline))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Linked list descriptor type for function signatures (produces smaller binaries
|
2015-09-04 21:42:12 +00:00
|
|
|
compared to a previous solution using std::string and operator +=) */
|
2015-08-24 13:31:24 +00:00
|
|
|
class descr {
|
|
|
|
public:
|
|
|
|
struct entry {
|
|
|
|
const std::type_info *type = nullptr;
|
|
|
|
const char *str = nullptr;
|
|
|
|
entry *next = nullptr;
|
|
|
|
entry(const std::type_info *type) : type(type) { }
|
|
|
|
entry(const char *str) : str(str) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
descr() { }
|
|
|
|
descr(descr &&d) : first(d.first), last(d.last) { d.first = d.last = nullptr; }
|
|
|
|
NOINLINE descr(const char *str) { first = last = new entry { str }; }
|
|
|
|
NOINLINE descr(const std::type_info &type) { first = last = new entry { &type }; }
|
|
|
|
|
|
|
|
NOINLINE void operator+(const char *str) {
|
|
|
|
entry *next = new entry { str };
|
|
|
|
last->next = next;
|
|
|
|
last = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
NOINLINE void operator+(const std::type_info *type) {
|
|
|
|
entry *next = new entry { type };
|
|
|
|
last->next = next;
|
|
|
|
last = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
NOINLINE void operator+=(descr &&other) {
|
|
|
|
last->next = other.first;
|
|
|
|
while (last->next)
|
|
|
|
last = last->next;
|
|
|
|
other.first = other.last = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
NOINLINE friend descr operator+(descr &&l, descr &&r) {
|
|
|
|
descr result(std::move(l));
|
|
|
|
result += std::move(r);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NOINLINE std::string str() const {
|
|
|
|
std::string result;
|
|
|
|
auto const& registered_types = get_internals().registered_types;
|
|
|
|
for (entry *it = first; it != nullptr; it = it->next) {
|
|
|
|
if (it->type) {
|
|
|
|
auto it2 = registered_types.find(it->type);
|
|
|
|
if (it2 != registered_types.end()) {
|
|
|
|
result += it2->second.type->tp_name;
|
|
|
|
} else {
|
|
|
|
std::string tname(it->type->name());
|
|
|
|
detail::clean_type_id(tname);
|
|
|
|
result += tname;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result += it->str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
NOINLINE ~descr() {
|
|
|
|
while (first) {
|
|
|
|
entry *tmp = first->next;
|
|
|
|
delete first;
|
|
|
|
first = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
entry *first = nullptr;
|
|
|
|
entry *last = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
#undef NOINLINE
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
/// Generic type caster for objects stored on the heap
|
|
|
|
template <typename type> class type_caster {
|
|
|
|
public:
|
|
|
|
typedef instance<type> instance_type;
|
|
|
|
|
2015-08-26 15:23:23 +00:00
|
|
|
static descr name() { return typeid(type); }
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
type_caster() {
|
|
|
|
auto const& registered_types = get_internals().registered_types;
|
2015-08-24 13:31:24 +00:00
|
|
|
auto it = registered_types.find(&typeid(type));
|
2015-07-05 18:05:44 +00:00
|
|
|
if (it != registered_types.end())
|
|
|
|
typeinfo = &it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool load(PyObject *src, bool convert) {
|
|
|
|
if (src == nullptr || typeinfo == nullptr)
|
|
|
|
return false;
|
|
|
|
if (PyType_IsSubtype(Py_TYPE(src), typeinfo->type)) {
|
|
|
|
value = ((instance_type *) src)->value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (convert) {
|
|
|
|
for (auto &converter : typeinfo->implicit_conversions) {
|
|
|
|
temp = object(converter(src, typeinfo->type), false);
|
|
|
|
if (load(temp.ptr(), false))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(const type &src, return_value_policy policy, PyObject *parent) {
|
|
|
|
if (policy == return_value_policy::automatic)
|
|
|
|
policy = return_value_policy::copy;
|
|
|
|
return cast(&src, policy, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(const type *_src, return_value_policy policy, PyObject *parent) {
|
|
|
|
type *src = const_cast<type *>(_src);
|
|
|
|
if (src == nullptr) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
|
|
|
// avoid an issue with internal references matching their parent's address
|
2015-07-26 14:33:49 +00:00
|
|
|
bool dont_cache = policy == return_value_policy::reference_internal &&
|
|
|
|
parent && ((instance<void> *) parent)->value == (void *) src;
|
2015-07-05 18:05:44 +00:00
|
|
|
auto& internals = get_internals();
|
|
|
|
auto it_instance = internals.registered_instances.find(src);
|
|
|
|
if (it_instance != internals.registered_instances.end() && !dont_cache) {
|
|
|
|
PyObject *inst = it_instance->second;
|
|
|
|
Py_INCREF(inst);
|
|
|
|
return inst;
|
|
|
|
}
|
2015-08-24 13:31:24 +00:00
|
|
|
auto it = internals.registered_types.find(&typeid(type));
|
2015-07-05 18:05:44 +00:00
|
|
|
if (it == internals.registered_types.end()) {
|
|
|
|
std::string msg = std::string("Unregistered type : ") + type_id<type>();
|
|
|
|
PyErr_SetString(PyExc_TypeError, msg.c_str());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto &type_info = it->second;
|
|
|
|
instance_type *inst = (instance_type *) PyType_GenericAlloc(type_info.type, 0);
|
|
|
|
inst->value = src;
|
|
|
|
inst->owned = true;
|
|
|
|
inst->parent = nullptr;
|
|
|
|
if (policy == return_value_policy::automatic)
|
|
|
|
policy = return_value_policy::take_ownership;
|
|
|
|
handle_return_value_policy<type>(inst, policy, parent);
|
|
|
|
PyObject *inst_pyobj = (PyObject *) inst;
|
|
|
|
type_info.init_holder(inst_pyobj);
|
|
|
|
if (!dont_cache)
|
|
|
|
internals.registered_instances[inst->value] = inst_pyobj;
|
|
|
|
return inst_pyobj;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T, typename std::enable_if<std::is_copy_constructible<T>::value, int>::type = 0>
|
|
|
|
static void handle_return_value_policy(instance<T> *inst, return_value_policy policy, PyObject *parent) {
|
|
|
|
if (policy == return_value_policy::copy) {
|
|
|
|
inst->value = new T(*(inst->value));
|
|
|
|
} else if (policy == return_value_policy::reference) {
|
|
|
|
inst->owned = false;
|
|
|
|
} else if (policy == return_value_policy::reference_internal) {
|
|
|
|
inst->owned = false;
|
|
|
|
inst->parent = parent;
|
|
|
|
Py_XINCREF(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T, typename std::enable_if<!std::is_copy_constructible<T>::value, int>::type = 0>
|
|
|
|
static void handle_return_value_policy(instance<T> *inst, return_value_policy policy, PyObject *parent) {
|
|
|
|
if (policy == return_value_policy::copy) {
|
|
|
|
throw cast_error("return_value_policy = copy, but the object is non-copyable!");
|
|
|
|
} else if (policy == return_value_policy::reference) {
|
|
|
|
inst->owned = false;
|
|
|
|
} else if (policy == return_value_policy::reference_internal) {
|
|
|
|
inst->owned = false;
|
|
|
|
inst->parent = parent;
|
|
|
|
Py_XINCREF(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
operator type*() { return value; }
|
|
|
|
operator type&() { return *value; }
|
|
|
|
protected:
|
|
|
|
type *value = nullptr;
|
|
|
|
const type_info *typeinfo = nullptr;
|
|
|
|
object temp;
|
|
|
|
};
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
#define PYBIND_TYPE_CASTER(type, py_name) \
|
2015-07-05 18:05:44 +00:00
|
|
|
protected: \
|
|
|
|
type value; \
|
|
|
|
public: \
|
2015-08-26 15:23:23 +00:00
|
|
|
static descr name() { return py_name; } \
|
2015-07-05 18:05:44 +00:00
|
|
|
static PyObject *cast(const type *src, return_value_policy policy, PyObject *parent) { \
|
|
|
|
return cast(*src, policy, parent); \
|
|
|
|
} \
|
|
|
|
operator type*() { return &value; } \
|
|
|
|
operator type&() { return value; } \
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
#define PYBIND_TYPE_CASTER_NUMBER(type, py_type, from_type, to_pytype) \
|
2015-07-05 18:05:44 +00:00
|
|
|
template <> class type_caster<type> { \
|
|
|
|
public: \
|
|
|
|
bool load(PyObject *src, bool) { \
|
2015-08-28 15:49:15 +00:00
|
|
|
py_type py_value = from_type(src); \
|
|
|
|
if ((py_value == (py_type) -1 && PyErr_Occurred()) || \
|
2015-08-28 15:53:31 +00:00
|
|
|
(std::numeric_limits<type>::is_integer && \
|
|
|
|
sizeof(py_type) != sizeof(type) && \
|
2015-08-28 15:58:24 +00:00
|
|
|
(py_value < (py_type) std::numeric_limits<type>::min() || \
|
|
|
|
py_value > (py_type) std::numeric_limits<type>::max()))) { \
|
2015-07-05 18:05:44 +00:00
|
|
|
PyErr_Clear(); \
|
|
|
|
return false; \
|
|
|
|
} \
|
2015-08-28 15:49:15 +00:00
|
|
|
value = (type) py_value; \
|
2015-07-05 18:05:44 +00:00
|
|
|
return true; \
|
|
|
|
} \
|
|
|
|
static PyObject *cast(type src, return_value_policy /* policy */, PyObject * /* parent */) { \
|
|
|
|
return to_pytype((py_type) src); \
|
|
|
|
} \
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(type, #type); \
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
|
|
#define PyLong_AsUnsignedLongLong_Fixed PyLong_AsUnsignedLongLong
|
|
|
|
#define PyLong_AsLongLong_Fixed PyLong_AsLongLong
|
|
|
|
#else
|
|
|
|
inline PY_LONG_LONG PyLong_AsLongLong_Fixed(PyObject *o) {
|
|
|
|
if (PyInt_Check(o))
|
|
|
|
return (PY_LONG_LONG) PyLong_AsLong(o);
|
|
|
|
else
|
|
|
|
return ::PyLong_AsLongLong(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned PY_LONG_LONG PyLong_AsUnsignedLongLong_Fixed(PyObject *o) {
|
|
|
|
if (PyInt_Check(o))
|
|
|
|
return (unsigned PY_LONG_LONG) PyLong_AsUnsignedLong(o);
|
|
|
|
else
|
|
|
|
return ::PyLong_AsUnsignedLongLong(o);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-28 15:49:15 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(int8_t, long, PyLong_AsLong, PyLong_FromLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(uint8_t, unsigned long, PyLong_AsUnsignedLong, PyLong_FromUnsignedLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(int16_t, long, PyLong_AsLong, PyLong_FromLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(uint16_t, unsigned long, PyLong_AsUnsignedLong, PyLong_FromUnsignedLong)
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(int32_t, long, PyLong_AsLong, PyLong_FromLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(uint32_t, unsigned long, PyLong_AsUnsignedLong, PyLong_FromUnsignedLong)
|
2015-09-04 21:42:12 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(int64_t, PY_LONG_LONG, PyLong_AsLongLong_Fixed, PyLong_FromLongLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(uint64_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong_Fixed, PyLong_FromUnsignedLongLong)
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
#if defined(__APPLE__) // size_t/ssize_t are separate types on Mac OS X
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(ssize_t, Py_ssize_t, PyLong_AsSsize_t, PyLong_FromSsize_t)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(size_t, size_t, PyLong_AsSize_t, PyLong_FromSize_t)
|
2015-09-04 21:42:12 +00:00
|
|
|
#else
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(ssize_t, PY_LONG_LONG, PyLong_AsLongLong_Fixed, PyLong_FromLongLong)
|
|
|
|
PYBIND_TYPE_CASTER_NUMBER(size_t, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong_Fixed, PyLong_FromUnsignedLongLong)
|
|
|
|
#endif
|
2015-07-05 18:05:44 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-28 15:58:24 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(float, double, PyFloat_AsDouble, PyFloat_FromDouble)
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER_NUMBER(double, double, PyFloat_AsDouble, PyFloat_FromDouble)
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2015-07-30 13:29:00 +00:00
|
|
|
template <> class type_caster<void_type> {
|
2015-07-05 18:05:44 +00:00
|
|
|
public:
|
|
|
|
bool load(PyObject *, bool) { return true; }
|
2015-07-30 13:29:00 +00:00
|
|
|
static PyObject *cast(void_type, return_value_policy /* policy */, PyObject * /* parent */) {
|
2015-07-05 18:05:44 +00:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
2015-07-30 13:29:00 +00:00
|
|
|
PYBIND_TYPE_CASTER(void_type, "None");
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-10-01 16:37:26 +00:00
|
|
|
template <> class type_caster<void> : public type_caster<void_type> {
|
|
|
|
};
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
template <> class type_caster<bool> {
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src, bool) {
|
|
|
|
if (src == Py_True) { value = true; return true; }
|
|
|
|
else if (src == Py_False) { value = false; return true; }
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
static PyObject *cast(bool src, return_value_policy /* policy */, PyObject * /* parent */) {
|
|
|
|
PyObject *result = src ? Py_True : Py_False;
|
|
|
|
Py_INCREF(result);
|
|
|
|
return result;
|
|
|
|
}
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(bool, "bool");
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> class type_caster<std::string> {
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src, bool) {
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
2015-07-05 18:05:44 +00:00
|
|
|
const char *ptr = PyUnicode_AsUTF8(src);
|
2015-09-04 21:42:12 +00:00
|
|
|
#else
|
|
|
|
const char *ptr = nullptr;
|
|
|
|
object temp;
|
|
|
|
if (PyString_Check(src)) {
|
|
|
|
ptr = PyString_AsString(src);
|
|
|
|
} else {
|
|
|
|
temp = object(PyUnicode_AsUTF8String(src), false);
|
|
|
|
if (temp.ptr() != nullptr)
|
|
|
|
ptr = PyString_AsString(temp.ptr());
|
|
|
|
}
|
|
|
|
#endif
|
2015-07-05 18:05:44 +00:00
|
|
|
if (!ptr) { PyErr_Clear(); return false; }
|
|
|
|
value = std::string(ptr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static PyObject *cast(const std::string &src, return_value_policy /* policy */, PyObject * /* parent */) {
|
|
|
|
return PyUnicode_FromString(src.c_str());
|
|
|
|
}
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(std::string, "str");
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-07-21 22:59:01 +00:00
|
|
|
#ifdef HAVE_WCHAR_H
|
|
|
|
template <> class type_caster<std::wstring> {
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src, bool) {
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
2015-07-21 22:59:01 +00:00
|
|
|
const wchar_t *ptr = PyUnicode_AsWideCharString(src, nullptr);
|
2015-09-04 21:42:12 +00:00
|
|
|
#else
|
|
|
|
object temp(PyUnicode_AsUTF16String(src), false);
|
|
|
|
if (temp.ptr() == nullptr)
|
|
|
|
return false;
|
|
|
|
const wchar_t *ptr = (wchar_t*) PyString_AsString(temp.ptr());
|
|
|
|
#endif
|
|
|
|
|
2015-07-21 22:59:01 +00:00
|
|
|
if (!ptr) { PyErr_Clear(); return false; }
|
|
|
|
value = std::wstring(ptr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static PyObject *cast(const std::wstring &src, return_value_policy /* policy */, PyObject * /* parent */) {
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
2015-07-21 22:59:01 +00:00
|
|
|
return PyUnicode_FromWideChar(src.c_str(), src.length());
|
2015-09-04 21:42:12 +00:00
|
|
|
#else
|
|
|
|
return PyUnicode_DecodeUTF16((const char *) src.c_str(), src.length() * 2, "strict", nullptr);
|
|
|
|
#endif
|
2015-07-21 22:59:01 +00:00
|
|
|
}
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(std::wstring, "wstr");
|
2015-07-21 22:59:01 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
template <> class type_caster<char> {
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src, bool) {
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION >= 3
|
2015-07-05 18:05:44 +00:00
|
|
|
char *ptr = PyUnicode_AsUTF8(src);
|
2015-09-04 21:42:12 +00:00
|
|
|
#else
|
|
|
|
temp = object(PyUnicode_AsLatin1String(src), false);
|
|
|
|
if (temp.ptr() == nullptr)
|
|
|
|
return false;
|
|
|
|
char *ptr = PyString_AsString(temp.ptr());
|
|
|
|
#endif
|
2015-07-05 18:05:44 +00:00
|
|
|
if (!ptr) { PyErr_Clear(); return false; }
|
|
|
|
value = ptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(const char *src, return_value_policy /* policy */, PyObject * /* parent */) {
|
|
|
|
return PyUnicode_FromString(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(char src, return_value_policy /* policy */, PyObject * /* parent */) {
|
|
|
|
char str[2] = { src, '\0' };
|
|
|
|
return PyUnicode_DecodeLatin1(str, 1, nullptr);
|
|
|
|
}
|
|
|
|
|
2015-08-26 15:23:23 +00:00
|
|
|
static descr name() { return "str"; }
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
operator char*() { return value; }
|
|
|
|
operator char() { return *value; }
|
|
|
|
protected:
|
|
|
|
char *value;
|
2015-09-04 21:42:12 +00:00
|
|
|
#if PY_MAJOR_VERSION < 3
|
|
|
|
object temp;
|
|
|
|
#endif
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T1, typename T2> class type_caster<std::pair<T1, T2>> {
|
|
|
|
typedef std::pair<T1, T2> type;
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src, bool convert) {
|
|
|
|
if (!PyTuple_Check(src) || PyTuple_Size(src) != 2)
|
|
|
|
return false;
|
|
|
|
if (!first.load(PyTuple_GetItem(src, 0), convert))
|
|
|
|
return false;
|
|
|
|
return second.load(PyTuple_GetItem(src, 1), convert);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(const type &src, return_value_policy policy, PyObject *parent) {
|
2015-07-30 13:29:00 +00:00
|
|
|
PyObject *o1 = type_caster<typename decay<T1>::type>::cast(src.first, policy, parent);
|
|
|
|
PyObject *o2 = type_caster<typename decay<T2>::type>::cast(src.second, policy, parent);
|
2015-07-05 18:05:44 +00:00
|
|
|
if (!o1 || !o2) {
|
|
|
|
Py_XDECREF(o1);
|
|
|
|
Py_XDECREF(o2);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
PyObject *tuple = PyTuple_New(2);
|
|
|
|
PyTuple_SetItem(tuple, 0, o1);
|
|
|
|
PyTuple_SetItem(tuple, 1, o2);
|
|
|
|
return tuple;
|
|
|
|
}
|
|
|
|
|
2015-08-26 15:23:23 +00:00
|
|
|
static descr name() {
|
2015-08-24 13:31:24 +00:00
|
|
|
class descr result("(");
|
2015-08-26 15:23:23 +00:00
|
|
|
result += std::move(type_caster<typename decay<T1>::type>::name());
|
2015-08-24 13:31:24 +00:00
|
|
|
result += ", ";
|
2015-08-26 15:23:23 +00:00
|
|
|
result += std::move(type_caster<typename decay<T2>::type>::name());
|
2015-08-24 13:31:24 +00:00
|
|
|
result += ")";
|
|
|
|
return result;
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
operator type() {
|
|
|
|
return type(first, second);
|
|
|
|
}
|
|
|
|
protected:
|
2015-07-30 13:29:00 +00:00
|
|
|
type_caster<typename decay<T1>::type> first;
|
|
|
|
type_caster<typename decay<T2>::type> second;
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-07-30 13:29:00 +00:00
|
|
|
template <typename... Tuple> class type_caster<std::tuple<Tuple...>> {
|
2015-07-05 18:05:44 +00:00
|
|
|
typedef std::tuple<Tuple...> type;
|
|
|
|
public:
|
|
|
|
enum { size = sizeof...(Tuple) };
|
|
|
|
|
|
|
|
bool load(PyObject *src, bool convert) {
|
2015-07-26 14:33:49 +00:00
|
|
|
return load(src, convert, typename make_index_sequence<sizeof...(Tuple)>::type());
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *cast(const type &src, return_value_policy policy, PyObject *parent) {
|
2015-07-26 14:33:49 +00:00
|
|
|
return cast(src, policy, parent, typename make_index_sequence<size>::type());
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
2015-08-26 15:23:23 +00:00
|
|
|
static descr name(const char **keywords = nullptr, const char **values = nullptr) {
|
|
|
|
std::array<class descr, size> names {{
|
|
|
|
type_caster<typename decay<Tuple>::type>::name()...
|
2015-07-05 18:05:44 +00:00
|
|
|
}};
|
2015-08-24 13:31:24 +00:00
|
|
|
class descr result("(");
|
|
|
|
for (int i=0; i<size; ++i) {
|
|
|
|
if (keywords && keywords[i]) {
|
|
|
|
result += keywords[i];
|
2015-07-29 15:51:54 +00:00
|
|
|
result += " : ";
|
|
|
|
}
|
2015-08-26 15:23:23 +00:00
|
|
|
result += std::move(names[i]);
|
2015-08-24 13:31:24 +00:00
|
|
|
if (values && values[i]) {
|
2015-07-29 15:51:54 +00:00
|
|
|
result += " = ";
|
2015-08-24 13:31:24 +00:00
|
|
|
result += values[i];
|
2015-07-29 15:51:54 +00:00
|
|
|
}
|
2015-08-24 13:31:24 +00:00
|
|
|
if (i+1 < size)
|
2015-07-05 18:05:44 +00:00
|
|
|
result += ", ";
|
|
|
|
}
|
|
|
|
result += ")";
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-07-29 15:51:54 +00:00
|
|
|
template <typename ReturnValue, typename Func> typename std::enable_if<!std::is_void<ReturnValue>::value, ReturnValue>::type call(Func &&f) {
|
|
|
|
return call<ReturnValue>(std::forward<Func>(f), typename make_index_sequence<sizeof...(Tuple)>::type());
|
2015-07-26 14:33:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:29:00 +00:00
|
|
|
template <typename ReturnValue, typename Func> typename std::enable_if<std::is_void<ReturnValue>::value, void_type>::type call(Func &&f) {
|
2015-07-29 15:51:54 +00:00
|
|
|
call<ReturnValue>(std::forward<Func>(f), typename make_index_sequence<sizeof...(Tuple)>::type());
|
2015-07-30 13:29:00 +00:00
|
|
|
return void_type();
|
2015-07-26 14:33:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
operator type() {
|
2015-07-26 14:33:49 +00:00
|
|
|
return cast(typename make_index_sequence<sizeof...(Tuple)>::type());
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
2015-07-26 14:33:49 +00:00
|
|
|
|
2015-07-05 18:05:44 +00:00
|
|
|
protected:
|
2015-07-29 15:51:54 +00:00
|
|
|
template <typename ReturnValue, typename Func, size_t ... Index> ReturnValue call(Func &&f, index_sequence<Index...>) {
|
2015-07-26 14:33:49 +00:00
|
|
|
return f((Tuple) std::get<Index>(value)...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <size_t ... Index> type cast(index_sequence<Index...>) {
|
2015-07-05 18:05:44 +00:00
|
|
|
return type((Tuple) std::get<Index>(value)...);
|
|
|
|
}
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
template <size_t ... Indices> bool load(PyObject *src, bool convert, index_sequence<Indices...>) {
|
2015-07-05 18:05:44 +00:00
|
|
|
if (!PyTuple_Check(src))
|
|
|
|
return false;
|
|
|
|
if (PyTuple_Size(src) != size)
|
|
|
|
return false;
|
|
|
|
std::array<bool, size> results {{
|
2015-07-30 13:29:00 +00:00
|
|
|
(PyTuple_GET_ITEM(src, Indices) != nullptr ? std::get<Indices>(value).load(PyTuple_GET_ITEM(src, Indices), convert) : false)...
|
2015-07-05 18:05:44 +00:00
|
|
|
}};
|
2015-08-24 13:31:24 +00:00
|
|
|
(void) convert; /* avoid a warning when the tuple is empty */
|
2015-07-05 18:05:44 +00:00
|
|
|
for (bool r : results)
|
|
|
|
if (!r)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implementation: Convert a C++ tuple into a Python tuple */
|
2015-07-26 14:33:49 +00:00
|
|
|
template <size_t ... Indices> static PyObject *cast(const type &src, return_value_policy policy, PyObject *parent, index_sequence<Indices...>) {
|
2015-07-05 18:05:44 +00:00
|
|
|
std::array<PyObject *, size> results {{
|
2015-07-30 13:29:00 +00:00
|
|
|
type_caster<typename decay<Tuple>::type>::cast(std::get<Indices>(src), policy, parent)...
|
2015-07-05 18:05:44 +00:00
|
|
|
}};
|
|
|
|
bool success = true;
|
|
|
|
for (auto result : results)
|
|
|
|
if (result == nullptr)
|
|
|
|
success = false;
|
|
|
|
if (success) {
|
|
|
|
PyObject *tuple = PyTuple_New(size);
|
|
|
|
int counter = 0;
|
|
|
|
for (auto result : results)
|
|
|
|
PyTuple_SetItem(tuple, counter++, result);
|
|
|
|
return tuple;
|
|
|
|
} else {
|
|
|
|
for (auto result : results) {
|
|
|
|
Py_XDECREF(result);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-07-30 13:29:00 +00:00
|
|
|
std::tuple<type_caster<typename decay<Tuple>::type>...> value;
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Type caster for holder types like std::shared_ptr, etc.
|
|
|
|
template <typename type, typename holder_type> class type_caster_holder : public type_caster<type> {
|
|
|
|
public:
|
|
|
|
typedef type_caster<type> parent;
|
|
|
|
bool load(PyObject *src, bool convert) {
|
|
|
|
if (!parent::load(src, convert))
|
|
|
|
return false;
|
|
|
|
holder = holder_type(parent::value);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
explicit operator type*() { return this->value; }
|
|
|
|
explicit operator type&() { return *(this->value); }
|
|
|
|
explicit operator holder_type&() { return holder; }
|
|
|
|
explicit operator holder_type*() { return &holder; }
|
|
|
|
protected:
|
|
|
|
holder_type holder;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <> class type_caster<handle> {
|
|
|
|
public:
|
|
|
|
bool load(PyObject *src) {
|
|
|
|
value = handle(src);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static PyObject *cast(const handle &src, return_value_policy /* policy */, PyObject * /* parent */) {
|
|
|
|
src.inc_ref();
|
|
|
|
return (PyObject *) src.ptr();
|
|
|
|
}
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(handle, "handle");
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
#define PYBIND_TYPE_CASTER_PYTYPE(name) \
|
2015-07-05 18:05:44 +00:00
|
|
|
template <> class type_caster<name> { \
|
|
|
|
public: \
|
|
|
|
bool load(PyObject *src, bool) { value = name(src, true); return true; } \
|
|
|
|
static PyObject *cast(const name &src, return_value_policy /* policy */, PyObject * /* parent */) { \
|
|
|
|
src.inc_ref(); return (PyObject *) src.ptr(); \
|
|
|
|
} \
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER(name, #name); \
|
2015-07-05 18:05:44 +00:00
|
|
|
};
|
|
|
|
|
2015-07-26 14:33:49 +00:00
|
|
|
PYBIND_TYPE_CASTER_PYTYPE(object) PYBIND_TYPE_CASTER_PYTYPE(buffer)
|
|
|
|
PYBIND_TYPE_CASTER_PYTYPE(capsule) PYBIND_TYPE_CASTER_PYTYPE(dict)
|
|
|
|
PYBIND_TYPE_CASTER_PYTYPE(float_) PYBIND_TYPE_CASTER_PYTYPE(int_)
|
|
|
|
PYBIND_TYPE_CASTER_PYTYPE(list) PYBIND_TYPE_CASTER_PYTYPE(slice)
|
|
|
|
PYBIND_TYPE_CASTER_PYTYPE(tuple) PYBIND_TYPE_CASTER_PYTYPE(function)
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
NAMESPACE_END(detail)
|
|
|
|
|
|
|
|
template <typename T> inline T cast(PyObject *object) {
|
2015-07-26 14:33:49 +00:00
|
|
|
detail::type_caster<typename detail::decay<T>::type> conv;
|
2015-07-05 18:05:44 +00:00
|
|
|
if (!conv.load(object, true))
|
|
|
|
throw cast_error("Unable to cast Python object to C++ type");
|
|
|
|
return conv;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> inline object cast(const T &value, return_value_policy policy = return_value_policy::automatic, PyObject *parent = nullptr) {
|
|
|
|
if (policy == return_value_policy::automatic)
|
|
|
|
policy = std::is_pointer<T>::value ? return_value_policy::take_ownership : return_value_policy::copy;
|
2015-07-26 14:33:49 +00:00
|
|
|
return object(detail::type_caster<typename detail::decay<T>::type>::cast(value, policy, parent), false);
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> inline T handle::cast() { return pybind::cast<T>(m_ptr); }
|
2015-10-01 14:46:03 +00:00
|
|
|
template <> inline void handle::cast() { return; }
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2015-07-30 13:29:00 +00:00
|
|
|
template <typename... Args> inline object handle::call(Args&&... args_) {
|
2015-07-05 18:05:44 +00:00
|
|
|
const size_t size = sizeof...(Args);
|
|
|
|
std::array<PyObject *, size> args{
|
2015-07-26 14:33:49 +00:00
|
|
|
{ detail::type_caster<typename detail::decay<Args>::type>::cast(
|
2015-07-05 18:05:44 +00:00
|
|
|
std::forward<Args>(args_), return_value_policy::automatic, nullptr)... }
|
|
|
|
};
|
|
|
|
bool fail = false;
|
|
|
|
for (auto result : args)
|
|
|
|
if (result == nullptr)
|
|
|
|
fail = true;
|
|
|
|
if (fail) {
|
|
|
|
for (auto result : args) {
|
|
|
|
Py_XDECREF(result);
|
|
|
|
}
|
|
|
|
throw cast_error("handle::call(): unable to convert input arguments to Python objects");
|
|
|
|
}
|
|
|
|
PyObject *tuple = PyTuple_New(size);
|
|
|
|
int counter = 0;
|
|
|
|
for (auto result : args)
|
|
|
|
PyTuple_SetItem(tuple, counter++, result);
|
|
|
|
PyObject *result = PyObject_CallObject(m_ptr, tuple);
|
|
|
|
Py_DECREF(tuple);
|
2015-10-01 14:46:03 +00:00
|
|
|
if (result == nullptr && PyErr_Occurred())
|
|
|
|
throw error_already_set();
|
2015-07-05 18:05:44 +00:00
|
|
|
return object(result, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
NAMESPACE_END(pybind)
|