Skip to content
Snippets Groups Projects
Commit e4dee2e4 authored by Raquel Alvarez Banos's avatar Raquel Alvarez Banos
Browse files

Re #16869 Check for null ptr

parent 7b95bfcd
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,8 @@ public:
std::string runPythonAlgorithm(const std::string &pythonCode) override;
private:
/// Check for null pointer
void checkPtrValid(IReflSettingsTabPresenter *pointer) const;
/// The view we are handling
IReflMainWindowView *m_view;
/// The presenter of tab 'Runs'
......
......@@ -31,8 +31,7 @@ ReflMainWindowPresenter::~ReflMainWindowPresenter() {}
*/
std::string ReflMainWindowPresenter::getPlusOptions() const {
if (m_settingsPresenter == nullptr)
throw std::runtime_error("Could not read settings");
checkPtrValid(m_settingsPresenter);
return m_settingsPresenter->getPlusOptions();
}
......@@ -42,8 +41,7 @@ std::string ReflMainWindowPresenter::getPlusOptions() const {
*/
std::string ReflMainWindowPresenter::getTransmissionOptions() const {
if (m_settingsPresenter == nullptr)
throw std::runtime_error("Could not read settings");
checkPtrValid(m_settingsPresenter);
return m_settingsPresenter->getTransmissionOptions();
}
......@@ -53,8 +51,7 @@ std::string ReflMainWindowPresenter::getTransmissionOptions() const {
*/
std::string ReflMainWindowPresenter::getReductionOptions() const {
if (m_settingsPresenter == nullptr)
throw std::runtime_error("Could not read settings");
checkPtrValid(m_settingsPresenter);
// Request global processing options to 'Settings' presenter
return m_settingsPresenter->getReductionOptions();
......@@ -65,8 +62,7 @@ std::string ReflMainWindowPresenter::getReductionOptions() const {
*/
std::string ReflMainWindowPresenter::getStitchOptions() const {
if (m_settingsPresenter == nullptr)
throw std::runtime_error("Could not read settings");
checkPtrValid(m_settingsPresenter);
// Request global post-processing options to 'Settings' presenter
return m_settingsPresenter->getStitchOptions();
......@@ -142,5 +138,14 @@ ReflMainWindowPresenter::runPythonAlgorithm(const std::string &pythonCode) {
return m_view->runPythonAlgorithm(pythonCode);
}
/** Checks for null pointer
* @param pointer :: The pointer
*/
void ReflMainWindowPresenter::checkPtrValid(
IReflSettingsTabPresenter *pointer) const {
if (pointer == nullptr)
throw std::invalid_argument("Could not read settings");
}
}
}
\ No newline at end of file
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