Skip to content
Snippets Groups Projects
Commit 2036ae0b authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

simplify result checking and error handling

parent 5349be93
No related branches found
No related tags found
1 merge request!1636PyCore: Re-implementation of embedded Python as a separate module (Major change)
This commit is part of merge request !1636. Comments created here will be created in the context of that merge request.
...@@ -103,21 +103,13 @@ QString readFile(const QString& fileName) ...@@ -103,21 +103,13 @@ QString readFile(const QString& fileName)
std::unique_ptr<MultiLayer> code2sample(const QString& snippet, const QString& funcName) std::unique_ptr<MultiLayer> code2sample(const QString& snippet, const QString& funcName)
{ {
QApplication::setOverrideCursor(Qt::WaitCursor); QApplication::setOverrideCursor(Qt::WaitCursor);
void* result_ptr = nullptr;
PyObjectPtr result{PyInterpreter::createMultiLayerFromPython(
result_ptr, snippet.toStdString(), funcName.toStdString(), bornagainDir())};
std::unique_ptr<MultiLayer> multilayer_ptr(reinterpret_cast<MultiLayer*>(result_ptr)->clone()); void* result_ptr = PyInterpreter::createMultiLayerFromPython(
snippet.toStdString(), funcName.toStdString(), bornagainDir());
if (!result.valid()) {
QApplication::restoreOverrideCursor();
QString message("Exception thrown while executing Python code to create sample.\n\n");
DetailedMessageBox(GUI::Global::mainWindow, "Python failure", message, "").exec();
}
QApplication::restoreOverrideCursor(); QApplication::restoreOverrideCursor();
return multilayer_ptr; return std::unique_ptr<MultiLayer>{reinterpret_cast<MultiLayer*>(result_ptr)->clone()};
} }
//! Lets user select a function name which generates a MultiLayer. //! Lets user select a function name which generates a MultiLayer.
......
...@@ -31,8 +31,8 @@ References: ...@@ -31,8 +31,8 @@ References:
#include "PyCore/Embed/PyCore.h" #include "PyCore/Embed/PyCore.h"
#undef INCLUDE_NUMPY #undef INCLUDE_NUMPY
#include "PyCore/Embed/PyInterpreter.h"
#include "Base/Util/Assert.h" #include "Base/Util/Assert.h"
#include "PyCore/Embed/PyInterpreter.h"
#include <cstddef> // NULL #include <cstddef> // NULL
#include <cstring> // memcpy #include <cstring> // memcpy
#include <iostream> // cerr #include <iostream> // cerr
...@@ -181,7 +181,7 @@ PyObjectPtr PyInterpreter::import(const std::string& pymodule_name, const std::s ...@@ -181,7 +181,7 @@ PyObjectPtr PyInterpreter::import(const std::string& pymodule_name, const std::s
PyInterpreter::Numpy::initialize(); PyInterpreter::Numpy::initialize();
if(!path.empty()) if (!path.empty())
addPythonPath(path); addPythonPath(path);
// import the module // import the module
...@@ -582,7 +582,7 @@ double* PyInterpreter::Numpy::getDataPtr(PyObject* pyobject_ptr) ...@@ -582,7 +582,7 @@ double* PyInterpreter::Numpy::getDataPtr(PyObject* pyobject_ptr)
PyObjectPtr PyInterpreter::BornAgain::import(const std::string& path) PyObjectPtr PyInterpreter::BornAgain::import(const std::string& path)
{ {
if(!path.empty()) if (!path.empty())
PyInterpreter::addPythonPath(path); PyInterpreter::addPythonPath(path);
#ifndef _WIN32 #ifndef _WIN32
......
...@@ -24,8 +24,8 @@ ...@@ -24,8 +24,8 @@
namespace PyInterpreter { namespace PyInterpreter {
PyObjectPtr createMultiLayerFromPython(void*& multilayer_ptr, const std::string& script, void* createMultiLayerFromPython(const std::string& script, const std::string& functionName,
const std::string& functionName, const std::string& path) const std::string& path)
{ {
PyObjectPtr tmpModule{PyInterpreter::BornAgain::importScript(script, path)}; PyObjectPtr tmpModule{PyInterpreter::BornAgain::importScript(script, path)};
...@@ -37,32 +37,29 @@ PyObjectPtr createMultiLayerFromPython(void*& multilayer_ptr, const std::string& ...@@ -37,32 +37,29 @@ PyObjectPtr createMultiLayerFromPython(void*& multilayer_ptr, const std::string&
+ functionName + "'")); + functionName + "'"));
// create a `MultiLayer` Python object via calling the function // create a `MultiLayer` Python object via calling the function
PyObject* instance = PyObject_CallFunctionObjArgs(pAddFn, NULL); PyObject* ret1 = PyObject_CallFunctionObjArgs(pAddFn, NULL);
// clean up // clean up
Py_DecRef(pAddFn); Py_DecRef(pAddFn);
if (!instance) if (!ret1)
throw std::runtime_error(errorDescription( throw std::runtime_error(
"PyInterpreter::BornAgain: Cannot call the function '" + functionName + "'")); errorDescription("Failed execting Python function '" + functionName + "'"));
// Construct a C++ object from the Python object // Construct a C++ object from the Python object.
/* NOTE: // This conversion requires a SWIG-produced Python API.
This conversion requires a SWIG-produced Python API.
*/
void* argp1 = 0; void* argp1 = 0;
swig_type_info* pTypeInfo = SWIG_TypeQuery("MultiLayer *"); swig_type_info* pTypeInfo = SWIG_TypeQuery("MultiLayer *");
const int res = SWIG_ConvertPtr(instance, &argp1, pTypeInfo, 0); const int res = SWIG_ConvertPtr(ret1, &argp1, pTypeInfo, 0);
if (!SWIG_IsOK(res)) { if (!SWIG_IsOK(res)) {
Py_DecRef(instance); Py_DecRef(ret1);
throw std::runtime_error( throw std::runtime_error(
errorDescription("Call of '" + functionName + "' did not yield MultiLayer instance")); errorDescription("Function " + functionName + " did not yield MultiLayer instance"));
} }
multilayer_ptr = reinterpret_cast<void*>(argp1); return reinterpret_cast<void*>(argp1);
return {instance};
} }
} // namespace PyInterpreter } // namespace PyInterpreter
......
...@@ -32,9 +32,8 @@ namespace PyInterpreter { ...@@ -32,9 +32,8 @@ namespace PyInterpreter {
// `MultiLayer` instance in C++ (memory should be managed by the caller). // `MultiLayer` instance in C++ (memory should be managed by the caller).
//! The returned value is the PyObject corresponding the intermediate _Python_ instance of //! The returned value is the PyObject corresponding the intermediate _Python_ instance of
//! of the `MultiLayer` class. //! of the `MultiLayer` class.
PyObjectPtr createMultiLayerFromPython(void*& multilayer_ptr, const std::string& script, void* createMultiLayerFromPython(const std::string& script, const std::string& functionName,
const std::string& functionName, const std::string& path = "");
const std::string& path = "");
} // namespace PyInterpreter } // namespace PyInterpreter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment