我是C的新手 - > Python交互,我目前在C中编写一个小应用程序,它将读取一个文件(使用Python解析它),然后使用解析的信息执行小型Python片段。目前我感觉非常像是在重新发明轮子,例如这个功能:
typedef gpointer (list_func)(PyObject *obj);
GList *pylist_to_glist(list_func func, PyObject *pylist)
{
GList *result = NULL;
if (func == NULL)
{
fprintf(stderr, "No function definied for coverting PyObject.\n");
}
else if (PyList_Check(pylist))
{
PyObject *pIter = PyObject_GetIter(pylist);
PyObject *pItem;
while ((pItem = PyIter_Next(pIter)))
{
gpointer obj = func(pItem);
if (obj != NULL) result = g_list_append(result, obj);
else fprintf(stderr, "Could not convert PyObject to C object.\n");
Py_DECREF(pItem);
}
Py_DECREF(pIter);
}
return result;
}
我真的希望以更容易/更智能的方式做到这一点,不容易出现内存泄漏和错误。
赞赏所有意见和建议。
答案 0 :(得分:1)
我推荐PySequence_Fast和朋友:
else
{
PyObject *pSeqfast = PySequence_Fast(pylist, "must be a sequence");
Py_ssize_t n = PySequence_Fast_GET_SIZE(pSeqFast);
for(Py_ssize_t i = 0; i < n ; ++i)
{
gpointer obj = func(PySequence_Fast_GET_ITEM(pSeqfast, i));
if (obj != NULL) result = g_list_append(result, obj);
else fprintf(stderr, "Could not convert PyObject to C object.\n");
}
Py_DECREF(pSeqfast);
}