我在头文件中定义了一些值作为符号常量:
#define NONE 0x00
#define SYM 0x11
#define SEG 0x43
...
这些值的名称代表某种类型的数据。
现在在我的模块的当前实现中,我将所有这些符号链接放入数组
static unsigned char TYPES[] = { NONE, SYM, SEG, ...}
并将数组中类型的位置添加为模块中的int
常量。
PyMODINIT_FUNC initShell(void)
{
PyObject *m;
m= Py_InitModule3("Sample", sample_Methods,"Sample Modules");
if (m == NULL)
return;
...
PyModule_AddIntConstant(m, "NONE", 0);
PyModule_AddIntConstant(m, "SYM", 1);
PyModule_AddIntConstant(m, "SEG", 2);
...
}
在调用函数时,我必须执行以下操作:
static PyObject *py_samplefunction(PyObject *self, PyObject *args, PyObject *kwargs) {
int type;
if (!PyArg_ParseTuple(args,kwargs,"i",&type)
return NULL;
int retc;
retc = sample_function(TYPES[type]);
return Py_BuildValue("i", retc);
}
我对这个黑客不太满意,我认为它很容易出错,所以我基本上都在寻找一种解决方案来消除数组并允许在函数中直接使用常量呼叫。有什么提示吗?
修改
使用PyModule_AddIntMacro(m, SEG);
并调用示例函数,解决它:
static PyObject *py_samplefunction(PyObject *self, PyObject *args, PyObject *kwargs) {
int type;
if (!PyArg_ParseTuple(args,kwargs,"i",&type)
return NULL;
int retc;
retc = sample_function((unsigned char) type);
return Py_BuildValue("i", retc);
}
答案 0 :(得分:2)
为什么不直接将常量添加到模块中?
PyModule_AddIntMacro(m, SYM);