Python&C++相互混合调用编程全面实战-15C++读取python脚本中的dictionary字典变量以及它的键值对

发布时间:2024-10-29 09:01

作者:虚坏叔叔
博客:https://xuhss.com

早餐店不会开到晚上,想吃的人早就来了!

C++读取python脚本中的dictionary字典变量以及它的键值对

Python&C++相互混合调用编程全面实战-15C++读取python脚本中的dictionary字典变量以及它的键值对_第1张图片

一、在python中定义字典变量

test.py中定义一个字典,用于C++的读取

print('test.py')
conf = {
    "width":1920,
    "height":1080,
    "title":"C++ call Python"
}

二、C++获取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运行可以看到成功获取了:

Python&C++相互混合调用编程全面实战-15C++读取python脚本中的dictionary字典变量以及它的键值对_第2张图片

四、总结

  • 本文使用C++读取python脚本中的dictionary字典变量以及它的键值对。
  • 如果觉得文章对你有用处,记得 点赞 收藏 转发 一波哦,博主也支持为铁粉丝制作专属动态壁纸哦~

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号