Ошибка при переносе абстрактного класса C ++ в pybind11 - PullRequest
0 голосов
/ 12 июля 2020

Я пытаюсь сделать простой пример обертывания абстрактного класса C ++ с помощью pybind. Код:

#include <pybind11/pybind11.h>
#include <ostream>
#include <iostream>
namespace py = pybind11;
using namespace std;

class Base
{
public:
    virtual void test() = 0;

};
class Derived: public Base
{
public:
    void test() {cout << "Test";}
};


PYBIND11_MODULE(example,m) {
    py::class_<Base, Derived>(m, "Base")
        .def(py::init<>())
        .def("test", &Derived::test);
}

И пока я запускаю следующую команду

c++ -O3 -Wall -shared -std=c++11 -fPIC `python3 -m pybind11 --includes` abstract_test.cpp -o example`python3-config --extension-suffix`\n

, я получаю сообщение об ошибке:

In file included from abstrakt_test.cpp:1:
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h: In instantiation of ‘Return (Derived::* pybind11::method_adaptor(Return (Class::*)(Args ...)))(Args ...) [with Derived = Base; Return = void; Class = Derived; Args = {}]’:
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1118:45:   required from ‘pybind11::class_<type_, options>& pybind11::class_<type_, options>::def(const char*, Func&&, const Extra& ...) [with Func = void (Derived::*)(); Extra = {}; type_ = Base; options = {Derived}]’
abstrakt_test.cpp:23:36:   required from here
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1032:19: error: static assertion failed: Cannot bind an inaccessible base class method; use a lambda definition instead
     static_assert(detail::is_accessible_base_of<Class, Derived>::value,
                   ^~~~~~
/home/anaconda3/envs/pybind/lib/python3.8/site-packages/pybind11/include/pybind11/pybind11.h:1034:12: error: cannot convert ‘void (Derived::*)()’ to ‘void (Base::*)()’ in return
     return pmf;
            ^~~

1 Ответ

0 голосов
/ 16 июля 2020

Также необходимо "обернуть" Base. В противном случае вы получите следующее исключение во время импорта:

ImportError: generic_type: type "Derived" referenced unknown base type "Base"

Кроме того, порядок упаковки Derived неверен:

py::class_<Derived, Base>(m, "Derived")

Полный пример:

PYBIND11_MODULE(example,m) {
    py::class_<Base>(m, "Base");

    py::class_<Derived, Base>(m, "Derived")
            .def(py::init<>())
            .def("test", &Derived::test);
}
...