File: pyCAPIKernel.C

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (243 lines) | stat: -rw-r--r-- 5,608 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
#include <BALL/PYTHON/pyCAPIKernel.h>

#include <BALL/COMMON/logStream.h>
#include <BALL/FORMAT/lineBasedFile.h>

using std::map;
using std::string;
using std::stringstream;

namespace BALL
{
	PyCAPIKernel::PyCAPIKernel() :
		PyKernel{}
	{
		Py_Initialize();

		// get a borrowed reference to the main module
		main_module_ = PyImport_AddModule("__main__");
		if (!main_module_)
		{
			Log.error() << "[PyInterpreter] Python intialization failed: could not add '__main__' module! "
			            << "No Python support available." << std::endl;
			return;
		}

		// and create a valid context for our further Python calls
		context_ = PyModule_GetDict(main_module_);
		if (!context_)
		{
			Log.error() << "[PyInterpreter] Could not get valid context for Python module '__main__'! "
			            << "No Python support available." << std::endl;
			return;
		}

		// import modules for output redirection
		PyRun_SimpleString("import sys, cStringIO");

		// Add path for BALL-specific Python scripts
		loadScriptDir();
	}

	PyCAPIKernel::~PyCAPIKernel()
	{
		// free additionally loaded modules
		for (auto module: modules_) Py_DecRef(module);

		/* TODO: for some reason, finalize crashes on Windows, at least if no python
		 * module has been found. We need to fix this correctly.
		 */
#ifndef BALL_COMPILER_MSVC
			Py_Finalize();
#endif
	}

	bool PyCAPIKernel::isStarted() const
	{
		return bool(Py_IsInitialized());
	}

	bool PyCAPIKernel::errorOccurred()
	{
		if (!PyErr_Occurred()) return false;

		if (PyErr_ExceptionMatches(PyExc_SyntaxError))
		{
			last_err_ = "Syntax error";
			return true;
		}

		PyObject* type =  nullptr;
		PyObject* value = nullptr;
		PyObject* trace = nullptr;

		PyErr_Fetch(&type, &value, &trace);
		stringstream err;

		// error type
		if(type)
		{
			auto name  = PyObject_GetAttrString(type, "__name__");
			auto sname = name ? PyString_AsString(name) : nullptr;
			if(sname)  err << sname << ": ";
			Py_DecRef(name);
			Py_DecRef(type);
		}

		// error message
		auto svalue = value ? PyString_AsString(value) : nullptr;
		err << (svalue ? svalue : "(no error message given)");
		Py_DecRef(value);

		// stack trace (TODO)
		Py_DecRef(trace);

		last_err_ = err.str();
		return true;
	}

	std::pair<bool, string> PyCAPIKernel::run(string str)
	{
#ifdef BALL_DEBUG
		Log.info() << "[PyInterpreter] >>> " << str << std::endl;
#endif

		// clear previous errors
		PyErr_Clear();

		// redirect output to StringIO
		PyRun_SimpleString(
			"__BALL_CIO = cStringIO.StringIO()\n"
			"sys.stdout = __BALL_CIO\n"
			"sys.stderr = __BALL_CIO\n"
		);

		// run the string through the interpreter
		// (with Py_file_input, return value is always Py_None)
		Py_DecRef(PyRun_String(str.c_str(), Py_file_input, context_, context_));

		if (errorOccurred()) return {false, ""};

		auto cio = PyObject_GetAttrString(main_module_, "__BALL_CIO");
		auto cio_val = PyObject_GetAttrString(cio, "getvalue");
		auto cio_f = PyObject_CallFunction(cio_val, nullptr);
		auto ret = std::make_pair<bool, string>(true, PyString_AsString(cio_f));
		Py_DecRef(cio_f);
		Py_DecRef(cio_val);
		Py_DecRef(cio);
		return ret;
	}

	bool PyCAPIKernel::runFile(string filename)
	{
		FILE* file = fopen(filename.c_str(), "r");
		if(!file) throw Exception::FileNotFound(__FILE__, __LINE__, filename.c_str());

		PyErr_Clear();
		PyRun_SimpleFileEx(file, filename.c_str(), true);

		if (PyErr_Occurred())
		{
			Log.error() << "[PyInterpreter] Error occurred while executing " << filename << std::endl;
			PyErr_Print();
			return false;
		}
		return true;
	}

	bool PyCAPIKernel::execute(const string& module, const string& func_name, const KeyValArgs& args)
	{
		PyErr_Clear();

		PyObject* mod = loadModule(module);

		if (!mod)
		{
			Log.error() << "[PyInterpreter] Could not load module " << module << std::endl;
			return false;
		}

		PyObject* func = PyObject_GetAttrString(mod, func_name.c_str());

		if (!func || !PyCallable_Check(func))
		{
			PyErr_Print();
			Py_DecRef(func);
			return false;
		}

		PyObject* dict = PyDict_New();

		if (!dict)
		{
			Log.error() << "[PyInterpreter] Could not create named arguments dictionary" << std::endl;
			Py_DecRef(func);
			return false;
		}

		for (const auto& pair: args)
		{
			auto val = PyString_FromString(pair.second.c_str());
			if (!val)
			{
				Log.error() << "[PyInterpreter] Could not create parameter "
				            << pair.first << " = " << pair.second << "! Skipping..." << std::endl;
				continue;
			}
			PyDict_SetItemString(dict, pair.first.c_str(), val);
			Py_DecRef(val);
		}

		auto dummy = PyTuple_New(0);

		if (!dummy)
		{
			Log.error() << "[PyInterpreter] Could not allocate dummy tuple" << std::endl;
			Py_DecRef(func);
			Py_DecRef(dict);
			return false;
		}

		auto res = PyObject_Call(func, dummy, dict);

		Py_DecRef(res);
		Py_DecRef(func);
		Py_DecRef(dummy);
		Py_DecRef(dict);
		return true;
	}

	PyObject* PyCAPIKernel::loadModule(const string& name)
	{
		PyObject* module_dict = PyImport_GetModuleDict();

		if (!module_dict)
		{
			Log.error() << "[PyInterpreter] Could not obtain module dictionary" << std::endl;
			return nullptr;
		}

		auto mod_name = PyString_FromString(name.c_str());

		PyObject* module = nullptr;
		if (PyDict_Contains(module_dict, mod_name))
		{
			module = PyDict_GetItem(module_dict, mod_name);
		}
		else
		{
			module = PyImport_ImportModule(name.c_str());
			if (module) modules_.push_back(module); // module will be de-allocated on kernel destruction
		}

		Py_DecRef(mod_name);

		if (PyErr_Occurred())
		{
			PyErr_Print();
			return nullptr;
		}

		return module;
	}
}