发布时间:2024-10-29 09:01
作者:虚坏叔叔
博客:https://xuhss.com
早餐店不会开到晚上,想吃的人早就来了!
在test.py
中定义一个字典,用于C++的读取
print('test.py')
conf = {
"width":1920,
"height":1080,
"title":"C++ call Python"
}
在C++中,可以根据名称获取字典,在获取名称之前,首先需要获取主模块。
主模块可以通过PyImport_GetModule
获取。
下面代码中的PyObject* m
就是获取到的主模块。这里返回的指针都是需要开发者手动清理的。关键代码如下:
PyObject*m = NULL; // 主模块
try
{
int re = 0;
// 执行Python脚本
re = PyRun_SimpleString("print('Hello world!')");
re = PyRun_SimpleString("print(\"__name__ = \", __name__)");
// 执行Python文件
char* filename = "test.py";
FILE * fp = fopen(filename, "r");
if (!fp)
{
throw exception("open file failed");
}
PyRun_AnyFile(fp, filename);
if (re != 0)
{
PyErr_Print();
throw exception("PyRun_AnyFile failed");
}
// 获取主模块
PyObject *key = PyUnicode_FromString("__main__");
m = PyImport_GetModule(key); // 不清理参数,需要手动清理
Py_XDECREF(key);
Py_XDECREF(m);
// 清理python
Py_Finalize();
}
catch (const std::exception&ex)
{
cout << ex.what() << endl;// 清理python
Py_XDECREF(m);
Py_Finalize();
}
获取到模块之后 根据模块和变量名称来获取对象。
PyObject* conf = PyObject_GetAttrString(m, “conf”);
获取到字典变量对象conf后,就可以操作conf获取到它的键值对。关键代码如下
PyObject *key = PyUnicode_FromString("width");
int width = PyLong_AsLong( PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("height");
int height = PyLong_AsLong(PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("title");
wchar_t title[1024] = { 0 };
int size = PyUnicode_AsWideChar(PyDict_GetItem(conf, key), title, 1023);
Py_XDECREF(key);
printf("width=%d height=%d \n", width, height);
wprintf(L"title=%s\n", title);
完整代码如下:
#include
#include
#include
using namespace std;
int main(int argc, char*argv[])
{
cout << "C++ call Python" << endl;
// 设置Python的Home路径
Py_SetPythonHome(L"./");
// Python初始化解释器
Py_Initialize();
PyObject *m = NULL; // 主模块
try
{
int re = 0;
// 执行Python脚本
re = PyRun_SimpleString("print('Hello world!')");
re = PyRun_SimpleString("print(\"__name__ = \", __name__)");
// 执行Python文件
char* filename = "test.py";
FILE * fp = fopen(filename, "r");
if (!fp)
{
throw exception("open file failed");
}
PyRun_AnyFile(fp, filename);
if (re != 0)
{
PyErr_Print();
throw exception("PyRun_AnyFile failed");
}
// 获取主模块
PyObject *key = PyUnicode_FromString("__main__");
m = PyImport_GetModule(key); // 不清理参数,需要手动清理
Py_XDECREF(key);
// 2-1 调用python的变量 python做配置文件
//con = {
// "width":1920,
// "heigth" : 1080,
// "title" : "C++ call Python"
//}
{
// 根据模块和名称获取对象(对象可以是变量、函数和类)
PyObject* conf = PyObject_GetAttrString(m, "conf");
if (!conf) {
throw exception("conf noe find!");
}
PyObject *key = PyUnicode_FromString("width");
int width = PyLong_AsLong(PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("height");
int height = PyLong_AsLong(PyDict_GetItem(conf, key));
Py_XDECREF(key);
key = PyUnicode_FromString("title");
wchar_t title[1024] = { 0 };
int size = PyUnicode_AsWideChar(PyDict_GetItem(conf, key), title, 1023);
Py_XDECREF(key);
printf("width=%d height=%d \n", width, height);
wprintf(L"title=%s\n", title);
Py_XDECREF(conf);
}
Py_XDECREF(m);
// 清理python
Py_Finalize();
}
catch (const std::exception&ex)
{
cout << ex.what() << endl;// 清理python
Py_XDECREF(m);
Py_Finalize();
}
getchar();
return 0;
}
F5运行可以看到成功获取了:
点赞
收藏
转发
一波哦,博主也支持为铁粉丝制作专属动态壁纸哦~