mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
While here, also add a simple unit test that as_vector<T>() returns nullopt for non-existing property nodes.
151 lines
4.6 KiB
C++
151 lines
4.6 KiB
C++
/*
|
|
Copyright 2019, 2020 SINTEF Digital, Mathematics and Cybernetics.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <opm/simulators/linalg/PropertyTree.hpp>
|
|
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <ostream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Opm {
|
|
|
|
PropertyTree::PropertyTree()
|
|
: tree_(std::make_unique<boost::property_tree::ptree>())
|
|
{
|
|
}
|
|
|
|
PropertyTree::PropertyTree(const PropertyTree& tree)
|
|
: tree_(std::make_unique<boost::property_tree::ptree>(*tree.tree_))
|
|
{
|
|
}
|
|
|
|
PropertyTree::PropertyTree(const std::string& jsonFile)
|
|
: tree_(std::make_unique<boost::property_tree::ptree>())
|
|
{
|
|
boost::property_tree::read_json(jsonFile, *tree_);
|
|
}
|
|
|
|
PropertyTree::PropertyTree(const boost::property_tree::ptree& tree)
|
|
: tree_(std::make_unique<boost::property_tree::ptree>(tree))
|
|
{
|
|
}
|
|
|
|
PropertyTree::~PropertyTree() = default;
|
|
|
|
template<class T>
|
|
T PropertyTree::get(const std::string& key) const
|
|
{
|
|
return tree_->get<T>(key);
|
|
}
|
|
|
|
template<class T>
|
|
T PropertyTree::get(const std::string& key, const T& defValue) const
|
|
{
|
|
return tree_->get<T>(key, defValue);
|
|
}
|
|
|
|
template<class T>
|
|
void PropertyTree::put(const std::string& key, const T& value)
|
|
{
|
|
tree_->put(key,value);
|
|
}
|
|
|
|
void PropertyTree::write_json(std::ostream &os, bool pretty) const
|
|
{
|
|
boost::property_tree::write_json(os, *tree_, pretty);
|
|
}
|
|
|
|
PropertyTree
|
|
PropertyTree::get_child(const std::string& key) const
|
|
{
|
|
auto pt = tree_->get_child(key);
|
|
|
|
return PropertyTree(pt);
|
|
}
|
|
|
|
std::optional<PropertyTree>
|
|
PropertyTree::get_child_optional(const std::string& key) const
|
|
{
|
|
auto pt = tree_->get_child_optional(key);
|
|
if (!pt)
|
|
return std::nullopt;
|
|
|
|
return PropertyTree(pt.get());
|
|
}
|
|
|
|
template <typename T>
|
|
std::optional<std::vector<T>>
|
|
PropertyTree::get_child_items_as_vector(const std::string& child) const
|
|
{
|
|
auto items = std::optional<std::vector<T>>{};
|
|
|
|
auto subTree = this->tree_->get_child_optional(child);
|
|
if (! subTree) {
|
|
return items;
|
|
}
|
|
|
|
items.emplace();
|
|
for (const auto& childItem : *subTree) {
|
|
items->push_back(childItem.second.template get_value<T>());
|
|
}
|
|
|
|
return items;
|
|
}
|
|
|
|
PropertyTree& PropertyTree::operator=(const PropertyTree& tree)
|
|
{
|
|
tree_ = std::make_unique<boost::property_tree::ptree>(*tree.tree_);
|
|
return *this;
|
|
}
|
|
|
|
template void PropertyTree::put(const std::string& key, const std::string& value);
|
|
template void PropertyTree::put(const std::string& key, const double& value);
|
|
template void PropertyTree::put(const std::string& key, const float& value);
|
|
template void PropertyTree::put(const std::string& key, const int& value);
|
|
template void PropertyTree::put(const std::string& key, const std::size_t& value);
|
|
template void PropertyTree::put(const std::string& key, const bool& value);
|
|
|
|
template std::string PropertyTree::get(const std::string& key) const;
|
|
template double PropertyTree::get(const std::string& key) const;
|
|
template float PropertyTree::get(const std::string& key) const;
|
|
template int PropertyTree::get(const std::string& key) const;
|
|
template std::size_t PropertyTree::get(const std::string& key) const;
|
|
template bool PropertyTree::get(const std::string& key) const;
|
|
|
|
template std::string PropertyTree::get(const std::string& key, const std::string& defValue) const;
|
|
template double PropertyTree::get(const std::string& key, const double& defValue) const;
|
|
template float PropertyTree::get(const std::string& key, const float& defValue) const;
|
|
template int PropertyTree::get(const std::string& key, const int& defValue) const;
|
|
template std::size_t PropertyTree::get(const std::string& key, const std::size_t& defValue) const;
|
|
template bool PropertyTree::get(const std::string& key, const bool& defValue) const;
|
|
|
|
template std::optional<std::vector<int>>
|
|
PropertyTree::get_child_items_as_vector(const std::string& child) const;
|
|
template std::optional<std::vector<double>>
|
|
PropertyTree::get_child_items_as_vector(const std::string& child) const;
|
|
|
|
} // namespace Opm
|