cutter/src/utils/NestedIPyKernel.cpp

103 lines
2.6 KiB
C++
Raw Normal View History

2018-02-22 21:08:06 +00:00
#include <Python.h>
#include <QFile>
2018-02-23 15:24:19 +00:00
#include <csignal>
2018-02-22 21:08:06 +00:00
#include "cutter.h"
#include "NestedIPyKernel.h"
NestedIPyKernel *NestedIPyKernel::start(const QStringList &argv)
{
PyThreadState *parentThreadState = PyThreadState_Get();
PyThreadState *threadState = Py_NewInterpreter();
if (!threadState)
{
qWarning() << "Could not create subinterpreter.";
return nullptr;
}
QFile moduleFile(":/python/cutter_ipykernel.py");
moduleFile.open(QIODevice::ReadOnly);
QByteArray moduleCode = moduleFile.readAll();
moduleFile.close();
auto moduleCodeObject = Py_CompileString(moduleCode.constData(), "cutter_ipykernel.py", Py_file_input);
if (!moduleCodeObject)
{
qWarning() << "Could not compile cutter_ipykernel.";
return nullptr;
}
auto cutterIPykernelModule = PyImport_ExecCodeModule("cutter_ipykernel", moduleCodeObject);
Py_DECREF(moduleCodeObject);
if (!cutterIPykernelModule)
{
qWarning() << "Could not import cutter_ipykernel.";
return nullptr;
}
auto kernel = new NestedIPyKernel(cutterIPykernelModule, argv);
PyThreadState_Swap(parentThreadState);
return kernel;
}
NestedIPyKernel::NestedIPyKernel(PyObject *cutterIPykernelModule, const QStringList &argv)
{
2018-02-23 12:04:53 +00:00
threadState = PyThreadState_Get();
2018-02-22 21:08:06 +00:00
auto launchFunc = PyObject_GetAttrString(cutterIPykernelModule, "launch_ipykernel");
PyObject *argvListObject = PyList_New(argv.size());
for (int i = 0; i < argv.size(); i++)
{
QString s = argv[i];
PyList_SetItem(argvListObject, i, PyUnicode_DecodeUTF8(s.toUtf8().constData(), s.length(), nullptr));
}
kernel = PyObject_CallFunction(launchFunc, "O", argvListObject);
}
NestedIPyKernel::~NestedIPyKernel()
{
2018-02-23 16:42:54 +00:00
auto parentThreadState = PyThreadState_Swap(threadState);
auto ret = PyObject_CallMethod(kernel, "cleanup", nullptr);
if (!ret)
{
PyErr_Print();
}
PyThreadState_Swap(parentThreadState);
2018-02-22 21:08:06 +00:00
}
2018-02-23 12:04:53 +00:00
void NestedIPyKernel::sendSignal(long signum)
2018-02-22 21:08:06 +00:00
{
auto parentThreadState = PyThreadState_Swap(threadState);
2018-02-23 15:24:19 +00:00
auto ret = PyObject_CallMethod(kernel, "send_signal", "l", signum);
if (!ret)
{
PyErr_Print();
}
2018-02-22 21:08:06 +00:00
PyThreadState_Swap(parentThreadState);
}
2018-02-23 12:04:53 +00:00
QVariant NestedIPyKernel::poll()
{
QVariant ret;
auto parentThreadState = PyThreadState_Swap(threadState);
PyObject *pyRet = PyObject_CallMethod(kernel, "poll", nullptr);
2018-02-23 15:24:19 +00:00
if(pyRet)
{
if(PyLong_Check(pyRet))
{
ret = (qlonglong)PyLong_AsLong(pyRet);
}
}
else
2018-02-23 12:04:53 +00:00
{
2018-02-23 15:24:19 +00:00
PyErr_Print();
2018-02-23 12:04:53 +00:00
}
PyThreadState_Swap(parentThreadState);
return ret;
}