使用PyArg_ParseTuple解析用户定义的类型

时间:2013-10-09 20:32:14

标签: python python-2.7 python-c-api python-bindings

如何使用PyArg_ParseTuple解析用户定义的类型(或现有非标准库中的类型)?

2 个答案:

答案 0 :(得分:3)

而不是像Martijn建议的那样使用普通的O格式,我通常更喜欢使用O& format。它允许您传递一个函数,该函数将被调用以将任何PyObject*转换为任意C(双)指针。下面是一些示例用法,其中我将传递的值转换为指向我自己的对象类型的指针:

/** 
 * This method should return 0 if it does not work or 1 in case it does
 * PyArg_*() functions will handle the rest from there or let your program
 * continue in case things are fine.
 */
int MyConverter(PyObject* o, MyOwnType** mine) {
  //write the converter here.
}

然后,在您需要解析对象时:

/**
 * Simple example
 */
static PyObject* py_do_something(PyObject*, PyObject* args, PyObject* kwds) {

    /* Parses input arguments in a single shot */
    static char* kwlist[] = {"o", 0};

    MyOwnType* obj = 0; ///< if things go OK, obj will be there after the next call

    if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&", kwlist, &MyConverter, &obj))
      return 0; ///< we have failed, let Python check exceptions.

    /* if you get to this point, your converter worked, just use */
    /* your newly allocated object and free it, when done. */

}

这种方法的优点是您可以将MyConverter封装在C-API上,然后在其他功能中重复使用它来完成相同的工作。

答案 1 :(得分:1)

可以使用O format

解析自定义python类
  

O(对象)[PyObject *]
  在C对象指针中存储Python对象(不进行任何转换)。因此,C程序接收传递的实际对象。对象的引用计数不会增加。存储的指针不是NULL。