1

我有闭源 C++ 库,它提供的头文件代码相当于:

class CSomething
{
  public:
      void getParams( unsigned char & u8OutParamOne, 
                      unsigned char & u8OutParamTwo ) const;
  private:
      unsigned char u8OutParamOne_,
      unsigned char u8OutParamTwo_,
};

我试图将它暴露给 Python,我的包装代码是这样的:

BOOST_PYTHON_MODULE(MySomething)
{
    class_<CSomething>("CSomething", init<>())
        .def("getParams", &CSomething::getParams,(args("one", "two")))

}

现在我正在尝试在 Python 中使用它,但失败了:

one, two = 0, 0
CSomething.getParams(one, two)

结果是:

ArgumentError: Python argument types in
    CSomething.getParams(CSomething, int, int)
did not match C++ signature:
    getParams(CSomething {lvalue}, unsigned char {lvalue} one, unsigned char {lvalue} two)

我需要在 Boost.Python 包装器代码或 Python 代码中进行哪些更改才能使其正常工作?如何添加一些 Boost.Python 魔法来自动PyInt转换unsigned char,反之亦然?

4

1 回答 1

1

Boost.Python正在抱怨缺少lvalue参数,这是 Python 中不存在的概念:

def f(x):
  x = 1

y = 2
f(y)
print(y) # Prints 2

该函数的x参数f不是类似 C++ 的引用。在 C++ 中,输出是不同的:

void f(int &x) {
  x = 1;
}

void main() {
  int y = 2;
  f(y);
  cout << y << endl; // Prints 1.
}

您在这里有几个选择:

a) 包装CSomething.getParams函数以返回新参数值的元组:

one, two = 0, 0
one, two = CSomething.getParams(one, two)
print(one, two)

b) 包装CSomething.getParams函数以接受类实例作为参数:

class GPParameter:
  def __init__(self, one, two):
    self.one = one
    self.two = two

p = GPParameter(0, 0)
CSomething.getParams(p)
print(p.one, p.two)
于 2012-10-16T16:22:42.367 回答