将类型转换为python

时间:2011-03-31 13:51:38

标签: c++ python boost types export

我正在使用boost python。我已经导出了一些在参数中需要类CL_DomElement的函数。现在,当我运行app时,我有:

TypeError: No to_python (by-value) converter found for C++ type: CL_DomElement

那么代码呢?我导出了在参数中使用函数指针的函数。这是代码:

typedef boost::function<boost::shared_ptr<Object> (CL_DomElement*, std::string& desc)> Parser;
void registerParser(std::string type, Parser p);

struct ParserProxy
{
    bp::object callable;

    ParserProxy(bp::object callable)
    : callable(callable)
    { }

    boost::shared_ptr<Object> operator()(CL_DomElement* elem, std::string& desc)
    {
        bp::object obj = callable(elem, desc);
        return bp::extract<boost::shared_ptr<Object> >(obj);
    }
};

void registerParserByProxy(std::string type, bp::object callable)
{
    registerParser(type, ParserProxy(callable));
}

// In some boost.python module
bp::def("RegisterParser", registerParserByProxy);

我以这种方式注册(在python中):

class TestObj(Object):
    @staticmethod
    def ParseTestObj(node, desc):
        print 'Parser is called!'
# Register parser
RegisterParser("testobj", TestObj.ParseTestObj)

它成功注册,我检查我的地图(注册解析器将传递的键→值添加到std :: map)并且一切都很好(添加了新值)。现在我想调用传递指针:

boost::shared_ptr<Object> TypesManager::parseObject(CL_DomElement* objectTag, const std::string &type, std::string &desc)
{
    return (getParser(type))(objectTag, desc);
}

getParser使用键type从std :: map返回函数指针。


因此,我理解传递类CL_DomElement时出错了。但我在我的模块中做了:

bp::class_<CL_DomElement>("CL_DomElement");

我认为这不应该阻止我所描述的错误。那么,怎么了?