///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicfExportVisibleCells.h" #include "RiaFilePathTools.h" #include "RiaViewRedrawScheduler.h" #include "ExportCommands/RicSaveEclipseInputVisibleCellsFeature.h" #include "ExportCommands/RicSaveEclipseInputVisibleCellsUi.h" #include "RicfApplicationTools.h" #include "RicfCommandFileExecutor.h" #include "RiaApplication.h" #include "RiaLogging.h" #include "RimEclipseCase.h" #include "RimEclipseCaseCollection.h" #include "RimEclipseCellColors.h" #include "RimEclipseView.h" #include "RimOilField.h" #include "RimProject.h" #include "RifEclipseInputFileTools.h" #include "cafPdmFieldScriptingCapability.h" #include #include CAF_PDM_SOURCE_INIT( RicfExportVisibleCells, "exportVisibleCells" ); namespace caf { template <> void AppEnum::setUp() { addItem( RicfExportVisibleCells::ExportKeyword::FLUXNUM, "FLUXNUM", "FLUXNUM" ); addItem( RicfExportVisibleCells::ExportKeyword::MULTNUM, "MULTNUM", "MULTNUM" ); addItem( RicfExportVisibleCells::ExportKeyword::ACTNUM, "ACTNUM", "ACTNUM" ); setDefault( RicfExportVisibleCells::ExportKeyword::FLUXNUM ); } } // namespace caf //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RicfExportVisibleCells::RicfExportVisibleCells() { CAF_PDM_InitScriptableField( &m_caseId, "caseId", -1, "Case ID" ); CAF_PDM_InitScriptableField( &m_viewId, "viewId", -1, "View ID" ); CAF_PDM_InitScriptableField( &m_viewName, "viewName", QString(), "View Name" ); CAF_PDM_InitScriptableField( &m_exportKeyword, "exportKeyword", caf::AppEnum(), "Export Keyword" ); CAF_PDM_InitScriptableField( &m_visibleActiveCellsValue, "visibleActiveCellsValue", 1, "Visible Active Cells Value" ); CAF_PDM_InitScriptableField( &m_hiddenActiveCellsValue, "hiddenActiveCellsValue", 0, "Hidden Active Cells Value" ); CAF_PDM_InitScriptableField( &m_inactiveCellsValue, "inactiveCellsValue", 0, "Inactive Cells Value" ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmScriptResponse RicfExportVisibleCells::execute() { if ( m_caseId < 0 || ( m_viewName().isEmpty() && m_viewId() < 0 ) ) { QString error( "exportVisibleCells: CaseId or view name or view id not specified" ); RiaLogging::error( error ); return caf::PdmScriptResponse( caf::PdmScriptResponse::COMMAND_ERROR, error ); } RimEclipseView* eclipseView = nullptr; if ( m_viewId() >= 0 ) { eclipseView = RicfApplicationTools::viewFromCaseIdAndViewId( m_caseId, m_viewId() ); } else { eclipseView = RicfApplicationTools::viewFromCaseIdAndViewName( m_caseId, m_viewName ); } if ( !eclipseView ) { QString error( QString( "exportVisibleCells: Could not find view of id %1 or named '%2' in case ID %3" ).arg( m_viewId ).arg( m_viewName ).arg( m_caseId ) ); RiaLogging::error( error ); return caf::PdmScriptResponse( caf::PdmScriptResponse::COMMAND_ERROR, error ); } QString exportFolder = RicfCommandFileExecutor::instance()->getExportPath( RicfCommandFileExecutor::ExportType::CELLS ); if ( exportFolder.isNull() ) { exportFolder = RiaApplication::instance()->createAbsolutePathFromProjectRelativePath( "visibleCells" ); } RiaViewRedrawScheduler::instance()->clearViewsScheduledForUpdate(); RicSaveEclipseInputVisibleCellsUi exportSettings; buildExportSettings( exportFolder, &exportSettings ); RicSaveEclipseInputVisibleCellsFeature::executeCommand( eclipseView, exportSettings, "exportVisibleCells" ); return caf::PdmScriptResponse(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicfExportVisibleCells::buildExportSettings( const QString& exportFolder, RicSaveEclipseInputVisibleCellsUi* exportSettings ) { QDir baseDir( exportFolder ); exportSettings->exportFilename = baseDir.absoluteFilePath( QString( "%1.grdecl" ).arg( m_exportKeyword().text() ) ); if ( m_exportKeyword == ExportKeyword::FLUXNUM ) exportSettings->exportKeyword = RicSaveEclipseInputVisibleCellsUi::FLUXNUM; else if ( m_exportKeyword == ExportKeyword::MULTNUM ) exportSettings->exportKeyword = RicSaveEclipseInputVisibleCellsUi::MULTNUM; else if ( m_exportKeyword == ExportKeyword::ACTNUM ) exportSettings->exportKeyword = RicSaveEclipseInputVisibleCellsUi::ACTNUM; exportSettings->visibleActiveCellsValue = m_visibleActiveCellsValue; exportSettings->hiddenActiveCellsValue = m_hiddenActiveCellsValue; exportSettings->inactiveCellsValue = m_inactiveCellsValue; }