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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RicfMessages.h"
|
|
|
|
|
|
|
|
#include "cafAppEnum.h"
|
|
|
|
|
2017-07-28 05:54:21 -05:00
|
|
|
#include <map>
|
|
|
|
|
2017-07-26 09:41:17 -05:00
|
|
|
class RicfCommandFileExecutor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum ExportType {
|
|
|
|
COMPLETIONS,
|
|
|
|
SNAPSHOTS,
|
|
|
|
PROPERTIES,
|
|
|
|
STATISTICS
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef caf::AppEnum<ExportType> ExportTypeEnum;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RicfCommandFileExecutor();
|
|
|
|
~RicfCommandFileExecutor();
|
|
|
|
|
|
|
|
void executeCommands(QTextStream& stream);
|
|
|
|
void setExportPath(ExportType type, QString path);
|
2017-07-28 04:28:55 -05:00
|
|
|
QString getExportPath(ExportType type) const;
|
|
|
|
void setLastProjectPath(const QString& path);
|
|
|
|
QString getLastProjectPath() const;
|
2017-07-26 09:41:17 -05:00
|
|
|
|
|
|
|
static RicfCommandFileExecutor* instance();
|
|
|
|
|
|
|
|
private:
|
|
|
|
RicfMessages m_messages;
|
|
|
|
|
|
|
|
std::map<ExportType, QString> m_exportPaths;
|
2017-07-28 04:28:55 -05:00
|
|
|
QString m_lastProjectPath;
|
2017-07-26 09:41:17 -05:00
|
|
|
};
|