2013-05-06 09:48:29 +02:00
|
|
|
/*
|
2013-09-12 10:58:44 +02:00
|
|
|
Copyright 2013 Statoil ASA.
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
This file is part of the Open Porous Media project (OPM).
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
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.
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
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.
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
2013-05-06 12:13:49 +02:00
|
|
|
*/
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-08-01 09:31:27 +02:00
|
|
|
#include <opm/json/JsonObject.hpp>
|
|
|
|
|
|
|
|
|
|
#include <opm/parser/eclipse/Parser/ParserItem.hpp>
|
|
|
|
|
#include <opm/parser/eclipse/Parser/ParserDoubleItem.hpp>
|
|
|
|
|
#include <opm/parser/eclipse/Parser/ParserEnums.hpp>
|
|
|
|
|
|
|
|
|
|
#include <opm/parser/eclipse/RawDeck/RawRecord.hpp>
|
|
|
|
|
#include <opm/parser/eclipse/Deck/DeckDoubleItem.hpp>
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
namespace Opm
|
|
|
|
|
{
|
2013-05-06 09:48:29 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
ParserDoubleItem::ParserDoubleItem(const std::string& itemName,
|
|
|
|
|
ParserItemSizeEnum sizeType) :
|
|
|
|
|
ParserItem(itemName, sizeType)
|
|
|
|
|
{
|
2013-08-01 09:31:27 +02:00
|
|
|
m_default = defaultDouble();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-18 07:16:09 +02:00
|
|
|
ParserDoubleItem::ParserDoubleItem(const std::string& itemName) : ParserItem(itemName)
|
2013-09-17 22:27:53 +02:00
|
|
|
{
|
|
|
|
|
m_default = defaultDouble();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-18 07:16:09 +02:00
|
|
|
ParserDoubleItem::ParserDoubleItem(const std::string& itemName, double defaultValue) : ParserItem(itemName)
|
|
|
|
|
{
|
|
|
|
|
setDefault( defaultValue );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ParserDoubleItem::ParserDoubleItem(const std::string& itemName, ParserItemSizeEnum sizeType, double defaultValue) : ParserItem(itemName, sizeType)
|
2013-09-12 10:58:44 +02:00
|
|
|
{
|
2013-09-17 22:27:53 +02:00
|
|
|
setDefault( defaultValue );
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-18 07:16:09 +02:00
|
|
|
|
2013-09-17 22:27:53 +02:00
|
|
|
void ParserDoubleItem::setDefault(double defaultValue) {
|
2013-08-01 09:31:27 +02:00
|
|
|
m_default = defaultValue;
|
2013-09-12 12:13:32 +02:00
|
|
|
m_defaultSet = true;
|
2013-08-01 09:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-09-17 22:27:53 +02:00
|
|
|
|
|
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
ParserDoubleItem::ParserDoubleItem(const Json::JsonObject& jsonConfig) :
|
|
|
|
|
ParserItem(jsonConfig)
|
|
|
|
|
{
|
2013-09-17 22:27:53 +02:00
|
|
|
if (jsonConfig.has_item("default"))
|
|
|
|
|
setDefault( jsonConfig.get_double("default") );
|
|
|
|
|
else
|
2013-08-09 08:49:14 +02:00
|
|
|
m_default = defaultDouble();
|
2013-08-01 09:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Scans the rawRecords data according to the ParserItems definition.
|
|
|
|
|
/// returns a DeckItem object.
|
|
|
|
|
/// NOTE: data are popped from the rawRecords deque!
|
|
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
DeckItemConstPtr
|
|
|
|
|
ParserDoubleItem::scan(RawRecordPtr rawRecord) const
|
|
|
|
|
{
|
|
|
|
|
DeckDoubleItemPtr deckItem(new DeckDoubleItem(name()));
|
2013-08-01 09:31:27 +02:00
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
bool scanAll = (sizeType() == ALL);
|
2013-08-23 15:39:08 +02:00
|
|
|
bool defaultActive;
|
2013-09-12 10:58:44 +02:00
|
|
|
std::deque<double> doublesPreparedForDeckItem = readFromRawRecord(
|
|
|
|
|
rawRecord, scanAll, m_default, defaultActive);
|
2013-08-01 09:31:27 +02:00
|
|
|
|
2013-08-23 15:39:08 +02:00
|
|
|
if (scanAll)
|
|
|
|
|
deckItem->push_back(doublesPreparedForDeckItem);
|
2013-09-12 10:58:44 +02:00
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
deckItem->push_back(doublesPreparedForDeckItem.front());
|
|
|
|
|
doublesPreparedForDeckItem.pop_front();
|
|
|
|
|
pushBackToRecord(rawRecord, doublesPreparedForDeckItem,
|
|
|
|
|
defaultActive);
|
|
|
|
|
}
|
2013-08-23 15:39:08 +02:00
|
|
|
return deckItem;
|
2013-08-01 09:31:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
bool ParserDoubleItem::equal(const ParserDoubleItem& other) const
|
|
|
|
|
{
|
|
|
|
|
if (ParserItem::equal(other) && (getDefault() == other.getDefault()))
|
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-12 23:50:16 +02:00
|
|
|
|
2013-09-14 22:14:58 +02:00
|
|
|
void ParserDoubleItem::inlineNew(std::ostream& os) const {
|
2013-09-12 23:50:16 +02:00
|
|
|
os << "new ParserDoubleItem(" << "\"" << name() << "\"" << "," << ParserItemSizeEnum2String( sizeType() );
|
|
|
|
|
if (m_defaultSet)
|
|
|
|
|
os << "," << getDefault();
|
|
|
|
|
os << ")";
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-12 10:58:44 +02:00
|
|
|
}
|
2013-08-01 09:31:27 +02:00
|
|
|
|