mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
* Moves multi reader initialization * Log error message if not able to open file * Make keywordCount pure virtual The base class `RifSummaryReaderInterface` is changed to be abstract and the `keywordCount` is declared as a pure virtual method, therefore the derived classes must implement the method. This will ensure that all readers are responsible for reporting a keyword count. * Ensures addresses are created if required Calls `createAddressesIfRequired` on the summary reader to ensure addresses are created before accessing keyword count. This prevents potential issues when the addresses haven't been initialized yet.
126 lines
4.9 KiB
C++
126 lines
4.9 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 "RifSummaryReaderInterface.h"
|
|
|
|
#include <string>
|
|
|
|
#include <QDateTime>
|
|
|
|
int RifSummaryReaderInterface::m_nextSerialNumber = 0;
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const std::set<RifEclipseSummaryAddress>& RifSummaryReaderInterface::allResultAddresses() const
|
|
{
|
|
return m_allResultAddresses;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const std::set<RifEclipseSummaryAddress>& RifSummaryReaderInterface::allErrorAddresses() const
|
|
{
|
|
return m_allErrorAddresses;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifEclipseSummaryAddress RifSummaryReaderInterface::errorAddress( const RifEclipseSummaryAddress& resultAddress ) const
|
|
{
|
|
RifEclipseSummaryAddress errAddr = resultAddress;
|
|
errAddr.setAsErrorResult();
|
|
|
|
return m_allErrorAddresses.find( errAddr ) != m_allErrorAddresses.end() ? errAddr : RifEclipseSummaryAddress();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifSummaryReaderInterface::createAndSetAddresses()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifSummaryReaderInterface::createAddressesIfRequired()
|
|
{
|
|
if ( m_allResultAddresses.empty() )
|
|
{
|
|
createAndSetAddresses();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
int RifSummaryReaderInterface::serialNumber() const
|
|
{
|
|
return m_serialNumber;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
size_t RifSummaryReaderInterface::dataObjectCount() const
|
|
{
|
|
if ( !m_allResultAddresses.empty() ) return m_allResultAddresses.size();
|
|
|
|
// Fallback to keyword count if no addresses are available. This can happen if an ensemble creates addresses for only a single realization.
|
|
return keywordCount();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifSummaryReaderInterface::increaseSerialNumber()
|
|
{
|
|
#pragma omp critical
|
|
m_serialNumber = m_nextSerialNumber++;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifSummaryReaderInterface::RifSummaryReaderInterface()
|
|
{
|
|
increaseSerialNumber();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifSummaryReaderInterface::hasAddress( const RifEclipseSummaryAddress& resultAddress ) const
|
|
{
|
|
static const RifEclipseSummaryAddress defaultAdr = RifEclipseSummaryAddress();
|
|
if ( resultAddress == defaultAdr ) return true;
|
|
|
|
if ( !m_allResultAddresses.empty() )
|
|
{
|
|
return ( m_allResultAddresses.count( resultAddress ) > 0 );
|
|
}
|
|
|
|
// This is a fallback for cases where no addresses are present, such as when the summary reader is not yet initialized.
|
|
// This function should not be used in performance-critical code paths.
|
|
const auto& [isOk, vals] = values( resultAddress );
|
|
return isOk && !vals.empty();
|
|
}
|