mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
117 lines
5.0 KiB
C++
117 lines
5.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2023 Equinor 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 "RicImportSummaryCalculationExpressionsFeature.h"
|
|
#include "RicExportSummaryCalculationExpressionsFeature.h"
|
|
|
|
#include "RiaGuiApplication.h"
|
|
#include "RiaLogging.h"
|
|
#include "RiaPreferences.h"
|
|
|
|
#include "RimOilField.h"
|
|
#include "RimProject.h"
|
|
#include "RimSummaryAddress.h"
|
|
#include "RimSummaryCalculationCollection.h"
|
|
#include "RimSummaryCalculationVariable.h"
|
|
#include "RimSummaryCase.h"
|
|
#include "RimSummaryCaseMainCollection.h"
|
|
|
|
#include "RiuFileDialogTools.h"
|
|
#include "RiuPlotMainWindow.h"
|
|
|
|
#include "RifSummaryCalculationImporter.h"
|
|
|
|
#include <QAction>
|
|
#include <QFile>
|
|
#include <QFileInfo>
|
|
#include <QTextStream>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicImportSummaryCalculationExpressionsFeature, "RicImportSummaryCalculationExpressionsFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicImportSummaryCalculationExpressionsFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
auto app = RiaGuiApplication::instance();
|
|
|
|
QString defaultDir =
|
|
app->lastUsedDialogDirectoryWithFallback( RicExportSummaryCalculationExpressionsFeature::summaryCalculationExpressionId(),
|
|
RiaPreferences::current()->summaryCalculationExpressionFolder() );
|
|
|
|
QString fileName =
|
|
RiuFileDialogTools::getOpenFileName( nullptr, "Import Summary Calculation Expressions", defaultDir, "Toml File(*.toml);;All files(*.*)" );
|
|
if ( fileName.isEmpty() ) return;
|
|
|
|
auto [calculations, errorMessage] = RifSummaryCalculationImporter::readFromFile( fileName.toStdString() );
|
|
if ( !errorMessage.empty() )
|
|
{
|
|
RiaLogging::errorInMessageBox( RiuPlotMainWindow::instance(), "Summary Calculation Import Error", QString::fromStdString( errorMessage ) );
|
|
return;
|
|
}
|
|
|
|
auto proj = RimProject::current();
|
|
auto calcColl = proj->calculationCollection();
|
|
|
|
RimSummaryCaseMainCollection* sumCaseColl = proj->activeOilField() ? proj->activeOilField()->summaryCaseMainCollection() : nullptr;
|
|
RimSummaryCase* firstCase = nullptr;
|
|
if ( sumCaseColl && !sumCaseColl->allSummaryCases().empty() )
|
|
{
|
|
firstCase = sumCaseColl->allSummaryCases().front();
|
|
}
|
|
|
|
for ( auto calc : calculations )
|
|
{
|
|
bool addDefaultExpression = false;
|
|
auto summaryCalculation = dynamic_cast<RimSummaryCalculation*>( calcColl->addCalculation( addDefaultExpression ) );
|
|
if ( summaryCalculation )
|
|
{
|
|
summaryCalculation->setExpression( QString::fromStdString( calc.expression ) );
|
|
summaryCalculation->setDescription( QString::fromStdString( calc.expression ) );
|
|
summaryCalculation->setUnit( QString::fromStdString( calc.unit ) );
|
|
summaryCalculation->setDistributeToAllCases( calc.distributeToAllCases );
|
|
summaryCalculation->setDistributeToOtherItems( calc.distributeToOther );
|
|
|
|
for ( auto var : calc.variables )
|
|
{
|
|
auto variable =
|
|
dynamic_cast<RimSummaryCalculationVariable*>( summaryCalculation->addVariable( QString::fromStdString( var.name ) ) );
|
|
RifEclipseSummaryAddress address = RifEclipseSummaryAddress::fromEclipseTextAddress( var.address );
|
|
|
|
RimSummaryAddress summaryAddress;
|
|
summaryAddress.setAddress( address );
|
|
if ( firstCase ) summaryAddress.setCaseId( firstCase->caseId() );
|
|
variable->setSummaryAddress( summaryAddress );
|
|
variable->setName( QString::fromStdString( var.name ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
QString absPath = QFileInfo( fileName ).absolutePath();
|
|
app->setLastUsedDialogDirectory( RicExportSummaryCalculationExpressionsFeature::summaryCalculationExpressionId(), absPath );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicImportSummaryCalculationExpressionsFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Import Grid Calculation Expressions" );
|
|
actionToSetup->setIcon( QIcon( ":/Calculator.svg" ) );
|
|
}
|