Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprocessingalgrunnertask.cpp 3 : : ------------------------------ 4 : : begin : May 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsprocessingalgrunnertask.h" 19 : : #include "qgsprocessingfeedback.h" 20 : : #include "qgsprocessingcontext.h" 21 : : #include "qgsprocessingalgorithm.h" 22 : : #include "qgsprocessingutils.h" 23 : : #include "qgsvectorlayer.h" 24 : : 25 : 0 : QgsProcessingAlgRunnerTask::QgsProcessingAlgRunnerTask( const QgsProcessingAlgorithm *algorithm, const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 26 : 0 : : QgsTask( tr( "Executing “%1”" ).arg( algorithm->displayName() ), algorithm->flags() & QgsProcessingAlgorithm::FlagCanCancel ? QgsTask::CanCancel : QgsTask::Flag() ) 27 : 0 : , mParameters( parameters ) 28 : 0 : , mContext( context ) 29 : 0 : , mFeedback( feedback ) 30 : 0 : { 31 : 0 : if ( !mFeedback ) 32 : : { 33 : 0 : mOwnedFeedback.reset( new QgsProcessingFeedback() ); 34 : 0 : mFeedback = mOwnedFeedback.get(); 35 : 0 : } 36 : : try 37 : : { 38 : 0 : mAlgorithm.reset( algorithm->create() ); 39 : 0 : if ( !( mAlgorithm && mAlgorithm->prepare( mParameters, context, mFeedback ) ) ) 40 : 0 : cancel(); 41 : 0 : } 42 : : catch ( QgsProcessingException &e ) 43 : : { 44 : 0 : QgsMessageLog::logMessage( e.what(), QObject::tr( "Processing" ), Qgis::Critical ); 45 : 0 : mFeedback->reportError( e.what() ); 46 : 0 : cancel(); 47 : 0 : } 48 : 0 : } 49 : : 50 : 0 : void QgsProcessingAlgRunnerTask::cancel() 51 : : { 52 : 0 : if ( mFeedback ) 53 : 0 : mFeedback->cancel(); 54 : 0 : QgsTask::cancel(); 55 : 0 : } 56 : : 57 : 0 : bool QgsProcessingAlgRunnerTask::run() 58 : : { 59 : 0 : if ( isCanceled() ) 60 : 0 : return false; 61 : : 62 : 0 : connect( mFeedback, &QgsFeedback::progressChanged, this, &QgsProcessingAlgRunnerTask::setProgress ); 63 : 0 : bool ok = false; 64 : : try 65 : : { 66 : 0 : mResults = mAlgorithm->runPrepared( mParameters, mContext, mFeedback ); 67 : 0 : ok = true; 68 : 0 : } 69 : : catch ( QgsProcessingException &e ) 70 : : { 71 : 0 : QgsMessageLog::logMessage( e.what(), QObject::tr( "Processing" ), Qgis::Critical ); 72 : 0 : mFeedback->reportError( e.what() ); 73 : 0 : return false; 74 : 0 : } 75 : 0 : return ok && !mFeedback->isCanceled(); 76 : 0 : } 77 : : 78 : 0 : void QgsProcessingAlgRunnerTask::finished( bool result ) 79 : : { 80 : : Q_UNUSED( result ) 81 : 0 : QVariantMap ppResults; 82 : 0 : if ( result ) 83 : : { 84 : 0 : ppResults = mAlgorithm->postProcess( mContext, mFeedback ); 85 : 0 : } 86 : 0 : emit executed( result, !ppResults.isEmpty() ? ppResults : mResults ); 87 : 0 : }