在下面这个 hello world C 程序中,我既扩展又嵌入了 Python。
垃圾邮件.c:
#include <Python.h>
static PyObject *
spam_echo(PyObject *self, PyObject *args) {
const char *command;
int sts;
if (!PyArg_ParseTuple(args, "s", &command))
return NULL;
sts = printf("%s\n", command);
return Py_BuildValue("i", sts);
}
static PyMethodDef SpamMethods[] = {
{"echo", spam_echo, METH_VARARGS, "Prints passed argument"},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC
initspam(void) {
(void) Py_InitModule("spam", SpamMethods);
}
int main(int argc, char *argv[]) {
PyObject *args;
PyObject *arg;
PyObject *result;
PyObject *moduleName;
PyObject *module;
PyObject *func;
Py_SetProgramName(argv[0]);
Py_Initialize();
initspam();
PyRun_SimpleFile(fopen("foo.py", "r"), "foo.py");
moduleName = PyString_FromString("__main__");
module = PyImport_Import(moduleName);
Py_DECREF(moduleName);
if (!module) {
return 1;
}
func = PyObject_GetAttrString(module, "foo");
Py_DECREF(module);
if (!func || !PyCallable_Check(func)) {
return 1;
}
args = PyTuple_New(1);
arg = Py_BuildValue("s", "hello world");
PyTuple_SetItem(args, 0, arg);
result = PyObject_CallObject(func, args);
Py_DECREF(arg);
Py_DECREF(args);
Py_DECREF(func);
printf("== before\n");
Py_Finalize();
printf("== after\n");
}
这是调用的 Python 程序:
foo.py:
#!/usr/bin/python
import spam
def foo(cmd):
spam.echo(cmd)
我编译
gcc spam.c -I/usr/include/python2.5/ -lpython2.5
使用 GCC 4.2.4-1ubuntu4,我在 Ubuntu Hardy 上使用 python2.5-dev 包。
基本上,我在 Py_Finalize 有一个段错误,如输出所示:
hello world
== before
Segmentation fault