mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
130 lines
5.5 KiB
C++
130 lines
5.5 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (C) 2021- 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 "RicImportEnsembleWellLogsFeature.h"
|
||
|
|
||
|
#include "RiaApplication.h"
|
||
|
#include "RiaLogging.h"
|
||
|
|
||
|
#include "WellLogCommands/RicWellLogsImportFileFeature.h"
|
||
|
|
||
|
#include "RimEnsembleWellLogs.h"
|
||
|
#include "RimEnsembleWellLogsCollection.h"
|
||
|
#include "RimOilField.h"
|
||
|
#include "RimProject.h"
|
||
|
#include "RimWellLogFile.h"
|
||
|
|
||
|
#include "RicRecursiveFileSearchDialog.h"
|
||
|
|
||
|
#include <QAction>
|
||
|
#include <QFileInfo>
|
||
|
|
||
|
CAF_CMD_SOURCE_INIT( RicImportEnsembleWellLogsFeature, "RicImportEnsembleWellLogsFeature" );
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RicImportEnsembleWellLogsFeature::RicImportEnsembleWellLogsFeature()
|
||
|
: m_pathFilter( "*" )
|
||
|
, m_fileNameFilter( "*" )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
bool RicImportEnsembleWellLogsFeature::isCommandEnabled()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RicImportEnsembleWellLogsFeature::onActionTriggered( bool isChecked )
|
||
|
{
|
||
|
RiaApplication* app = RiaApplication::instance();
|
||
|
QString pathCacheName = "ENSEMBLE_WELL_LOGS_FILES";
|
||
|
QStringList fileNames = runRecursiveFileSearchDialog( "Import Ensemble Well Logs", pathCacheName );
|
||
|
if ( fileNames.isEmpty() ) return;
|
||
|
|
||
|
QString ensembleName = "Ensemble Well Logs";
|
||
|
if ( ensembleName.isEmpty() ) return;
|
||
|
|
||
|
std::vector<RimWellLogFile*> cases;
|
||
|
for ( QString fileNames : fileNames )
|
||
|
{
|
||
|
QString errorMessage;
|
||
|
RimWellLogFile* logFileInfo = RimWellLogFile::readWellLogFile( fileNames, &errorMessage );
|
||
|
cases.push_back( logFileInfo );
|
||
|
if ( !errorMessage.isEmpty() )
|
||
|
{
|
||
|
RiaLogging::warning( errorMessage );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ( cases.empty() ) return;
|
||
|
|
||
|
RimEnsembleWellLogs* ensemble = new RimEnsembleWellLogs;
|
||
|
ensemble->setName( ensembleName );
|
||
|
for ( auto wellLogFile : cases )
|
||
|
ensemble->addWellLogFile( wellLogFile );
|
||
|
|
||
|
RimProject::current()->activeOilField()->ensembleWellLogsCollection->addEnsembleWellLogs( ensemble );
|
||
|
RimProject::current()->activeOilField()->ensembleWellLogsCollection->updateConnectedEditors();
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RicImportEnsembleWellLogsFeature::setupActionLook( QAction* actionToSetup )
|
||
|
{
|
||
|
actionToSetup->setIcon( QIcon( ":/LasFile16x16.png" ) );
|
||
|
actionToSetup->setText( "Import Ensemble Well Logs" );
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
QStringList RicImportEnsembleWellLogsFeature::runRecursiveFileSearchDialog( const QString& dialogTitle,
|
||
|
const QString& pathCacheName )
|
||
|
{
|
||
|
RiaApplication* app = RiaApplication::instance();
|
||
|
QString defaultDir = app->lastUsedDialogDirectory( pathCacheName );
|
||
|
|
||
|
RicRecursiveFileSearchDialogResult result = RicRecursiveFileSearchDialog::runRecursiveSearchDialog( nullptr,
|
||
|
dialogTitle,
|
||
|
defaultDir,
|
||
|
m_pathFilter,
|
||
|
m_fileNameFilter,
|
||
|
QStringList()
|
||
|
<< ".LAS"
|
||
|
<< ".las" );
|
||
|
|
||
|
// Remember filters
|
||
|
m_pathFilter = result.pathFilter;
|
||
|
m_fileNameFilter = result.fileNameFilter;
|
||
|
|
||
|
if ( !result.ok ) return QStringList();
|
||
|
|
||
|
// Remember the path to next time
|
||
|
app->setLastUsedDialogDirectory( pathCacheName, QFileInfo( result.rootDir ).absoluteFilePath() );
|
||
|
|
||
|
return result.files;
|
||
|
}
|