mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -06:00
81 lines
2.6 KiB
C++
81 lines
2.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017- Statoil ASA
|
|
//
|
|
// ResInsight 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.
|
|
//
|
|
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RifColumnBasedRsmspecParser.h"
|
|
|
|
#include "RifRsmspecParserTools.h"
|
|
|
|
#include "RiaLogging.h"
|
|
|
|
#include "cvfAssert.h"
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTextStream>
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifColumnBasedRsmspecParser::RifColumnBasedRsmspecParser(const QString& data)
|
|
{
|
|
parseData(data);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const std::vector< std::vector<ColumnInfo> >& RifColumnBasedRsmspecParser::tables() const
|
|
{
|
|
return m_tables;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifColumnBasedRsmspecParser::parseData(const QString& data)
|
|
{
|
|
std::stringstream streamData;
|
|
streamData.str(data.toStdString());
|
|
std::string line;
|
|
std::getline(streamData, line);
|
|
|
|
do
|
|
{
|
|
std::vector<ColumnInfo> table = RifRsmspecParserTools::columnInfoForTable(streamData, line);
|
|
size_t columnCount = table.size();
|
|
if (columnCount == 0) break;
|
|
|
|
std::vector<double> values;
|
|
|
|
do
|
|
{
|
|
RifRsmspecParserTools::splitLineToDoubles(line, values);
|
|
if (values.size() != columnCount) break;
|
|
|
|
for (size_t i = 0; i < columnCount; i++)
|
|
{
|
|
table[i].values.push_back(values[i]);
|
|
}
|
|
} while (std::getline(streamData, line));
|
|
|
|
m_tables.push_back(table);
|
|
|
|
} while (streamData.good());
|
|
}
|