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.
251 lines
9.2 KiB
C++
251 lines
9.2 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 "RimFlowPlotCollection.h"
|
|
|
|
#include "RimFlowCharacteristicsPlot.h"
|
|
#include "RimProject.h"
|
|
#include "RimWellAllocationOverTimePlot.h"
|
|
#include "RimWellAllocationPlot.h"
|
|
#include "RimWellConnectivityTable.h"
|
|
#include "RimWellDistributionPlotCollection.h"
|
|
|
|
#include "cafProgressInfo.h"
|
|
|
|
CAF_PDM_SOURCE_INIT( RimFlowPlotCollection, "FlowPlotCollection" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimFlowPlotCollection::RimFlowPlotCollection()
|
|
{
|
|
CAF_PDM_InitObject( "Flow Diagnostics Plots", ":/WellAllocPlots16x16.png" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_flowCharacteristicsPlot, "FlowCharacteristicsPlot", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_defaultWellConnectivityTable, "DefaultWellConnectivityTable", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_defaultWellAllocOverTimePlot, "DefaultWellAllocationOverTimePlot", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_defaultWellAllocPlot, "DefaultWellAllocationPlot", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_wellDistributionPlotCollection, "WellDistributionPlotCollection", "" );
|
|
|
|
CAF_PDM_InitFieldNoDefault( &m_storedWellAllocPlots, "StoredWellAllocationPlots", "Stored Well Allocation Plots" );
|
|
CAF_PDM_InitFieldNoDefault( &m_storedFlowCharacteristicsPlots, "StoredFlowCharacteristicsPlots", "Stored Flow Characteristics Plots" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimFlowPlotCollection::~RimFlowPlotCollection()
|
|
{
|
|
delete m_defaultWellAllocPlot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFlowPlotCollection::deleteAllPlots()
|
|
{
|
|
if ( m_defaultWellAllocPlot )
|
|
{
|
|
m_defaultWellAllocPlot->removeFromDockAreaAndDeleteViewWidget();
|
|
delete m_defaultWellAllocPlot();
|
|
}
|
|
delete m_defaultWellConnectivityTable;
|
|
delete m_defaultWellAllocOverTimePlot;
|
|
delete m_flowCharacteristicsPlot;
|
|
delete m_wellDistributionPlotCollection;
|
|
|
|
m_storedWellAllocPlots.deleteChildren();
|
|
m_storedFlowCharacteristicsPlots.deleteChildren();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFlowPlotCollection::loadDataAndUpdateAllPlots()
|
|
{
|
|
caf::ProgressInfo plotProgress( m_storedWellAllocPlots.size() + m_storedFlowCharacteristicsPlots.size() + 4, "" );
|
|
|
|
if ( m_defaultWellAllocPlot ) m_defaultWellAllocPlot->loadDataAndUpdate();
|
|
plotProgress.incrementProgress();
|
|
|
|
if ( m_defaultWellConnectivityTable ) m_defaultWellConnectivityTable->loadDataAndUpdate();
|
|
plotProgress.incrementProgress();
|
|
|
|
if ( m_defaultWellAllocOverTimePlot ) m_defaultWellAllocOverTimePlot->loadDataAndUpdate();
|
|
plotProgress.incrementProgress();
|
|
|
|
for ( RimWellAllocationPlot* p : m_storedWellAllocPlots )
|
|
{
|
|
p->loadDataAndUpdate();
|
|
plotProgress.incrementProgress();
|
|
}
|
|
|
|
for ( RimFlowCharacteristicsPlot* p : m_storedFlowCharacteristicsPlots )
|
|
{
|
|
p->loadDataAndUpdate();
|
|
plotProgress.incrementProgress();
|
|
}
|
|
|
|
if ( m_flowCharacteristicsPlot )
|
|
{
|
|
m_flowCharacteristicsPlot->loadDataAndUpdate();
|
|
}
|
|
|
|
if ( m_wellDistributionPlotCollection )
|
|
{
|
|
m_wellDistributionPlotCollection->loadDataAndUpdate();
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
size_t RimFlowPlotCollection::plotCount() const
|
|
{
|
|
size_t plotCount = 0;
|
|
plotCount += m_defaultWellAllocPlot ? 1 : 0;
|
|
plotCount += m_defaultWellConnectivityTable ? 1 : 0;
|
|
plotCount += m_defaultWellAllocOverTimePlot ? 1 : 0;
|
|
plotCount += m_storedWellAllocPlots.size();
|
|
plotCount += m_storedFlowCharacteristicsPlots.size();
|
|
return plotCount;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFlowPlotCollection::addWellAllocPlotToStoredPlots( RimWellAllocationPlot* plot )
|
|
{
|
|
m_storedWellAllocPlots.push_back( plot );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFlowPlotCollection::addFlowCharacteristicsPlotToStoredPlots( RimFlowCharacteristicsPlot* plot )
|
|
{
|
|
m_storedFlowCharacteristicsPlots.push_back( plot );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimWellConnectivityTable* RimFlowPlotCollection::defaultWellConnectivityTable()
|
|
{
|
|
if ( !m_defaultWellConnectivityTable )
|
|
{
|
|
m_defaultWellConnectivityTable = new RimWellConnectivityTable;
|
|
}
|
|
|
|
updateConnectedEditors();
|
|
|
|
return m_defaultWellConnectivityTable;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimWellAllocationOverTimePlot* RimFlowPlotCollection::defaultWellAllocOverTimePlot()
|
|
{
|
|
if ( !m_defaultWellAllocOverTimePlot() )
|
|
{
|
|
m_defaultWellAllocOverTimePlot = new RimWellAllocationOverTimePlot;
|
|
m_defaultWellAllocOverTimePlot->setDescription( "Default Well Allocation Over Time Plot" );
|
|
}
|
|
|
|
updateConnectedEditors();
|
|
|
|
return m_defaultWellAllocOverTimePlot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimWellAllocationPlot* RimFlowPlotCollection::defaultWellAllocPlot()
|
|
{
|
|
if ( !m_defaultWellAllocPlot() )
|
|
{
|
|
m_defaultWellAllocPlot = new RimWellAllocationPlot;
|
|
m_defaultWellAllocPlot->setDescription( "Default Flow Diagnostics Plot" );
|
|
}
|
|
|
|
updateConnectedEditors();
|
|
|
|
return m_defaultWellAllocPlot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimFlowCharacteristicsPlot* RimFlowPlotCollection::defaultFlowCharacteristicsPlot()
|
|
{
|
|
if ( !m_flowCharacteristicsPlot() )
|
|
{
|
|
m_flowCharacteristicsPlot = new RimFlowCharacteristicsPlot;
|
|
}
|
|
|
|
updateConnectedEditors();
|
|
|
|
return m_flowCharacteristicsPlot();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimWellDistributionPlotCollection* RimFlowPlotCollection::wellDistributionPlotCollection() const
|
|
{
|
|
return m_wellDistributionPlotCollection();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimFlowPlotCollection::ensureDefaultFlowPlotsAreCreated()
|
|
{
|
|
if ( !m_defaultWellAllocPlot() )
|
|
{
|
|
m_defaultWellAllocPlot = new RimWellAllocationPlot;
|
|
m_defaultWellAllocPlot->setDescription( "Default Flow Diagnostics Plot" );
|
|
}
|
|
|
|
if ( !m_defaultWellAllocOverTimePlot() )
|
|
{
|
|
m_defaultWellAllocOverTimePlot = new RimWellAllocationOverTimePlot;
|
|
m_defaultWellAllocOverTimePlot->setDescription( "Default Well Allocation Over Time Plot" );
|
|
}
|
|
|
|
if ( !m_defaultWellConnectivityTable() )
|
|
{
|
|
m_defaultWellConnectivityTable = new RimWellConnectivityTable;
|
|
}
|
|
|
|
if ( !m_flowCharacteristicsPlot() )
|
|
{
|
|
m_flowCharacteristicsPlot = new RimFlowCharacteristicsPlot;
|
|
}
|
|
|
|
if ( !m_wellDistributionPlotCollection() )
|
|
{
|
|
m_wellDistributionPlotCollection = new RimWellDistributionPlotCollection;
|
|
}
|
|
}
|