QGIS API Documentation 4.1.0-Master (60fea48833c)
Loading...
Searching...
No Matches
qgsvectorlayerfeatureiterator.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsvectorlayerfeatureiterator.h
3 ---------------------
4 begin : Dezember 2012
5 copyright : (C) 2012 by Martin Dobias
6 email : wonder dot sk at gmail dot com
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 ***************************************************************************/
15#ifndef QGSVECTORLAYERFEATUREITERATOR_H
16#define QGSVECTORLAYERFEATUREITERATOR_H
17
18#include <memory>
19
20#include "qgis_core.h"
21#include "qgis_sip.h"
25#include "qgsfeatureiterator.h"
26#include "qgsfeaturesource.h"
27#include "qgsfields.h"
28
29#include <QPointer>
30#include <QSet>
31
32typedef QMap<QgsFeatureId, QgsFeature> QgsFeatureMap SIP_SKIP;
33
35class QgsVectorLayer;
40
42
43#ifdef SIP_RUN
44// clang-format off
45% ModuleHeaderCode
46#include "qgsfeatureiterator.h"
47% End
48// clang-format on
49#endif
50
56{
57 public:
62 explicit QgsVectorLayerFeatureSource( const QgsVectorLayer *layer );
63
66
68
70
72
78 QgsFields fields() const;
79
84
90 QString id() const;
91
92 protected:
93 std::unique_ptr< QgsAbstractFeatureSource > mProviderFeatureSource;
94
95 std::unique_ptr< QgsVectorLayerJoinBuffer > mJoinBuffer;
96
97#ifndef SIP_RUN
98
106 {
110 std::shared_ptr< QgsVectorLayerFeatureSource > joinSource;
111
116 };
117
119 QMap< QString, JoinLayerSource > mJoinSources;
120#endif
121
122 std::unique_ptr< QgsExpressionFieldBuffer > mExpressionFieldBuffer;
123
125
126 QString mId;
127
129
131
132 // A deep-copy is only performed, if the original maps change
133 // see here https://github.com/qgis/Quantum-GIS/pull/673
134 // for explanation
138 QList<QgsField> mAddedAttributes;
141
143
144 private:
145#ifdef SIP_RUN
147#endif
148};
149
154class CORE_EXPORT QgsVectorLayerFeatureIterator : public QgsAbstractFeatureIteratorFromSource<QgsVectorLayerFeatureSource>
155{
156 public:
157 QgsVectorLayerFeatureIterator( QgsVectorLayerFeatureSource *source, bool ownSource, const QgsFeatureRequest &request );
158
160
162 bool rewind() override;
163
165 bool close() override;
166
167 void setInterruptionChecker( QgsFeedback *interruptionChecker ) override SIP_SKIP;
168
173 struct CORE_EXPORT FetchJoinInfo
174 {
183
184#ifndef SIP_RUN
185
192 std::shared_ptr< QgsVectorLayerFeatureSource > joinSource;
193
201#endif
202
205
208
209 void addJoinedAttributesCached( QgsFeature &f, const QVariant &joinValue ) const;
210 void addJoinedAttributesDirect( QgsFeature &f, const QVariant &joinValue ) const;
211 };
212
213 bool isValid() const override;
214
215 protected:
217 bool fetchFeature( QgsFeature &feature ) override;
218
223 bool nextFeatureFilterExpression( QgsFeature &f ) override { return fetchFeature( f ); }
224
226 bool prepareSimplification( const QgsSimplifyMethod &simplifyMethod ) override;
227
229 void rewindEditBuffer() SIP_SKIP;
230
232 void prepareJoin( int fieldIdx ) SIP_SKIP;
233
235 void prepareExpression( int fieldIdx ) SIP_SKIP;
236
238 void prepareFields() SIP_SKIP;
239
241 void prepareField( int fieldIdx ) SIP_SKIP;
242
244 bool fetchNextAddedFeature( QgsFeature &f ) SIP_SKIP;
246 bool fetchNextChangedGeomFeature( QgsFeature &f ) SIP_SKIP;
248 bool fetchNextChangedAttributeFeature( QgsFeature &f ) SIP_SKIP;
250 void useAddedFeature( const QgsFeature &src, QgsFeature &f ) SIP_SKIP;
252 void useChangedAttributeFeature( QgsFeatureId fid, const QgsGeometry &geom, QgsFeature &f ) SIP_SKIP;
254 bool nextFeatureFid( QgsFeature &f ) SIP_SKIP;
256 void addJoinedAttributes( QgsFeature &f ) SIP_SKIP;
257
268 void addVirtualAttributes( QgsFeature &f ) SIP_SKIP;
269
276 void addExpressionAttribute( QgsFeature &f, int attrIndex ) SIP_SKIP;
277
282 void updateChangedAttributes( QgsFeature &f ) SIP_SKIP;
283
288 void updateFeatureGeometry( QgsFeature &f ) SIP_SKIP;
289
294
295 // filter bounding box constraint, in SOURCE CRS
297 bool mHasValidTransform = false;
299
300 // distance within constraint reference geometry and distance IN DESTINATION CRS
303 double mDistanceWithin = 0;
304
305 // only related to editing
309
310 bool mFetchedFid = false; // when iterating by FID: indicator whether it has been fetched yet or not
311
317
319
321
322 private:
323#ifdef SIP_RUN
325#endif
326
327 void createExpressionContext();
328 std::unique_ptr<QgsExpressionContext> mExpressionContext;
329
330 QgsFeedback *mInterruptionChecker = nullptr;
331
332 QList< int > mPreparedFields;
333 QList< int > mFieldsToPrepare;
334
336 QList< FetchJoinInfo > mOrderedJoinInfoList;
337
342 bool prepareOrderBy( const QList<QgsFeatureRequest::OrderByClause> &orderBys ) override;
343
345 bool providerCanSimplify( QgsSimplifyMethod::MethodType methodType ) const override;
346
347 void createOrderedJoinList();
348
352 bool postProcessFeature( QgsFeature &feature );
353
357 bool checkGeometryValidity( const QgsFeature &feature );
358
359 bool mDelegatedOrderByToProvider = false;
360};
361
362
369{
370 public:
377
380
381 QgsFeatureIterator getFeatures( const QgsFeatureRequest &request = QgsFeatureRequest() ) const override;
383 QgsFields fields() const override;
384 Qgis::WkbType wkbType() const override;
385 long long featureCount() const override;
386 QString sourceName() const override;
389
390 private:
391#ifdef SIP_RUN
393#endif
394
395 // ideally this wouldn't be mutable, but QgsVectorLayerFeatureSource has non-const getFeatures()
396 mutable QgsVectorLayerFeatureSource mSource;
397 QgsFeatureIds mSelectedFeatureIds;
399 QString mName;
400 QPointer< QgsVectorLayer > mLayer;
401};
402
404
405#ifndef SIP_RUN
406class QgsVectorLayerSelectedFeatureIterator : public QgsAbstractFeatureIterator
407{
408 public:
409 QgsVectorLayerSelectedFeatureIterator( const QgsFeatureIds &selectedFeatureIds, const QgsFeatureRequest &request, QgsVectorLayerFeatureSource &source );
410
411 bool rewind() override;
412 bool close() override;
413
414 protected:
415 bool fetchFeature( QgsFeature &f ) override;
416
417 private:
418 QgsFeatureIds mSelectedFeatureIds;
419 QgsFeatureIterator mIterator;
420};
421
422#endif
423
425
426#endif // QGSVECTORLAYERFEATUREITERATOR_H
SpatialIndexPresence
Enumeration of spatial index presence states.
Definition qgis.h:584
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:294
@ Unknown
Unknown.
Definition qgis.h:295
QgsAbstractFeatureIteratorFromSource(QgsVectorLayerFeatureSource *source, bool ownSource, const QgsFeatureRequest &request)
Internal feature iterator to be implemented within data providers.
virtual bool rewind()=0
Resets the iterator to the starting position.
virtual bool fetchFeature(QgsFeature &f)=0
If you write a feature iterator for your provider, this is the method you need to implement!
virtual bool close()=0
Call to end the iteration.
Base class that can be used for any class that is capable of returning features.
virtual QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest())=0
Gets an iterator for features matching the specified request.
Represents a coordinate reference system (CRS).
Handles coordinate transforms between two coordinate systems.
Abstract interface for generating an expression context scope.
Single scope for storing variables and functions for use within a QgsExpressionContext.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Buffers information about expression fields for a vector layer.
Handles parsing and evaluation of expressions (formerly called "search strings").
Wrapper for iterator of features from vector data provider or vector layer.
Wraps a request for features to a vector layer (or directly its vector data provider).
An interface for objects which provide features via a getFeatures method.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Container of fields for a vector layer.
Definition qgsfields.h:46
A geometry engine is a low-level representation of a QgsAbstractGeometry object, optimised for use wi...
A geometry is the spatial representation of a feature.
A rectangle specified with double values.
Contains information about how to simplify geometries fetched from a QgsFeatureIterator.
Stores queued vector layer edit operations prior to committing changes to the layer's data provider.
A feature iterator which iterates over features from a QgsVectorLayer.
QMap< const QgsVectorLayerJoinInfo *, QgsVectorLayerFeatureIterator::FetchJoinInfo > mFetchJoinInfo
Information about joins used in the current select() statement.
QgsFeatureMap::ConstIterator mFetchAddedFeaturesIt
void setInterruptionChecker(QgsFeedback *interruptionChecker) override
Attach an object that can be queried regularly by the iterator to check if it must stopped.
bool close() override
end of iterating: free the resources / lock
bool nextFeatureFilterExpression(QgsFeature &f) override
Overrides default method as we only need to filter features in the edit buffer while for others filte...
QMap< int, QgsExpression * > mExpressionFieldInfo
QgsGeometryMap::ConstIterator mFetchChangedGeomIt
bool fetchFeature(QgsFeature &feature) override
fetch next feature, return true on success
std::shared_ptr< QgsGeometryEngine > mDistanceWithinEngine
bool isValid() const override
Returns if this iterator is valid.
bool rewind() override
reset the iterator to the starting position
QgsVectorLayerFeatureIterator(QgsVectorLayerFeatureSource *source, bool ownSource, const QgsFeatureRequest &request)
Partial snapshot of vector layer's state (only the members necessary for access to features).
QgsCoordinateReferenceSystem crs() const
Returns the coordinate reference system for features retrieved from this source.
QgsChangedAttributesMap mChangedAttributeValues
std::unique_ptr< QgsAbstractFeatureSource > mProviderFeatureSource
QgsVectorLayerFeatureSource(const QgsVectorLayer *layer)
Constructor for QgsVectorLayerFeatureSource.
~QgsVectorLayerFeatureSource() override
QString id() const
Returns the layer id of the source layer.
QgsFields fields() const
Returns the fields that will be available for features that are retrieved from this source.
QgsVectorLayerFeatureSource(const QgsVectorLayerFeatureSource &other)=delete
std::unique_ptr< QgsVectorLayerJoinBuffer > mJoinBuffer
std::unique_ptr< QgsExpressionFieldBuffer > mExpressionFieldBuffer
QMap< QString, JoinLayerSource > mJoinSources
Contains prepared join sources by layer ID.
QgsVectorLayerFeatureSource & operator==(const QgsVectorLayerFeatureSource &other)=delete
Manages joined fields for a vector layer.
Defines left outer join from our vector layer to some other vector layer.
QgsVectorLayerSelectedFeatureSource(const QgsVectorLayerSelectedFeatureSource &other)=delete
long long featureCount() const override
Returns the number of features contained in the source, or -1 if the feature count is unknown.
Qgis::WkbType wkbType() const override
Returns the geometry type for features returned by this source.
Qgis::SpatialIndexPresence hasSpatialIndex() const override
Returns an enum value representing the presence of a valid spatial index on the source,...
QgsFields fields() const override
Returns the fields associated with features in the source.
QgsCoordinateReferenceSystem sourceCrs() const override
Returns the coordinate reference system for features in the source.
QgsVectorLayerSelectedFeatureSource(QgsVectorLayer *layer)
Constructor for QgsVectorLayerSelectedFeatureSource, for selected features from the specified layer.
QgsVectorLayerSelectedFeatureSource & operator==(const QgsVectorLayerSelectedFeatureSource &other)=delete
QgsExpressionContextScope * createExpressionContextScope() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QString sourceName() const override
Returns a friendly display name for the source.
Represents a vector layer which manages a vector based dataset.
#define SIP_SKIP
Definition qgis_sip.h:133
QMap< QgsFeatureId, QgsGeometry > QgsGeometryMap
QMap< QgsFeatureId, QgsAttributeMap > QgsChangedAttributesMap
QSet< QgsFeatureId > QgsFeatureIds
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
QList< int > QgsAttributeList
Definition qgsfield.h:30
QMap< QgsFeatureId, QgsFeature > QgsFeatureMap
QMap< QgsFeatureId, QgsFeature > QgsFeatureMap
Join information prepared for fast attribute id mapping in QgsVectorLayerJoinBuffer::updateFeatureAtt...
QMap< int, int > attributesSourceToDestLayerMap
Mapping from original attribute index to the joined layer index.
void addJoinedAttributesDirect(QgsFeature &f, const QVariant &joinValue) const
std::shared_ptr< QgsVectorLayerFeatureSource > joinSource
Feature source for join.
int targetField
Index of field (of this layer) that drives the join.
const QgsVectorLayerJoinInfo * joinInfo
Canonical source of information about the join.
int indexOffset
At what position the joined fields start.
void addJoinedAttributesCached(QgsFeature &f, const QVariant &joinValue) const
Contains join layer source information prepared in a thread-safe way, ready for vector layer feature ...
std::shared_ptr< QgsVectorLayerFeatureSource > joinSource
Feature source for join.