mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-11 17:00:34 +00:00
Improved STL support, support for std::set
This commit is contained in:
@@ -571,6 +571,7 @@ PYBIND11_TYPE_CASTER_PYTYPE(capsule) PYBIND11_TYPE_CASTER_PYTYPE(dict)
|
||||
PYBIND11_TYPE_CASTER_PYTYPE(float_) PYBIND11_TYPE_CASTER_PYTYPE(int_)
|
||||
PYBIND11_TYPE_CASTER_PYTYPE(list) PYBIND11_TYPE_CASTER_PYTYPE(slice)
|
||||
PYBIND11_TYPE_CASTER_PYTYPE(tuple) PYBIND11_TYPE_CASTER_PYTYPE(function)
|
||||
PYBIND11_TYPE_CASTER_PYTYPE(set) PYBIND11_TYPE_CASTER_PYTYPE(iterator)
|
||||
|
||||
NAMESPACE_END(detail)
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ class object;
|
||||
class str;
|
||||
class object;
|
||||
class dict;
|
||||
class iterator;
|
||||
namespace detail { class accessor; }
|
||||
|
||||
/// Holds a reference to a Python object (no reference counting)
|
||||
@@ -33,6 +34,8 @@ public:
|
||||
void dec_ref() const { Py_XDECREF(m_ptr); }
|
||||
int ref_count() const { return (int) Py_REFCNT(m_ptr); }
|
||||
handle get_type() { return (PyObject *) Py_TYPE(m_ptr); }
|
||||
inline iterator begin();
|
||||
inline iterator end();
|
||||
inline detail::accessor operator[](handle key);
|
||||
inline detail::accessor operator[](const char *key);
|
||||
inline detail::accessor attr(handle key);
|
||||
@@ -73,6 +76,23 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
class iterator : public object {
|
||||
public:
|
||||
iterator(PyObject *obj, bool borrowed = false) : object(obj, borrowed) { ++*this; }
|
||||
iterator& operator++() {
|
||||
if (ptr())
|
||||
value = object(PyIter_Next(ptr()), false);
|
||||
return *this;
|
||||
}
|
||||
bool operator==(const iterator &it) const { return *it == **this; }
|
||||
bool operator!=(const iterator &it) const { return *it != **this; }
|
||||
object operator*() { return value; }
|
||||
const object &operator*() const { return value; }
|
||||
bool check() const { return PyIter_Check(ptr()); }
|
||||
private:
|
||||
object value;
|
||||
};
|
||||
|
||||
NAMESPACE_BEGIN(detail)
|
||||
class accessor {
|
||||
public:
|
||||
@@ -159,18 +179,6 @@ private:
|
||||
size_t index;
|
||||
};
|
||||
|
||||
class list_iterator {
|
||||
public:
|
||||
list_iterator(PyObject *list, ssize_t pos) : list(list), pos(pos) { }
|
||||
list_iterator& operator++() { ++pos; return *this; }
|
||||
object operator*() { return object(PyList_GetItem(list, pos), true); }
|
||||
bool operator==(const list_iterator &it) const { return it.pos == pos; }
|
||||
bool operator!=(const list_iterator &it) const { return it.pos != pos; }
|
||||
private:
|
||||
PyObject *list;
|
||||
ssize_t pos;
|
||||
};
|
||||
|
||||
struct dict_iterator {
|
||||
public:
|
||||
dict_iterator(PyObject *dict = nullptr, ssize_t pos = -1) : dict(dict), pos(pos) { }
|
||||
@@ -194,6 +202,8 @@ inline detail::accessor handle::operator[](handle key) { return detail::accessor
|
||||
inline detail::accessor handle::operator[](const char *key) { return detail::accessor(ptr(), key, false); }
|
||||
inline detail::accessor handle::attr(handle key) { return detail::accessor(ptr(), key.ptr(), true); }
|
||||
inline detail::accessor handle::attr(const char *key) { return detail::accessor(ptr(), key, true); }
|
||||
inline iterator handle::begin() { return iterator(PyObject_GetIter(ptr())); }
|
||||
inline iterator handle::end() { return iterator(nullptr); }
|
||||
|
||||
#define PYBIND11_OBJECT_CVT(Name, Parent, CheckFun, CvtStmt) \
|
||||
Name(const handle &h, bool borrowed) : Parent(h, borrowed) { CvtStmt; } \
|
||||
@@ -310,6 +320,7 @@ public:
|
||||
size_t size() const { return (size_t) PyDict_Size(m_ptr); }
|
||||
detail::dict_iterator begin() { return (++detail::dict_iterator(ptr(), 0)); }
|
||||
detail::dict_iterator end() { return detail::dict_iterator(); }
|
||||
void clear() { PyDict_Clear(ptr()); }
|
||||
};
|
||||
|
||||
class list : public object {
|
||||
@@ -317,12 +328,19 @@ public:
|
||||
PYBIND11_OBJECT(list, object, PyList_Check)
|
||||
list(size_t size = 0) : object(PyList_New((ssize_t) size), false) { }
|
||||
size_t size() const { return (size_t) PyList_Size(m_ptr); }
|
||||
detail::list_iterator begin() { return detail::list_iterator(ptr(), 0); }
|
||||
detail::list_iterator end() { return detail::list_iterator(ptr(), (ssize_t) size()); }
|
||||
detail::list_accessor operator[](size_t index) { return detail::list_accessor(ptr(), index); }
|
||||
void append(const object &object) { PyList_Append(m_ptr, (PyObject *) object.ptr()); }
|
||||
};
|
||||
|
||||
class set : public object {
|
||||
public:
|
||||
PYBIND11_OBJECT(set, object, PySet_Check)
|
||||
set() : object(PySet_New(nullptr), false) { }
|
||||
size_t size() const { return (size_t) PySet_Size(m_ptr); }
|
||||
void insert(const object &object) { PySet_Add(m_ptr, (PyObject *) object.ptr()); }
|
||||
void clear() { PySet_Clear(ptr()); }
|
||||
};
|
||||
|
||||
class function : public object {
|
||||
public:
|
||||
PYBIND11_OBJECT_DEFAULT(function, object, PyFunction_Check)
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
#include "pybind11.h"
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <iostream>
|
||||
|
||||
|
||||
@@ -22,8 +23,8 @@
|
||||
NAMESPACE_BEGIN(pybind11)
|
||||
NAMESPACE_BEGIN(detail)
|
||||
|
||||
template <typename Value> struct type_caster<std::vector<Value>> {
|
||||
typedef std::vector<Value> type;
|
||||
template <typename Value, typename Alloc> struct type_caster<std::vector<Value, Alloc>> {
|
||||
typedef std::vector<Value, Alloc> type;
|
||||
typedef type_caster<Value> value_conv;
|
||||
public:
|
||||
bool load(PyObject *src, bool convert) {
|
||||
@@ -32,8 +33,8 @@ public:
|
||||
size_t size = (size_t) PyList_GET_SIZE(src);
|
||||
value.reserve(size);
|
||||
value.clear();
|
||||
value_conv conv;
|
||||
for (size_t i=0; i<size; ++i) {
|
||||
value_conv conv;
|
||||
if (!conv.load(PyList_GetItem(src, (ssize_t) i), convert))
|
||||
return false;
|
||||
value.push_back((Value) conv);
|
||||
@@ -57,9 +58,46 @@ public:
|
||||
PYBIND11_TYPE_CASTER(type, detail::descr("list<") + value_conv::name() + detail::descr(">"));
|
||||
};
|
||||
|
||||
template <typename Key, typename Value> struct type_caster<std::map<Key, Value>> {
|
||||
template <typename Value, typename Compare, typename Alloc> struct type_caster<std::set<Value, Compare, Alloc>> {
|
||||
typedef std::set<Value, Compare, Alloc> type;
|
||||
typedef type_caster<Value> value_conv;
|
||||
public:
|
||||
typedef std::map<Key, Value> type;
|
||||
bool load(PyObject *src, bool convert) {
|
||||
pybind11::set s(src, true);
|
||||
if (!s.check())
|
||||
return false;
|
||||
value.clear();
|
||||
value_conv conv;
|
||||
for (const object &o: s) {
|
||||
if (!conv.load((PyObject *) o.ptr(), convert))
|
||||
return false;
|
||||
value.insert((Value) conv);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static PyObject *cast(const type &src, return_value_policy policy, PyObject *parent) {
|
||||
PyObject *set = PySet_New(nullptr);
|
||||
for (auto const &value: src) {
|
||||
PyObject *value_ = value_conv::cast(value, policy, parent);
|
||||
if (!value_) {
|
||||
Py_DECREF(set);
|
||||
return nullptr;
|
||||
}
|
||||
if (PySet_Add(set, value) != 0) {
|
||||
Py_DECREF(value);
|
||||
Py_DECREF(set);
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
return set;
|
||||
}
|
||||
PYBIND11_TYPE_CASTER(type, detail::descr("set<") + value_conv::name() + detail::descr(">"));
|
||||
};
|
||||
|
||||
template <typename Key, typename Value, typename Compare, typename Alloc> struct type_caster<std::map<Key, Value, Compare, Alloc>> {
|
||||
public:
|
||||
typedef std::map<Key, Value, Compare, Alloc> type;
|
||||
typedef type_caster<Key> key_conv;
|
||||
typedef type_caster<Value> value_conv;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user