Files
opm-common/opm/parser/eclipse/Parser/ParserDoubleItem.cpp

117 lines
3.5 KiB
C++
Raw Normal View History

2013-05-06 09:48:29 +02:00
/*
Copyright 2013 Statoil ASA.
2013-05-06 09:48:29 +02:00
This file is part of the Open Porous Media project (OPM).
2013-05-06 09:48:29 +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
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
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 09:48:29 +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
namespace Opm
{
2013-05-06 09:48:29 +02:00
ParserDoubleItem::ParserDoubleItem(const std::string& itemName,
ParserItemSizeEnum sizeType) :
ParserItem(itemName, sizeType)
{
m_default = defaultDouble();
}
ParserDoubleItem::ParserDoubleItem(const std::string& itemName) : ParserItem(itemName)
2013-09-17 22:27:53 +02:00
{
m_default = defaultDouble();
}
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-17 22:27:53 +02:00
setDefault( defaultValue );
}
2013-09-17 22:27:53 +02:00
void ParserDoubleItem::setDefault(double defaultValue) {
m_default = defaultValue;
m_defaultSet = true;
}
2013-09-17 22:27:53 +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
m_default = defaultDouble();
}
/// Scans the rawRecords data according to the ParserItems definition.
/// returns a DeckItem object.
/// NOTE: data are popped from the rawRecords deque!
DeckItemConstPtr
ParserDoubleItem::scan(RawRecordPtr rawRecord) const
{
DeckDoubleItemPtr deckItem(new DeckDoubleItem(name()));
bool scanAll = (sizeType() == ALL);
bool defaultActive;
std::deque<double> doublesPreparedForDeckItem = readFromRawRecord(
rawRecord, scanAll, m_default, defaultActive);
if (scanAll)
deckItem->push_back(doublesPreparedForDeckItem);
else
{
deckItem->push_back(doublesPreparedForDeckItem.front());
doublesPreparedForDeckItem.pop_front();
pushBackToRecord(rawRecord, doublesPreparedForDeckItem,
defaultActive);
}
return deckItem;
}
bool ParserDoubleItem::equal(const ParserDoubleItem& other) const
{
if (ParserItem::equal(other) && (getDefault() == other.getDefault()))
return true;
else
return false;
}
void ParserDoubleItem::inlineNew(std::ostream& os) const {
os << "new ParserDoubleItem(" << "\"" << name() << "\"" << "," << ParserItemSizeEnum2String( sizeType() );
if (m_defaultSet)
os << "," << getDefault();
os << ")";
}
}