嵌入Python解释器并使用SWIG

时间:2014-02-14 02:48:18

标签: python c++ swig

我在VisualStudio中有一个包含两个项目的解决方案。第一个项目是带有Pure Embedding的C ++控制台应用程序,如下所示:

#include <Python.h>

int main(int argc, char *argv[]){

PyObject *pName, *pModule, *pDict, *pFunc;
PyObject *pArgs, *pValue;
int i;

if (argc < 3) {
    fprintf(stderr,"Usage: call pythonfile funcname [args]\n");
    return 1;
}

Py_Initialize();
pName = PyUnicode_FromString(argv[1]);
/* Error checking of pName left out */

pModule = PyImport_Import(pName);
Py_DECREF(pName);

if (pModule != NULL) {
    pFunc = PyObject_GetAttrString(pModule, argv[2]);
    /* pFunc is a new reference */

    if (pFunc && PyCallable_Check(pFunc)) {
        pArgs = PyTuple_New(argc - 3);
        for (i = 0; i < argc - 3; ++i) {
            pValue = PyLong_FromLong(atoi(argv[i + 3]));
            if (!pValue) {
                Py_DECREF(pArgs);
                Py_DECREF(pModule);
                fprintf(stderr, "Cannot convert argument\n");
                return 1;
            }
            /* pValue reference stolen here: */
            PyTuple_SetItem(pArgs, i, pValue);
        }
        pValue = PyObject_CallObject(pFunc, pArgs);
        Py_DECREF(pArgs);
        if (pValue != NULL) {
            printf("Result of call: %ld\n", PyLong_AsLong(pValue));
            Py_DECREF(pValue);
        }
        else {
            Py_DECREF(pFunc);
            Py_DECREF(pModule);
            PyErr_Print();
            fprintf(stderr,"Call failed\n");
            return 1;
        }
    }
    else {
        if (PyErr_Occurred())
            PyErr_Print();
        fprintf(stderr, "Cannot find function \"%s\"\n", argv[2]);
    }
    Py_XDECREF(pFunc);
    Py_DECREF(pModule);
}
else {
    PyErr_Print();
    fprintf(stderr, "Failed to load \"%s\"\n", argv[1]);
    return 1;
}
Py_Finalize();
return 0;}

运行python文件时,任何工作都很完美。

第二个项目包含一些使用SWIG编译的C ++类。这个项目使用Python脚本完美地工作如下。

import example 
x = 42 
y = 105 
example.gcd = g (x, y) 

我的问题是控制台应用程序需要运行从SWIG导入类的python脚本。如果我使用python lib python32.lib将代码的某些部分作为“Py_DECREF(pArgs)”进行注释,但我只能运行一次python脚本,第二次尝试时,会发生内存的读取访问错误。如果我使用python32_d.lib,如果文件导入python SWIG模块的构造不起作用:

pName = PyUnicode_FromString(argv[1]);
pModule = PyImport_Import(pName);

注意:我需要在DEBUG模式下编译,而不是在RELEASE模式下编译。

0 个答案:

没有答案