mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-12 17:26:13 +00:00
51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
/*
|
|
pybind11/functional.h: std::function<> support
|
|
|
|
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "pybind11.h"
|
|
#include <functional>
|
|
|
|
NAMESPACE_BEGIN(pybind11)
|
|
NAMESPACE_BEGIN(detail)
|
|
|
|
template <typename Return, typename... Args> struct type_caster<std::function<Return(Args...)>> {
|
|
typedef std::function<Return(Args...)> type;
|
|
public:
|
|
|
|
bool load(PyObject *src_, bool) {
|
|
src_ = detail::get_function(src_);
|
|
if (!src_ || !(PyFunction_Check(src_) || PyCFunction_Check(src_)))
|
|
return false;
|
|
object src(src_, true);
|
|
value = [src](Args... args) -> Return {
|
|
object retval(pybind11::handle(src).call(std::move(args)...));
|
|
/* Visual studio 2015 parser issue: need parentheses around this expression */
|
|
return (retval.template cast<Return>());
|
|
};
|
|
return true;
|
|
}
|
|
|
|
template <typename Func>
|
|
static PyObject *cast(Func &&f_, return_value_policy policy, PyObject *) {
|
|
cpp_function f(std::forward<Func>(f_), policy);
|
|
f.inc_ref();
|
|
return f.ptr();
|
|
}
|
|
|
|
|
|
PYBIND11_TYPE_CASTER(type, detail::descr("function<") +
|
|
type_caster<std::tuple<Args...>>::name() + detail::descr(" -> ") +
|
|
type_caster<typename decay<Return>::type>::name() +
|
|
detail::descr(">"));
|
|
};
|
|
|
|
NAMESPACE_END(detail)
|
|
NAMESPACE_END(pybind11)
|