diff --git a/BaseLib/ConfigTreeNew.cpp b/BaseLib/ConfigTreeNew.cpp index 0631983b76bee01fa79a78fd9ea6b7de87665539..57b16ed0a0090cec2ece05a1a31d7c73e10ce7cd 100644 --- a/BaseLib/ConfigTreeNew.cpp +++ b/BaseLib/ConfigTreeNew.cpp @@ -246,4 +246,20 @@ ConfigTreeNew::checkAndInvalidate() _tree = nullptr; } + +void checkAndInvalidate(ConfigTreeNew &conf) +{ + conf.checkAndInvalidate(); +} + +void checkAndInvalidate(ConfigTreeNew* const conf) +{ + if (conf) conf->checkAndInvalidate(); +} + +void checkAndInvalidate(std::unique_ptr<ConfigTreeNew> const& conf) +{ + if (conf) conf->checkAndInvalidate(); +} + } diff --git a/BaseLib/ConfigTreeNew.h b/BaseLib/ConfigTreeNew.h index 0d7a29a4d3d2592a211bbc404d8a8af8ceff79a1..66e553f4b564fe7b9e7a64a46bc4a6799cc51f65 100644 --- a/BaseLib/ConfigTreeNew.h +++ b/BaseLib/ConfigTreeNew.h @@ -15,10 +15,27 @@ #include <map> #include <functional> +#include <memory> namespace BaseLib { +class ConfigTreeNew; + +/*! Check if \c conf has been read entirely and invalidate it. + * + * This method can savely be called on \c nullptr's. + * + * \see ConfigTreeNew::checkAndInvalidate() + */ +void checkAndInvalidate(ConfigTreeNew* const conf); + +//! \overload +void checkAndInvalidate(std::unique_ptr<ConfigTreeNew> const& conf); + +//! \overload +void checkAndInvalidate(ConfigTreeNew& conf); + template<typename Iterator> class Range; /*! @@ -306,13 +323,6 @@ public: */ void ignoreConfParamAll(std::string const& param) const; - /*! Checks if the top level of this tree has been read entirely (and not too often). - * - * Caution: This method also invalidates the instance, i.e., afterwards it can not - * be read from the tree anymore! - */ - void checkAndInvalidate(); - //! The destructor performs the check if all nodes at the current level of the tree //! have been read. ~ConfigTreeNew(); @@ -373,6 +383,13 @@ private: //! and the number of times it exists in the ConfigTree void markVisitedDecrement(std::string const& key) const; + /*! Checks if the top level of this tree has been read entirely (and not too often). + * + * Caution: This method also invalidates the instance, i.e., afterwards it can not + * be read from the tree anymore! + */ + void checkAndInvalidate(); + //! returns a short string at suitable for error/warning messages static std::string shortString(std::string const& s); @@ -402,6 +419,10 @@ private: //! Set of allowed characters in a key name. static const std::string key_chars; + + friend void checkAndInvalidate(ConfigTreeNew* const conf); + friend void checkAndInvalidate(ConfigTreeNew& conf); + friend void checkAndInvalidate(std::unique_ptr<ConfigTreeNew> const& conf); }; } diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h index c2e40088e12b8b3f572f6576f636d99cc1bc8943..9de6e4ac5a50206e2377a2bb7861c542afc18681 100644 --- a/ProcessLib/Process.h +++ b/ProcessLib/Process.h @@ -150,7 +150,7 @@ private: _rhs.reset(_global_setup.createVector(num_unknowns)); _linear_solver.reset(new typename GlobalSetup::LinearSolver( *_A, solver_name, _linear_solver_options.get())); - _linear_solver_options->checkAndInvalidate(); + checkAndInvalidate(_linear_solver_options); } /// Computes and stores global matrix' sparsity pattern from given