Files
opm-common/opm/input/eclipse/Schedule/Well/WListManager.hpp
Arne Morten Kvarving fb0f3c451e changed: rename serializeObject to serializationTestObject
makes it more clear what these members are used for.
2022-10-04 14:10:30 +02:00

71 lines
2.2 KiB
C++

/*
Copyright 2019 Equinor ASA.
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/>.
*/
#ifndef WLISTMANAGER_HPP
#define WLISTMANAGER_HPP
#include <cstddef>
#include <map>
#include <vector>
#include <string>
#include <opm/input/eclipse/Schedule/Well/WList.hpp>
namespace Opm {
namespace RestartIO {
struct RstState;
}
class WListManager {
public:
WListManager() = default;
explicit WListManager(const RestartIO::RstState& rst_state);
static WListManager serializationTestObject();
std::size_t WListSize() const;
bool hasList(const std::string&) const;
WList& getList(const std::string& name);
const WList& getList(const std::string& name) const;
WList& newList(const std::string& name, const std::vector<std::string>& wname);
const std::vector<std::string>& getWListNames(const std::string& wname) const;
std::size_t getNoWListsWell(std::string wname) const;
bool hasWList(const std::string& wname) const;
void addWListWell(const std::string& wname, const std::string& wlname);
void delWell(const std::string& wname);
void delWListWell(const std::string& wname, const std::string& wlname);
bool operator==(const WListManager& data) const;
std::vector<std::string> wells(const std::string& wlist_pattern) const;
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer(wlists);
serializer(well_wlist_names);
serializer(no_wlists_well);
}
private:
std::map<std::string, WList> wlists;
std::map<std::string, std::vector<std::string>> well_wlist_names;
std::map<std::string, std::size_t> no_wlists_well;
};
}
#endif