Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsnetworkcontentfetchertask.cpp 3 : : ------------------- 4 : : begin : March 2018 5 : : copyright : (C) 2018 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : 8 : : ***************************************************************************/ 9 : : 10 : : /*************************************************************************** 11 : : * * 12 : : * This program is free software; you can redistribute it and/or modify * 13 : : * it under the terms of the GNU General Public License as published by * 14 : : * the Free Software Foundation; either version 2 of the License, or * 15 : : * (at your option) any later version. * 16 : : * * 17 : : ***************************************************************************/ 18 : : 19 : : #include "qgsnetworkcontentfetchertask.h" 20 : : #include "qgsnetworkcontentfetcher.h" 21 : : 22 : 0 : QgsNetworkContentFetcherTask::QgsNetworkContentFetcherTask( const QUrl &url, const QString &authcfg, QgsTask::Flags flags ) 23 : 0 : : QgsNetworkContentFetcherTask( QNetworkRequest( url ), authcfg, flags ) 24 : : { 25 : 0 : } 26 : : 27 : 0 : QgsNetworkContentFetcherTask::QgsNetworkContentFetcherTask( const QNetworkRequest &request, const QString &authcfg, QgsTask::Flags flags ) 28 : 0 : : QgsTask( tr( "Fetching %1" ).arg( request.url().toString() ), flags ) 29 : 0 : , mRequest( request ) 30 : 0 : , mAuthcfg( authcfg ) 31 : 0 : { 32 : 0 : } 33 : : 34 : 0 : QgsNetworkContentFetcherTask::~QgsNetworkContentFetcherTask() 35 : 0 : { 36 : 0 : if ( mFetcher ) 37 : 0 : mFetcher->deleteLater(); 38 : 0 : } 39 : : 40 : 0 : bool QgsNetworkContentFetcherTask::run() 41 : : { 42 : 0 : mFetcher = new QgsNetworkContentFetcher(); 43 : 0 : QEventLoop loop; 44 : 0 : connect( mFetcher, &QgsNetworkContentFetcher::finished, &loop, &QEventLoop::quit ); 45 : 0 : connect( mFetcher, &QgsNetworkContentFetcher::downloadProgress, this, [ = ]( qint64 bytesReceived, qint64 bytesTotal ) 46 : : { 47 : 0 : if ( !isCanceled() && bytesTotal > 0 ) 48 : : { 49 : 0 : int progress = ( bytesReceived * 100 ) / bytesTotal; 50 : : // don't emit 100% progress reports until completely fetched - otherwise we get 51 : : // intermediate 100% reports from redirects 52 : 0 : if ( progress < 100 ) 53 : 0 : setProgress( progress ); 54 : 0 : } 55 : 0 : } ); 56 : 0 : mFetcher->fetchContent( mRequest, mAuthcfg ); 57 : 0 : loop.exec(); 58 : 0 : if ( !isCanceled() ) 59 : 0 : setProgress( 100 ); 60 : 0 : emit fetched(); 61 : : return true; 62 : 0 : } 63 : : 64 : 0 : void QgsNetworkContentFetcherTask::cancel() 65 : : { 66 : 0 : if ( mFetcher ) 67 : 0 : mFetcher->cancel(); 68 : : 69 : 0 : QgsTask::cancel(); 70 : 0 : } 71 : : 72 : 0 : QNetworkReply *QgsNetworkContentFetcherTask::reply() 73 : : { 74 : 0 : return mFetcher ? mFetcher->reply() : nullptr; 75 : : } 76 : : 77 : 0 : QString QgsNetworkContentFetcherTask::contentAsString() const 78 : : { 79 : 0 : return mFetcher ? mFetcher->contentAsString() : QString(); 80 : : }