そこで、Python への埋め込み呼び出しを使用していくつかの計算を実行する C++ アプリケーションを作成しています。指定されたディレクトリで任意のスクリプトを実行し、C++ アプリケーションと Python インタープリターの間で 1 つの値を渡したり返したりするためのコードがあります。
ただし、複数の値をパラメーターとして Python に渡そうとすると問題が発生します。以下は、Python スクリプトを実行するための私のコードです。
double Script::run_script(string moduleName, string funcName, double *params,
int numberOfParams)
{
PyObject *pName, *pModule, *pDict, *pFunc;
PyObject *pArgs, *pValue;
int i;
// Set aside memory for the path to my scripts to add to sys.path
char dir[255];
memset(dir, 0, sizeof(dir));
/* ********************************************* */
sprintf(dir, "/home/bmalone/workspace/NumericalAnalysis/Testing"); //Put path into dir
/* ********************************************* */
Py_Initialize();
PyObject *dictModule = PyImport_GetModuleDict();
PyObject *sys = PyDict_GetItemString(dictModule, "sys");
// Sys NULL?
if (sys == NULL)
{
cerr << "Cannot find sys in dict!" << endl;
return -1;
}
dictModule = PyModule_GetDict(sys);
PyObject *path = PyDict_GetItemString(dictModule, "path");
PyObject *pPath = PyUnicode_FromString(dir);
PyList_Append(path, pPath);
if (pPath);
//cerr << "PATH > " << PyString_AsString(PyObject_Repr(path)) << endl;
else
cerr << "pPath IS NULL" << endl;
/* Import the module that contains the function/script */
pModule = PyImport_ImportModule(moduleName.c_str());
if (pModule);
//cerr << "pModule ~ " << PyString_AsString(PyObject_Repr(pModule)) << endl;
else
cerr << "pModule is NULL!!" << endl;
//cerr << "Getting dict for argv[1]..." << endl;
dictModule = PyModule_GetDict(pModule);
if (dictModule);
//cerr << "DictModule ~ " << PyString_AsString(PyObject_Repr(dictModule)) << endl;
else
cerr << "DictModule is NULL!!" << endl;
// CALL THE FUNCTION!
/*
* argv[1] is the MODULE name, but argv[2] SHOULD BE the function name!
*/
/* Get a PyObject referencing the function from the module 'pModule' */
//pFunc = PyObject_GetAttrString(pModule, funcName.c_str());
pFunc = PyDict_GetItemString(dictModule, funcName.c_str());
if (pFunc)
{
PyObject *objRep = PyObject_Repr(pFunc);
const char* str = PyString_AsString(objRep);
cerr << "Func is a real boy, too! - " << str << endl;
}
else
cerr << "pFunc is NULL!" << endl;
/* Setup PyArgs */
pArgs = PyTuple_New(numberOfParams);
// Add the data as doubles
cerr << "<parameters> ~ params size is " << numberOfParams << endl;
for (int i = 0; i < numberOfParams; i++)
{
if (params)
{
/* **************************** */
//pValue = PyDouble_AsDouble(params[i]);
pValue = PyFloat_FromDouble(params[i]);
/* **************************** */
cerr << " " << params[i] << endl;
PyObject* objRep = PyObject_Repr(pValue);
const char* strRep = PyString_AsString(objRep);
cerr << ">> pValue = " << strRep << endl;
PyTuple_SetItem(pArgs, i, pValue);
}
else
break;
}
cerr << "<Module> - " << moduleName << ", is null: " << (pModule == NULL) << endl;
cerr << "<Function> - " << funcName << ", is null: " << (pFunc == NULL) << endl;
// Get the retun value
cerr << "<Calling Function>" << endl;
//pValue = PyObject_CallFunction(pFunc, "f", 15.0); // **WORKS**
pValue = PyObject_CallObject(pFunc, pArgs); // **WORKS**
//pValue = PyObject_CallObject(pFunc, NULL);
//pValue = PyEval_CallObject(pFunc, NULL);
//pValue = PyObject_CallFunction(pFunc, NULL);
//pValue = PyObject_CallObject(pFunc, args);
//pValue = PyEval_CallObject(pFunc, args);
//cerr << "ANSWER ---> " << PyFloat_AsDouble(pValue) << endl;
return PyFloat_AsDouble(pValue);
Py_Finalize();
}
編集: 元の投稿で、忘れていた変更を加えましたが、スクリプトの実行を妨げるバグでした。上記のコードは、pArgs に --1-- 要素がある場合にのみ機能することを除いて、任意のスクリプトを正しく実行します。印刷するためだけに同じスクリプトに複数の要素を渡そうとすると、スクリプトは実行されません。しかし、それがたった1なら、それは完全に機能します。
スクリプトに複数のパラメーターを渡すために何が間違っているのか理解できないようです。これは、C++ から実行しようとしているスクリプトです (1 つのパラメーターで機能するスクリプト):
#!/usr/bin/python
'''
Created on Jul 12, 2012
@author: bmalone
'''
import sys
def doubleTwo(x, y):
print str(sys.argv)
print "Can haz doubling?\n"
if __name__ == '__main__':
doubleTwo()
どんな助けでも大歓迎です!