mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1665 Add replaceSourceCases command to command file interface
This commit is contained in:
@@ -10,6 +10,7 @@ ${CMAKE_CURRENT_LIST_DIR}/RicfExportWellPathCompletions.h
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RicfLoadCase.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfLoadCase.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfOpenProject.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfOpenProject.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceCase.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceCase.h
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceSourceCases.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfRunOctaveScript.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfRunOctaveScript.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfSetExportFolder.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfSetExportFolder.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfSetMainWindowSize.h
|
${CMAKE_CURRENT_LIST_DIR}/RicfSetMainWindowSize.h
|
||||||
@@ -28,6 +29,7 @@ ${CMAKE_CURRENT_LIST_DIR}/RicfExportWellPathCompletions.cpp
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RicfLoadCase.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfLoadCase.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfOpenProject.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfOpenProject.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceCase.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceCase.cpp
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RicfReplaceSourceCases.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfRunOctaveScript.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfRunOctaveScript.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfSetExportFolder.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfSetExportFolder.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RicfSetMainWindowSize.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RicfSetMainWindowSize.cpp
|
||||||
|
|||||||
@@ -0,0 +1,69 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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 "RicfReplaceSourceCases.h"
|
||||||
|
|
||||||
|
#include "RicfCommandFileExecutor.h"
|
||||||
|
|
||||||
|
#include "RiaApplication.h"
|
||||||
|
#include "RiaLogging.h"
|
||||||
|
#include "RiaProjectModifier.h"
|
||||||
|
|
||||||
|
CAF_PDM_SOURCE_INIT(RicfReplaceSourceCases, "replaceSourceCases");
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RicfReplaceSourceCases::RicfReplaceSourceCases()
|
||||||
|
{
|
||||||
|
RICF_InitField(&m_caseGroupId, "group", -1, "Group ID", "", "", "");
|
||||||
|
RICF_InitField(&m_gridListFile, "gridListFile", QString(), "Grid List File", "", "", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RicfReplaceSourceCases::execute()
|
||||||
|
{
|
||||||
|
if (m_gridListFile().isNull())
|
||||||
|
{
|
||||||
|
RiaLogging::error("replaceSourceCases: Required parameter gridListFile.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString lastProjectPath = RicfCommandFileExecutor::instance()->getLastProjectPath();
|
||||||
|
if (lastProjectPath.isNull())
|
||||||
|
{
|
||||||
|
RiaLogging::error("replaceSourceCases: 'openProject' must be called before 'replaceSourceCases' to specify project file to replace cases in.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
cvf::ref<RiaProjectModifier> projectModifier;
|
||||||
|
|
||||||
|
std::vector<QString> listFileNames = RiaApplication::readFileListFromTextFile(m_gridListFile());
|
||||||
|
if (m_caseGroupId() == -1)
|
||||||
|
{
|
||||||
|
projectModifier->setReplaceSourceCasesFirstOccurrence(listFileNames);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
projectModifier->setReplaceSourceCasesById(m_caseGroupId(), listFileNames);
|
||||||
|
}
|
||||||
|
|
||||||
|
RiaApplication::instance()->loadProject(lastProjectPath, RiaApplication::PLA_CALCULATE_STATISTICS, projectModifier.p());
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "RicfCommandObject.h"
|
||||||
|
|
||||||
|
#include "cafPdmField.h"
|
||||||
|
|
||||||
|
class RicfReplaceSourceCases : public RicfCommandObject
|
||||||
|
{
|
||||||
|
CAF_PDM_HEADER_INIT;
|
||||||
|
|
||||||
|
public:
|
||||||
|
RicfReplaceSourceCases();
|
||||||
|
|
||||||
|
virtual void execute() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
caf::PdmField<QString> m_gridListFile;
|
||||||
|
caf::PdmField<int> m_caseGroupId;
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user