QGIS API Documentation  3.2.0-Bonn (bc43194)
qgsvectorlayerfeaturecounter.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvectorlayerfeaturecounter.cpp
3  ---------------------
4  begin : May 2017
5  copyright : (C) 2017 by Matthias Kuhn
6  email : matthias at opengis dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
16 
18  : QgsTask( tr( "Counting features in %1" ).arg( layer->name() ), QgsTask::CanCancel )
19  , mSource( new QgsVectorLayerFeatureSource( layer ) )
20  , mRenderer( layer->renderer()->clone() )
21  , mExpressionContext( context )
22  , mFeatureCount( layer->featureCount() )
23 {
24  if ( !mExpressionContext.scopeCount() )
25  {
26  mExpressionContext = layer->createExpressionContext();
27  }
28 }
29 
31 {
32  QgsLegendSymbolList symbolList = mRenderer->legendSymbolItems();
33  QgsLegendSymbolList::const_iterator symbolIt = symbolList.constBegin();
34 
35  for ( ; symbolIt != symbolList.constEnd(); ++symbolIt )
36  {
37  mSymbolFeatureCountMap.insert( symbolIt->label(), 0 );
38  }
39 
40  // If there are no features to be counted, we can spare us the trouble
41  if ( mFeatureCount > 0 )
42  {
43  int featuresCounted = 0;
44 
45  // Renderer (rule based) may depend on context scale, with scale is ignored if 0
46  QgsRenderContext renderContext;
47  renderContext.setRendererScale( 0 );
48  renderContext.setExpressionContext( mExpressionContext );
49 
50  QgsFeatureRequest request;
51  if ( !mRenderer->filterNeedsGeometry() )
53  request.setSubsetOfAttributes( mRenderer->usedAttributes( renderContext ), mSource->fields() );
54  QgsFeatureIterator fit = mSource->getFeatures( request );
55 
56  // TODO: replace QgsInterruptionChecker with QgsFeedback
57  // fit.setInterruptionChecker( mFeedback );
58 
59  mRenderer->startRender( renderContext, mSource->fields() );
60 
61  double progress = 0;
62  QgsFeature f;
63  while ( fit.nextFeature( f ) )
64  {
65  renderContext.expressionContext().setFeature( f );
66  QSet<QString> featureKeyList = mRenderer->legendKeysForFeature( f, renderContext );
67  Q_FOREACH ( const QString &key, featureKeyList )
68  {
69  mSymbolFeatureCountMap[key] += 1;
70  }
71  ++featuresCounted;
72 
73  double p = ( static_cast< double >( featuresCounted ) / mFeatureCount ) * 100;
74  if ( p - progress > 1 )
75  {
76  progress = p;
77  setProgress( progress );
78  }
79 
80  if ( isCanceled() )
81  {
82  mRenderer->stopRender( renderContext );
83  return false;
84  }
85  }
86  mRenderer->stopRender( renderContext );
87  }
88 
89  setProgress( 100 );
90 
91  emit symbolsCounted();
92  return true;
93 }
94 
96 {
97  return mSymbolFeatureCountMap;
98 }
99 
100 long QgsVectorLayerFeatureCounter::featureCount( const QString &legendKey ) const
101 {
102  return mSymbolFeatureCountMap.value( legendKey, -1 );
103 }
Wrapper for iterator of features from vector data provider or vector layer.
void setProgress(double progress)
Sets the task&#39;s current progress.
QList< QgsLegendSymbolItem > QgsLegendSymbolList
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
bool run() override
Performs the task&#39;s operation.
void setRendererScale(double scale)
Sets the renderer map scale.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
bool isCanceled() const
Will return true if task should terminate ASAP.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:62
QgsVectorLayerFeatureCounter(QgsVectorLayer *layer, const QgsExpressionContext &context=QgsExpressionContext())
Create a new feature counter for layer.
void symbolsCounted()
Emitted when the symbols have been counted.
long featureCount(const QString &legendKey) const
Gets the feature count for a particular legendKey.
int scopeCount() const
Returns the number of scopes contained in the context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Abstract base class for long running background tasks.
This class wraps a request for features to a vector layer (or directly its vector data provider)...
Partial snapshot of vector layer&#39;s state (only the members necessary for access to features) ...
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QgsExpressionContext & expressionContext()
Gets the expression context.
Contains information about the context of a rendering operation.
double progress() const
Returns the task&#39;s progress (between 0.0 and 100.0)
QHash< QString, long > symbolFeatureCountMap() const
Gets the count for each symbol.
bool nextFeature(QgsFeature &f)
Geometry is not required. It may still be returned if e.g. required for a filter condition.
Represents a vector layer which manages a vector based data sets.
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
QgsFeatureRequest & setFlags(QgsFeatureRequest::Flags flags)
Sets flags that affect how features will be fetched.