Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsproxyprogresstask.cpp 3 : : ------------------------ 4 : : begin : August 2018 5 : : copyright : (C) 2018 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 "qgsproxyprogresstask.h" 19 : : #include "qgsapplication.h" 20 : : 21 : 0 : QgsProxyProgressTask::QgsProxyProgressTask( const QString &description ) 22 : 0 : : QgsTask( description, QgsTask::Flags() ) 23 : 0 : { 24 : 0 : } 25 : : 26 : 0 : void QgsProxyProgressTask::finalize( bool result ) 27 : : { 28 : 0 : QMutexLocker lock( &mNotFinishedMutex ); 29 : 0 : mAlreadyFinished = true; 30 : : 31 : 0 : mResult = result; 32 : 0 : mNotFinishedWaitCondition.wakeAll(); 33 : 0 : } 34 : : 35 : 0 : bool QgsProxyProgressTask::run() 36 : : { 37 : 0 : mNotFinishedMutex.lock(); 38 : 0 : if ( !mAlreadyFinished ) 39 : : { 40 : 0 : mNotFinishedWaitCondition.wait( &mNotFinishedMutex ); 41 : 0 : } 42 : 0 : mNotFinishedMutex.unlock(); 43 : : 44 : 0 : return mResult; 45 : : } 46 : : 47 : 0 : void QgsProxyProgressTask::setProxyProgress( double progress ) 48 : : { 49 : 0 : QMetaObject::invokeMethod( this, "setProgress", Qt::AutoConnection, Q_ARG( double, progress ) ); 50 : 0 : } 51 : : 52 : : // 53 : : // QgsScopedProxyProgressTask 54 : : // 55 : : 56 : 0 : QgsScopedProxyProgressTask::QgsScopedProxyProgressTask( const QString &description ) 57 : 0 : : mTask( new QgsProxyProgressTask( description ) ) 58 : : { 59 : 0 : QgsApplication::taskManager()->addTask( mTask ); 60 : 0 : } 61 : : 62 : 0 : QgsScopedProxyProgressTask::~QgsScopedProxyProgressTask() 63 : : { 64 : 0 : mTask->finalize( true ); 65 : 0 : } 66 : : 67 : 0 : void QgsScopedProxyProgressTask::setProgress( double progress ) 68 : : { 69 : 0 : mTask->setProxyProgress( progress ); 70 : 0 : }