QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsvirtuallayertask.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvirtuallayertask.cpp - description
3  -------------------
4  begin : Jan 19, 2018
5  copyright : (C) 2017 by Paul Blottiere
6  email : [email protected]
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 
23  : mDefinition( definition )
24 {
25  mDefinition.setLazy( true );
27  mLayer = qgis::make_unique<QgsVectorLayer>( mDefinition.toString(), QStringLiteral( "layer" ), QLatin1Literal( "virtual" ), options );
28 }
29 
31 {
32  bool rc = false;
33  try
34  {
35  mLayer->reload(); // blocking call because the loading is postponed
36  rc = mLayer->isValid();
37  }
38  catch ( std::exception &e )
39  {
40  QgsDebugMsg( QStringLiteral( "Reload error: %1" ).arg( e.what() ) );
41  setExceptionText( e.what() );
42  rc = false;
43  }
44  return rc;
45 }
46 
48 {
49  return mDefinition;
50 }
51 
53 {
54  return mLayer.get();
55 }
56 
58 {
59  return mLayer.release();
60 }
61 
63 {
64  mLayer->dataProvider()->cancelReload();
66 }
67 
69 {
70  return mExceptionText;
71 }
72 
74 {
75  mExceptionText = exceptionText;
76 }
bool run() override
Reloads the data.
Setting options for loading vector layers.
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
QString toString() const
Convert into a QString that can be read by the virtual layer provider.
QString exceptionText() const
Returns the exception text or an empty string if no exceptions were raised.
QgsVectorLayer * takeLayer()
Returns the underlying virtual layer and ownership.
Contains information about the context in which a coordinate transform is executed.
QgsVectorLayer * layer()
Returns the underlying virtual layer.
virtual void cancel()
Notifies the task that it should terminate.
void cancel() override
Cancels the pending query and the parent task.
QgsVirtualLayerDefinition definition() const
Returns the virtual layer definition.
void setLazy(bool lazy)
Sets the lazy mode.
Represents a vector layer which manages a vector based data sets.
QgsVirtualLayerTask(const QgsVirtualLayerDefinition &definition)
Constructor.
void setExceptionText(const QString &exceptionText)
Sets the exceptionText.
Class to manipulate the definition of a virtual layer.