Нет возврата при встраивании Python в C ++

0

Я вернулся к программированию в проекте, и я не получаю никакого возврата от скрипта python в течение долгих часов. Смешно, пару месяцев назад мне удалось получить эту работу, теперь я не знаю, что неправильно

Где код C++:

int CPythonPlugIn::py_embed(int argc, char *argv[]){

ofstream textfile3;
textfile3.open("FP_python_embed.txt");
PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue;

if(argc<3){
    printf("Usage: exe_name python_source function_name\n");
    return 1;
}

//To inform the interpreter about paths to Python run-time libraries
Py_SetProgramName(argv[0]);

// Initialize the Python Interpreter
Py_Initialize();
if( !Py_IsInitialized() ){
    cout<<"Can't initialize"<<endl;
    return -1;
}

// Build the name object
pName = PyString_FromString(argv[1]);
if( !pName ){
    cout<<"Can't build the object "<<endl;
    return -1;
}

// Load the module object
pModule = PyImport_Import(pName);
if( !pModule ){
    cout<<"Can't import the module "<<endl;
    return -1;
}

// pDict is a borrowed reference 
pDict = PyModule_GetDict(pModule);
if( !pDict ){
    cout<<"Can't get the dict"<<endl;
    return -1;
}


// pFunc is also a borrowed reference 
pFunc = PyDict_GetItemString(pDict, argv[2]);
if( !pFunc || !PyCallable_Check(pFunc) ){
    cout<<"can't get the function"<<endl;
    return -1;
}

if (PyCallable_Check(pFunc)) 
{
    // Prepare the argument list for the call
    if( argc > 3 )
    {
            pArgs = PyTuple_New(argc - 3);
            for (int i = 0; i < argc - 3; i++)
            {
            pValue = PyInt_FromLong(atoi(argv[i + 3]));
                    if (!pValue)
                    {
                        PyErr_Print();
                        return 1;
                    }
                    PyTuple_SetItem(pArgs, i, pValue);    
            }

        pValue = PyObject_CallObject(pFunc, pArgs);
        textfile3<<PyInt_AsLong(pValue)<<endl<<" worked1";


        if (pArgs != NULL)
        {
            Py_DECREF(pArgs);
        }
    } 
    else
    {
        pValue = PyObject_CallObject(pFunc, NULL);
    }

    if (pValue != NULL) 
    {
        printf("Return of call : %d\n", PyInt_AsLong(pValue));
        textfile3<<PyInt_AsLong(pValue)<<endl<<" worked2";
        Py_DECREF(pValue);
    }
    else 
    {
        PyErr_Print();
    }
textfile3.close();
}

// Clean up
Py_DECREF(pModule);
Py_DECREF(pName);

// Finish the Python Interpreter
Py_Finalize();

return 0;

};

и вот как я называю эту функцию:

char *arg[4]={"PythonPlugIn2","bridge","test_callsign","MAH545"};
py_embed(4,arg);

простой скрипт python:

def test_callsign(b):
fp_txt=open('allomate.txt','w+')
fp_txt.write('WHAT')
fp_txt.write(b)
if b=='MAH545':
    fp_txt.write('MAHHH')
    fp_txt.close()
    return 1
elif b=='MAH544':
    fp_txt.close()
    return 2
elif b=='AFR545':
    fp_txt.close()
    return 3
else:
    fp_txt.write('MAHHH22')
    print 'No such airplane'
    fp_txt.close()
    return 10

Создается файл allomate.txt и на нем написано только "ЧТО". Файл FP_python_embed.txt также создается и имеет "-1, работал1", поэтому проблема должна быть на pValue, которая по какой-то причине дает NULL

Заранее благодарю за помощь

Теги:
embed

1 ответ

0
Лучший ответ

Наконец я нашел решение. Я разбирал pValue не как строку, а как int.

Итак, где я:

pValue = PyInt_FromLong(atoi(argv[i + 3]));

это действительно должно быть:

pValue = PyString_FromString(argv[i+3]);

Ещё вопросы

Сообщество Overcoder
Наверх
Меню