Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvirtuallayertask.cpp - description 3 : : ------------------- 4 : : begin : Jan 19, 2018 5 : : copyright : (C) 2017 by Paul Blottiere 6 : : email : blottiere.paul@gmail.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 "qgsvirtuallayertask.h" 19 : : #include "qgslogger.h" 20 : : #include "qgsvectorlayer.h" 21 : : 22 : 0 : QgsVirtualLayerTask::QgsVirtualLayerTask( const QgsVirtualLayerDefinition &definition ) 23 : 0 : : mDefinition( definition ) 24 : 0 : { 25 : 0 : mDefinition.setLazy( true ); 26 : 0 : QgsVectorLayer::LayerOptions options { QgsCoordinateTransformContext() }; 27 : 0 : mLayer = std::make_unique<QgsVectorLayer>( mDefinition.toString(), QStringLiteral( "layer" ), QLatin1String( "virtual" ), options ); 28 : 0 : } 29 : : 30 : 0 : bool QgsVirtualLayerTask::run() 31 : : { 32 : 0 : bool rc = false; 33 : : try 34 : : { 35 : 0 : mLayer->reload(); // blocking call because the loading is postponed 36 : 0 : rc = mLayer->isValid(); 37 : 0 : } 38 : : catch ( std::exception &e ) 39 : : { 40 : 0 : QgsDebugMsg( QStringLiteral( "Reload error: %1" ).arg( e.what() ) ); 41 : 0 : setExceptionText( e.what() ); 42 : 0 : rc = false; 43 : 0 : } 44 : 0 : return rc; 45 : 0 : } 46 : : 47 : 0 : QgsVirtualLayerDefinition QgsVirtualLayerTask::definition() const 48 : : { 49 : 0 : return mDefinition; 50 : : } 51 : : 52 : 0 : QgsVectorLayer *QgsVirtualLayerTask::layer() 53 : : { 54 : 0 : return mLayer.get(); 55 : : } 56 : : 57 : 0 : QgsVectorLayer *QgsVirtualLayerTask::takeLayer() 58 : : { 59 : 0 : return mLayer.release(); 60 : : } 61 : : 62 : 0 : void QgsVirtualLayerTask::cancel() 63 : : { 64 : 0 : mLayer->dataProvider()->cancelReload(); 65 : 0 : QgsTask::cancel(); 66 : 0 : } 67 : : 68 : 0 : QString QgsVirtualLayerTask::exceptionText() const 69 : : { 70 : 0 : return mExceptionText; 71 : : } 72 : : 73 : 0 : void QgsVirtualLayerTask::setExceptionText( const QString &exceptionText ) 74 : : { 75 : 0 : mExceptionText = exceptionText; 76 : 0 : }