120 lines
4.2 KiB
C++
120 lines
4.2 KiB
C++
/*
|
|
Copyright 2016 Statoil 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 DECKKEYWORD_HPP
|
|
#define DECKKEYWORD_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <opm/input/eclipse/Deck/DeckRecord.hpp>
|
|
#include <opm/input/eclipse/Deck/value_status.hpp>
|
|
#include <opm/common/OpmLog/KeywordLocation.hpp>
|
|
|
|
namespace Opm {
|
|
class DeckOutput;
|
|
class DeckValue;
|
|
class ParserKeyword;
|
|
class UnitSystem;
|
|
|
|
class DeckKeyword {
|
|
public:
|
|
|
|
|
|
typedef std::vector< DeckRecord >::const_iterator const_iterator;
|
|
|
|
DeckKeyword();
|
|
explicit DeckKeyword(const ParserKeyword& parserKeyword);
|
|
DeckKeyword(const KeywordLocation& location, const std::string& keywordName);
|
|
DeckKeyword(const ParserKeyword& parserKeyword, const std::vector<std::vector<DeckValue>>& record_list, const UnitSystem& system_active, const UnitSystem& system_default);
|
|
DeckKeyword(const ParserKeyword& parserKeyword, const std::vector<int>& data);
|
|
DeckKeyword(const ParserKeyword& parserKeyword, const std::vector<double>& data, const UnitSystem& system_active, const UnitSystem& system_default);
|
|
|
|
static DeckKeyword serializeObject();
|
|
|
|
const std::string& name() const;
|
|
void setFixedSize();
|
|
const KeywordLocation& location() const;
|
|
|
|
|
|
size_t size() const;
|
|
bool empty() const;
|
|
void addRecord(DeckRecord&& record);
|
|
const DeckRecord& getRecord(size_t index) const;
|
|
DeckRecord& getRecord(size_t index);
|
|
const DeckRecord& getDataRecord() const;
|
|
const DeckRecord& operator[](std::size_t index) const;
|
|
DeckRecord& operator[](std::size_t index);
|
|
void setDataKeyword(bool isDataKeyword = true);
|
|
void setDoubleRecordKeyword(bool isDoubleRecordKeyword = true);
|
|
bool isDataKeyword() const;
|
|
bool isDoubleRecordKeyword() const;
|
|
|
|
const std::vector<int>& getIntData() const;
|
|
const std::vector<double>& getRawDoubleData() const;
|
|
const std::vector<double>& getSIDoubleData() const;
|
|
const std::vector<std::string>& getStringData() const;
|
|
const std::vector<value::status>& getValueStatus() const;
|
|
size_t getDataSize() const;
|
|
void write( DeckOutput& output ) const;
|
|
void write_data( DeckOutput& output ) const;
|
|
void write_TITLE( DeckOutput& output ) const;
|
|
|
|
template <class Keyword>
|
|
bool is() const {
|
|
if (Keyword::keywordName == this->m_keywordName)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
const_iterator begin() const;
|
|
const_iterator end() const;
|
|
bool equal_data(const DeckKeyword& other, bool cmp_default = false, bool cmp_numeric = true) const;
|
|
bool equal(const DeckKeyword& other, bool cmp_default = false, bool cmp_numeric = true) const;
|
|
bool operator==(const DeckKeyword& other) const;
|
|
bool operator!=(const DeckKeyword& other) const;
|
|
|
|
friend std::ostream& operator<<(std::ostream& os, const DeckKeyword& keyword);
|
|
|
|
template<class Serializer>
|
|
void serializeOp(Serializer& serializer)
|
|
{
|
|
serializer(m_keywordName);
|
|
m_location.serializeOp(serializer);
|
|
serializer.vector(m_recordList);
|
|
serializer(m_isDataKeyword);
|
|
serializer(m_slashTerminated);
|
|
serializer(m_isDoubleRecordKeyword);
|
|
}
|
|
|
|
private:
|
|
std::string m_keywordName;
|
|
KeywordLocation m_location;
|
|
|
|
std::vector< DeckRecord > m_recordList;
|
|
bool m_isDataKeyword;
|
|
bool m_slashTerminated;
|
|
bool m_isDoubleRecordKeyword = false;
|
|
};
|
|
}
|
|
|
|
#endif /* DECKKEYWORD_HPP */
|
|
|