我已经通过boost python创建了一个python模块。
它是一个日志记录模块,日志消费者看起来就是这样。基本上有一个抽象接口,文件记录器是从它派生的。
class DIAGNOSTICS_API ISink : public boost::enable_shared_from_this<ISink>
{
public:
virtual ~ISink();
virtual void AddEntry(Entry& logEntry) = 0;
virtual bool ShallLog(const std::string& domain, Severity severity) = 0;
};
class DIAGNOSTICS_API DomainRulesBasedSink : public ISink
{
.........
}
class DIAGNOSTICS_API FileSink : public DomainRulesBasedSink
{
.........
}
此代码打包到python模块中。
boost::python::class_<Log::ISinkRealizer, boost::shared_ptr<Log::ISinkRealizer>, boost::noncopyable>("ISink", boost::python::no_init)
.def("AddEntry", boost::python::pure_virtual(&Log::ISinkRealizer::AddEntry))
.def("ShallLog", boost::python::pure_virtual(&Log::ISinkRealizer::ShallLog));
boost::python::class_<Log::FileSink, boost::shared_ptr<Log::FileSink>, boost::python::bases<Log::ISink>, boost::noncopyable>
("FileSink", boost::python::init<const std::string&>())
.def("AddDomain", &Log::FileSink::AddDomain)
.def("Create", &Log::FileSink::Create)
.staticmethod("Create");
boost::python::class_<Log::Source, boost::shared_ptr<Log::Source>>("Source", boost::python::init<const std::string&>())
.def(boost::python::init<const std::string&, boost::shared_ptr<Log::ISink>>())
.def("SetSink", &Log::Source::SetSink);
当我在python中使用实例化FileSink时,我可以将它放入同一模块中的类的构造函数中。
但是当我尝试将同一个实例插入另一个模块中的另一个类时,它就不起作用了。
Python argument types in
SensorController.__init__(SensorController, FileSink)
did not match C++ signature:
__init__(struct _object * __ptr64, class boost::shared_ptr<class Log::ISink>)
我很确定python是通过shared_ptr创建FileSink的,但不知何故,当我想将它提供给另一个模块(SensorController类)中的构造函数时,它会看到“FileSink”而不是“boost :: shared_ptr”
我的shared_ptr对象对其他模块可见,不仅对实例化该类的模块,还应使用什么魔法。
答案 0 :(得分:0)
这个问题就像link中解释的那样。当Boost Python用作静态库时,类型转换注册表(如何在python对象和C ++对象之间进行转换)与boost python链接的次数重复多次。但是,当它作为动态库链接时,它只有一个类型转换注册表,所有python模块都可以看到彼此的类型。