2017-07-26 09:41:17 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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 "RicfCommandFileExecutor.h"
|
|
|
|
|
2017-07-27 07:26:59 -05:00
|
|
|
#include "RiaLogging.h"
|
|
|
|
|
2018-02-05 01:47:10 -06:00
|
|
|
#include "RicfCloseProject.h"
|
|
|
|
#include "RicfCommandObject.h"
|
|
|
|
#include "RicfOpenProject.h"
|
|
|
|
#include "RicfReplaceCase.h"
|
|
|
|
#include "RifcCommandFileReader.h"
|
|
|
|
|
2017-07-26 09:41:17 -05:00
|
|
|
namespace caf {
|
|
|
|
template<>
|
|
|
|
void RicfCommandFileExecutor::ExportTypeEnum::setUp()
|
|
|
|
{
|
|
|
|
addItem(RicfCommandFileExecutor::COMPLETIONS, "COMPLETIONS", "Completions");
|
|
|
|
addItem(RicfCommandFileExecutor::PROPERTIES, "PROPERTIES", "Properties");
|
|
|
|
addItem(RicfCommandFileExecutor::SNAPSHOTS, "SNAPSHOTS", "Snapshots");
|
|
|
|
addItem(RicfCommandFileExecutor::STATISTICS, "STATISTICS", "Statistics");
|
|
|
|
setDefault(RicfCommandFileExecutor::COMPLETIONS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RicfCommandFileExecutor::RicfCommandFileExecutor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RicfCommandFileExecutor::~RicfCommandFileExecutor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicfCommandFileExecutor::executeCommands(QTextStream& stream)
|
|
|
|
{
|
2018-02-05 01:47:10 -06:00
|
|
|
std::vector<RicfCommandObject*> executableCommands;
|
2017-07-26 09:41:17 -05:00
|
|
|
{
|
2018-02-05 01:47:10 -06:00
|
|
|
std::vector<RicfCommandObject*> fileCommands = RicfCommandFileReader::readCommands(stream, caf::PdmDefaultObjectFactory::instance(), &m_messages);
|
|
|
|
for (auto message : m_messages.m_messages)
|
2017-07-27 07:26:59 -05:00
|
|
|
{
|
2018-02-05 01:47:10 -06:00
|
|
|
if (message.first == RicfMessages::MESSAGE_WARNING)
|
|
|
|
{
|
|
|
|
RiaLogging::warning(QString("Command file parsing warning: %1").arg(message.second));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RiaLogging::error(QString("Command file parsing error: %1").arg(message.second));
|
|
|
|
|
|
|
|
for (auto& command : fileCommands)
|
|
|
|
{
|
|
|
|
delete command;
|
|
|
|
command = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2017-07-27 07:26:59 -05:00
|
|
|
}
|
2018-02-05 01:47:10 -06:00
|
|
|
|
|
|
|
executableCommands = RicfCommandFileExecutor::prepareFileCommandsForExecution(fileCommands);
|
2017-07-26 09:41:17 -05:00
|
|
|
}
|
2018-02-05 01:47:10 -06:00
|
|
|
|
|
|
|
for (auto& command : executableCommands)
|
2017-07-26 09:41:17 -05:00
|
|
|
{
|
|
|
|
command->execute();
|
2018-02-05 01:47:10 -06:00
|
|
|
|
|
|
|
delete command;
|
|
|
|
command = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All command objects should be deleted and grounded at this point
|
|
|
|
for (auto c : executableCommands)
|
|
|
|
{
|
|
|
|
CAF_ASSERT(c == nullptr);
|
2017-07-26 09:41:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicfCommandFileExecutor::setExportPath(ExportType type, QString path)
|
|
|
|
{
|
|
|
|
m_exportPaths[type] = path;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-07-28 04:28:55 -05:00
|
|
|
QString RicfCommandFileExecutor::getExportPath(ExportType type) const
|
2017-07-26 09:41:17 -05:00
|
|
|
{
|
|
|
|
auto it = m_exportPaths.find(type);
|
|
|
|
QString path;
|
|
|
|
if (it != m_exportPaths.end())
|
|
|
|
{
|
|
|
|
path = it->second;
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2017-07-28 04:28:55 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicfCommandFileExecutor::setLastProjectPath(const QString& path)
|
|
|
|
{
|
|
|
|
m_lastProjectPath = path;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
QString RicfCommandFileExecutor::getLastProjectPath() const
|
|
|
|
{
|
|
|
|
return m_lastProjectPath;
|
|
|
|
}
|
|
|
|
|
2017-07-26 09:41:17 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RicfCommandFileExecutor* RicfCommandFileExecutor::instance()
|
|
|
|
{
|
|
|
|
static RicfCommandFileExecutor* commandFileExecutorInstance = new RicfCommandFileExecutor();
|
|
|
|
return commandFileExecutorInstance;
|
|
|
|
}
|
2018-02-05 01:47:10 -06:00
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
std::vector<RicfCommandObject*> RicfCommandFileExecutor::prepareFileCommandsForExecution(const std::vector<RicfCommandObject*>& commandsReadFromFile)
|
|
|
|
{
|
|
|
|
// This function will merge multiple RicfSingleCaseReplace object by a single RicfMultiCaseReplace object
|
|
|
|
// A command file version for multi case replace was rejected by @hhgs 2018-02-02
|
|
|
|
//
|
|
|
|
// The reason for this is based on two requirements
|
|
|
|
// 1. Ability to aggregate info from multiple replaceCase() statements in a command file
|
|
|
|
// 2. Improve performance, as a replace case is implemented by reading a project file from XML and replace file paths
|
|
|
|
// during project loading
|
|
|
|
|
|
|
|
std::vector<RicfCommandObject*> executableCommands;
|
|
|
|
{
|
|
|
|
std::vector<RicfSingleCaseReplace*> objectsToBeDeleted;
|
|
|
|
std::vector<RicfSingleCaseReplace*> batchOfReplaceCaseFileObjects;
|
|
|
|
|
|
|
|
std::map<int, QString> aggregatedCasePathPairs;
|
|
|
|
|
|
|
|
for (RicfCommandObject* command : commandsReadFromFile)
|
|
|
|
{
|
|
|
|
RicfSingleCaseReplace* fileReplaceCase = dynamic_cast<RicfSingleCaseReplace*>(command);
|
|
|
|
if (fileReplaceCase)
|
|
|
|
{
|
|
|
|
aggregatedCasePathPairs[fileReplaceCase->caseId()] = fileReplaceCase->filePath();
|
|
|
|
|
|
|
|
batchOfReplaceCaseFileObjects.push_back(fileReplaceCase);
|
|
|
|
objectsToBeDeleted.push_back(fileReplaceCase);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!batchOfReplaceCaseFileObjects.empty())
|
|
|
|
{
|
|
|
|
RicfMultiCaseReplace* multiCaseReplace = new RicfMultiCaseReplace;
|
|
|
|
multiCaseReplace->setCaseReplacePairs(aggregatedCasePathPairs);
|
|
|
|
|
|
|
|
executableCommands.push_back(multiCaseReplace);
|
|
|
|
|
|
|
|
batchOfReplaceCaseFileObjects.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dynamic_cast<RicfOpenProject*>(command) || dynamic_cast<RicfCloseProject*>(command))
|
|
|
|
{
|
|
|
|
// Reset aggregation when openProject or closeProject is issued
|
|
|
|
aggregatedCasePathPairs.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
executableCommands.push_back(command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete RicfSingleCaseReplace objects, as they are replaced by RicfMultiCaseReplace
|
|
|
|
for (auto objToDelete : objectsToBeDeleted)
|
|
|
|
{
|
|
|
|
delete objToDelete;
|
|
|
|
objToDelete = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return executableCommands;
|
|
|
|
}
|