我正在尝试编写一个python扩展模块,其中一些函数是curry,但我不太清楚如何去做。主要的困难是我不确定如何创建和返回PyFunction对象以及如何为其参数传递解析规则。有没有一种相当有效的方法来做到这一点,还是这种疯狂?
从python方面,所需的语义将是:
# given a function f(x, y)
f(a, b) -> result
f(a) -> f'
f'(b) -> result
答案 0 :(得分:1)
让我们先看一下可能的Python实现。
def f(x, y=None):
if y is None:
return lambda y: f(x, y)
return 'result'
这里唯一需要做的就是以某种方式创建lambda
函数。这里我们有一个问题,不知道调用C函数本身的PyCFunction。所以我们必须编写包装器并创建一个新的PyCFunction
对象。
static PyObject* curried (PyObject *old_args, PyObject *new_args);
static PyMethodDef curried_def = {"curried", curried, METH_VARARGS, "curried"};
static PyObject* f (PyObject *self, PyObject *args) {
PyObject *x = NULL, *y = NULL;
if(!PyArg_ParseTuple(args, "O|O", &x, &y))
return NULL;
// validate x
if (y == NULL)
return Py_INCREF(args), PyCFunction_New(&curried_def, args);
// validate y
// do something to obtain the result
return result;
}
static PyObject* curried (PyObject *old_args, PyObject *new_args) {
Py_ssize_t old_args_count = PyTuple_Size(old_args);
Py_ssize_t new_args_count = PyTuple_Size(new_args);
PyObject *all_args = PyTuple_New(old_args_count + new_args_count);
Py_ssize_t i;
PyObject *o;
for (i = 0; i < old_args_count; i++) {
o = PyTuple_GET_ITEM(old_args, i);
Py_INCREF(o);
PyTuple_SET_ITEM(all_args, i, o);
}
for (i = 0; i < new_args_count; i++) {
o = PyTuple_GET_ITEM(new_args, i);
Py_INCREF(o);
PyTuple_SET_ITEM(all_args, old_args_count + i, o);
}
return f(NULL, all_args);
}
这产生了
所需的语义f(a, b) -> result
f(a) -> <built-in method curried of tuple object at 0x123456>
f(a)(b) -> result
这里我们滥用了PyCFunction
类型,传递给PyCFunction_New(&curried_def, args)
的第二个参数应该是这个函数绑定的self
对象,因此我们得到一个< em>内置方法curry of tuple object 。如果您需要原始函数的self
参数或使用关键字参数,则必须稍微扩展此hack并构建自定义对象而不是args
。此外,还可以为curry函数创建类似PyCFunction
的类型。据我所知,还没有类似的东西。