Boost Python-用参数包装构造函数

时间:2019-06-14 17:33:02

标签: python c++ wrapper boost-python

我已经设计了一个cpp共享库,现在我想制作一个Python包装器以使用它。一切正常,直到需要更改cpp库构造函数并在其中添加一个参数为止。

我想知道如何在包装器中反映此参数,因为下面的代码不再起作用。我已经对代码进行了一些更改,现在就像波纹管一样。我几乎可以确定问题出在这行

py::class_<Wrapper>("Wrapper", py::init<>())

但是我不知道如何在这里添加参数。我尝试过

py::class_<Wrapper>("Wrapper", py::init<>(const std::string &param))

还有

py::class_<Wrapper>("Wrapper", py::init<const std::string &param>())

但都失败了。

编辑,经过一番评论,我决定使用(无参考)

py::class_<Wrapper>("Wrapper", py::init<const std::string param>())

但是我仍然有相同的错误消息。

wrapper.hpp

#include "mycpplib.hpp"

#include <boost/python.hpp>
#include <boost/python/numpy.hpp>
#include <boost/python/dict.hpp>

namespace py = boost::python;
namespace np = boost::python::numpy;

class Wrapper 
{
    public:

        // change: inclusion of the new parameter
        Wrapper(const std::string &param);

        py::dict function1();
};

wrapper.cpp

#include "wrapper.hpp"

namespace py = boost::python;
namespace np = boost::python::numpy;

// change: inclusion of the new parameter
Wrapper::Wrapper(
    const std::string &param) {
    //do something
}

py::dict
Wrapper::function1() {
    //do something
}

BOOST_PYTHON_MODULE(libwrapper)
{
    Py_Initialize();
    np::initialize();

    py::class_<Wrapper>("Wrapper", py::init<const std::string param1>())
        .def("_function1", &Wrapper::function1)
    ;
}

wrapper.py

import libwrapper

class Wrapper(libwrapper.Wrapper):

    # change: inclusion of the new parameter
    def __init__(self, param):
        libwrapper.Wrapper.__init__(self, param)

    def function1(self):
        return self._function1()

错误是:

/path/wrapper.cpp: In function 'void init_module_libwrapper()':
/path/wrapper.cpp:24:69: error: template argument 1 is invalid
py::class_<Wrapper>("Wrapper", py::init<const std::string param1>())
                                                                 ^

1 个答案:

答案 0 :(得分:0)

修改boost文档(https://www.boost.org/doc/libs/1_68_0/libs/python/doc/html/tutorial/tutorial/exposing.html),我发现这是

py::class_<Wrapper>("Wrapper", py::init<const std::string param1>())

应该这样写:

py::class_<Wrapper>("Wrapper", py::init<const std::string>())

,无参数名称。只是类型