ResInsight/ApplicationLibCode/Commands/ApplicationCommands/RicRunCommandFileFeature.cpp
Magne Sjaastad ef637e3053
Move stream operator from AppEnum header
This PR will reduce the compile time of code using AppEnum. 

* AppEnum: Move QTextStream operator to avoid include of QTextStream
* Avoid use of iostream in cafAssert
rator to avoid include of QTextStream

Include file profiling shows that include of QTextStream is a performance issue. Create a non-templated base class for AppEnum. Implement the QTextStream operator for this interface.
2024-03-25 15:14:04 +01:00

73 lines
2.7 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2018- 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 "RicRunCommandFileFeature.h"
#include "RiaApplication.h"
#include "RicfCommandFileExecutor.h"
#include "RiuFileDialogTools.h"
#include <QAction>
#include <QDir>
#include <QFileInfo>
#include <QTextStream>
CAF_CMD_SOURCE_INIT( RicRunCommandFileFeature, "RicRunCommandFileFeature" );
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicRunCommandFileFeature::onActionTriggered( bool isChecked )
{
RiaApplication* app = RiaApplication::instance();
QString defaultDir = app->lastUsedDialogDirectoryWithFallbackToProjectFolder( "COMMAND_FILE" );
QString fileName = RiuFileDialogTools::getOpenFileName( nullptr,
"Open ResInsight Command File",
defaultDir,
"ResInsight Command File (*.txt);;All files(*.*)" );
if ( !fileName.isEmpty() )
{
QFile file( fileName );
if ( file.open( QIODevice::ReadOnly | QIODevice::Text ) )
{
QTextStream in( &file );
QString applicationPath = QDir::currentPath();
QFileInfo fi( fileName );
QDir::setCurrent( fi.absolutePath() );
RicfCommandFileExecutor::instance()->executeCommands( in );
QDir::setCurrent( applicationPath );
app->setLastUsedDialogDirectory( "COMMAND_FILE", QFileInfo( fileName ).absolutePath() );
}
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicRunCommandFileFeature::setupActionLook( QAction* actionToSetup )
{
actionToSetup->setText( "Run Command File" );
}