如何从std :: function构建boost :: python :: object?
答案 0 :(得分:5)
Use boost::python::make_function
,并提供签名,因为默认签名不会处理std::function
。
例如,我们要包装返回类型:
std::function<std::string(int, int)> get_string_function(const std::string& name)
{
return [=](int x, int y)
{
return name + "(x=" + std::to_string(x) + ", y=" + std::to_string(y) + ")";
};
}
我们可以使用它来定义包装器和def
:
boost::python::object get_string_function_pywrapper(const std::string& name)
{
auto func = get_string_function(name);
auto call_policies = boost::python::default_call_policies();
typedef boost::mpl::vector<std::string, int, int> func_sig;
return boost::python::make_function(func, call_policies, func_sig());
}
BOOST_PYTHON_MODULE(s)
{
boost::python::def("get_string_function", get_string_function_pywrapper);
}
Python方现在可以根据需要使用结果:
>>> import s
>>> s.get_string_function("Coord")
<Boost.Python.function object at 0x1cca450>
>>> _(1, 4)
'Coord(x=1, y=4)'