mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
Migrate all assert macros in ApplicationLibCode to CAF_ASSERT and remove every use of cvfAssert.h. CVF_ASSERT is replaced one to one. CVF_TIGHT_ASSERT is also replaced by CAF_ASSERT, which is semantically exact: CVF_ENABLE_TIGHT_ASSERTS is 1 only under _DEBUG, and that is what CAF_ASSERT now does. The two CVF_FAIL_MSG sites become CAF_ASSERT( false && "message" ), preserving the message with the idiom already used elsewhere in the code base. Counts before and after: CVF_ASSERT 1044 to 0, CVF_TIGHT_ASSERT 66 to 0, CVF_FAIL_MSG 2 to 0, cvfAssert.h references 154 to 0. Include handling: files that included cvfAssert.h directly now include cafAssert.h instead, includes left dead by the migration are removed, and files that were relying on cvfAssert.h transitively get an explicit cafAssert.h. Files that reach cafAssert.h through another caf header are left unchanged; a missing include here is a compile error, not a silently disabled assert. ResultStatisticsCache links only LibCore and therefore had no path to cafAssert.h. Add the cafPdmCore directory as a private include path rather than linking the library, since cafAssert.h is header only. Note that this stops these asserts from firing in Release and RelWithDebInfo, where CVF_ASSERT was previously active.
147 lines
5.0 KiB
C++
147 lines
5.0 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 "RifColumnBasedUserDataParser.h"
|
|
|
|
#include "RifEclipseUserDataKeywordTools.h"
|
|
#include "RifEclipseUserDataParserTools.h"
|
|
|
|
#include "RiaDateStringParser.h"
|
|
#include "RiaLogging.h"
|
|
#include "RiaTextStringTools.h"
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTextStream>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifColumnBasedUserDataParser::RifColumnBasedUserDataParser( const QString& data, QString* errorText )
|
|
: m_errorText( errorText )
|
|
{
|
|
parseTableData( data );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const std::vector<TableData>& RifColumnBasedUserDataParser::tableData() const
|
|
{
|
|
return m_tableDatas;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const Column* RifColumnBasedUserDataParser::columnInfo( size_t tableIndex, size_t columnIndex ) const
|
|
{
|
|
if ( tableIndex >= m_tableDatas.size() ) return nullptr;
|
|
|
|
if ( columnIndex >= m_tableDatas[tableIndex].columnInfos().size() ) return nullptr;
|
|
|
|
return &( m_tableDatas[tableIndex].columnInfos()[columnIndex] );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifColumnBasedUserDataParser::parseTableData( const QString& data )
|
|
{
|
|
std::string stdData = data.toStdString();
|
|
bool isFixedWidth = RifEclipseUserDataParserTools::isFixedWidthHeader( stdData );
|
|
|
|
std::stringstream streamData;
|
|
streamData.str( stdData );
|
|
|
|
std::vector<TableData> rawTables;
|
|
|
|
do
|
|
{
|
|
std::vector<std::string> errorStrings;
|
|
|
|
TableData table;
|
|
|
|
if ( isFixedWidth )
|
|
{
|
|
auto columnInfos = RifEclipseUserDataParserTools::columnInfoForFixedColumnWidth( streamData );
|
|
table = TableData( "", "", columnInfos );
|
|
}
|
|
else
|
|
{
|
|
table = RifEclipseUserDataParserTools::tableDataFromText( streamData, &errorStrings );
|
|
}
|
|
|
|
if ( m_errorText )
|
|
{
|
|
for ( auto s : errorStrings )
|
|
{
|
|
QString errorText = QString( "\n%1" ).arg( QString::fromStdString( s ) );
|
|
m_errorText->append( errorText );
|
|
}
|
|
}
|
|
|
|
std::vector<Column>& columnInfos = table.columnInfos();
|
|
int columnCount = static_cast<int>( columnInfos.size() );
|
|
if ( columnCount == 0 ) break;
|
|
|
|
int stepTypeIndex = -1;
|
|
for ( size_t i = 0; i < columnInfos.size(); i++ )
|
|
{
|
|
if ( RifEclipseUserDataKeywordTools::isStepType( columnInfos[i].summaryAddress.vectorName() ) )
|
|
{
|
|
stepTypeIndex = static_cast<int>( i );
|
|
}
|
|
}
|
|
|
|
std::string line;
|
|
std::getline( streamData, line );
|
|
|
|
do
|
|
{
|
|
QString qLine = QString::fromStdString( line );
|
|
QStringList entries = RiaTextStringTools::splitSkipEmptyParts( qLine );
|
|
|
|
if ( stepTypeIndex > -1 && (unsigned int)entries.size() < columnInfos.size() )
|
|
{
|
|
entries.insert( stepTypeIndex, " " );
|
|
}
|
|
|
|
if ( entries.size() < columnCount ) break;
|
|
|
|
for ( int i = 0; i < columnCount; i++ )
|
|
{
|
|
if ( columnInfos[i].dataType == Column::TEXT )
|
|
{
|
|
columnInfos[i].textValues.push_back( entries[i].toStdString() );
|
|
}
|
|
else
|
|
{
|
|
double entry = entries[i].toDouble();
|
|
columnInfos[i].values.push_back( entry );
|
|
}
|
|
}
|
|
} while ( std::getline( streamData, line ) );
|
|
|
|
rawTables.push_back( table );
|
|
|
|
} while ( streamData.good() );
|
|
|
|
m_tableDatas = RifEclipseUserDataParserTools::mergeEqualTimeSteps( rawTables );
|
|
}
|