QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
#include <qgsvectorlayerfeatureiterator.h>
Classes | |
struct | FetchJoinInfo |
Join information prepared for fast attribute id mapping in QgsVectorLayerJoinBuffer::updateFeatureAttributes(). More... | |
Public Member Functions | |
QgsVectorLayerFeatureIterator (QgsVectorLayerFeatureSource *source, bool ownSource, const QgsFeatureRequest &request) | |
~QgsVectorLayerFeatureIterator () override | |
bool | close () override |
end of iterating: free the resources / lock More... | |
bool | isValid () const override |
Returns if this iterator is valid. More... | |
bool | rewind () override |
reset the iterator to the starting position More... | |
void | setInterruptionChecker (QgsFeedback *interruptionChecker) override |
Attach an object that can be queried regularly by the iterator to check if it must stopped. More... | |
![]() | |
QgsAbstractFeatureIteratorFromSource (QgsVectorLayerFeatureSource *source, bool ownSource, const QgsFeatureRequest &request) | |
~QgsAbstractFeatureIteratorFromSource () override | |
![]() | |
QgsAbstractFeatureIterator (const QgsFeatureRequest &request) | |
base class constructor - stores the iteration parameters More... | |
virtual | ~QgsAbstractFeatureIterator ()=default |
destructor makes sure that the iterator is closed properly More... | |
bool | compileFailed () const |
Indicator if there was an error when sending the compiled query to the server. More... | |
CompileStatus | compileStatus () const |
Returns the status of expression compilation for filter expression requests. More... | |
virtual bool | nextFeature (QgsFeature &f) |
fetch next feature, return true on success More... | |
Protected Member Functions | |
void | addExpressionAttribute (QgsFeature &f, int attrIndex) |
Adds an expression based attribute to a feature. More... | |
void | addJoinedAttributes (QgsFeature &f) |
void | addVirtualAttributes (QgsFeature &f) |
Adds attributes that don't source from the provider but are added inside QGIS Includes. More... | |
bool | fetchFeature (QgsFeature &feature) override |
fetch next feature, return true on success More... | |
bool | fetchNextAddedFeature (QgsFeature &f) |
bool | fetchNextChangedAttributeFeature (QgsFeature &f) |
bool | fetchNextChangedGeomFeature (QgsFeature &f) |
bool | nextFeatureFid (QgsFeature &f) |
bool | nextFeatureFilterExpression (QgsFeature &f) override |
Overrides default method as we only need to filter features in the edit buffer while for others filtering is left to the provider implementation. More... | |
void | prepareExpression (int fieldIdx) |
void | prepareField (int fieldIdx) |
void | prepareFields () |
void | prepareJoin (int fieldIdx) |
bool | prepareSimplification (const QgsSimplifyMethod &simplifyMethod) override |
Setup the simplification of geometries to fetch using the specified simplify method. More... | |
void | rewindEditBuffer () |
void | updateChangedAttributes (QgsFeature &f) |
Update feature with uncommitted attribute updates. More... | |
void | updateFeatureGeometry (QgsFeature &f) |
Update feature with uncommitted geometry updates. More... | |
void | useAddedFeature (const QgsFeature &src, QgsFeature &f) |
void | useChangedAttributeFeature (QgsFeatureId fid, const QgsGeometry &geom, QgsFeature &f) |
![]() | |
void | iteratorClosed () |
to be called by from subclass in close() More... | |
![]() | |
void | deref () |
Remove reference, delete if refs == 0. More... | |
QgsRectangle | filterRectToSourceCrs (const QgsCoordinateTransform &transform) const SIP_THROW(QgsCsException) |
Returns a rectangle representing the original request's QgsFeatureRequest::filterRect(). More... | |
void | geometryToDestinationCrs (QgsFeature &feature, const QgsCoordinateTransform &transform) const |
Transforms feature's geometry according to the specified coordinate transform. More... | |
virtual bool | nextFeatureFilterFids (QgsFeature &f) |
By default, the iterator will fetch all features and check if the id is in the request. More... | |
void | ref () |
Add reference. More... | |
Protected Attributes | |
QgsFeatureIterator | mChangedFeaturesIterator |
QgsFeatureRequest | mChangedFeaturesRequest |
QMap< int, QgsExpression * > | mExpressionFieldInfo |
QgsFeatureMap::ConstIterator | mFetchAddedFeaturesIt |
QgsGeometryMap::ConstIterator | mFetchChangedGeomIt |
QSet< QgsFeatureId > | mFetchConsidered |
bool | mFetchedFid |
QMap< const QgsVectorLayerJoinInfo *, QgsVectorLayerFeatureIterator::FetchJoinInfo > | mFetchJoinInfo |
Information about joins used in the current select() statement. More... | |
QgsRectangle | mFilterRect |
bool | mHasVirtualAttributes |
QgsFeatureIterator | mProviderIterator |
QgsFeatureRequest | mProviderRequest |
QgsCoordinateTransform | mTransform |
![]() | |
bool | mOwnSource |
QgsVectorLayerFeatureSource * | mSource |
![]() | |
bool | mClosed = false |
Sets to true , as soon as the iterator is closed. More... | |
bool | mCompileFailed = false |
CompileStatus | mCompileStatus = NoCompilation |
Status of compilation of filter expression. More... | |
long | mFetchedCount = 0 |
Number of features already fetched by iterator. More... | |
QgsFeatureRequest | mRequest |
A copy of the feature request. More... | |
bool | mValid = true |
An invalid state of a feature iterator indicates that there was a problem with even getting it up and running. More... | |
bool | mZombie = false |
A feature iterator may be closed already but still be serving features from the cache. More... | |
int | refs = 0 |
reference counting (to allow seamless copying of QgsFeatureIterator instances) TODO QGIS3: make this private More... | |
Additional Inherited Members | |
![]() | |
enum | CompileStatus { NoCompilation, PartiallyCompiled, Compiled } |
Status of expression compilation for filter expression requests. More... | |
Definition at line 120 of file qgsvectorlayerfeatureiterator.h.
QgsVectorLayerFeatureIterator::QgsVectorLayerFeatureIterator | ( | QgsVectorLayerFeatureSource * | source, |
bool | ownSource, | ||
const QgsFeatureRequest & | request | ||
) |
Definition at line 118 of file qgsvectorlayerfeatureiterator.cpp.
|
override |
Definition at line 283 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Adds an expression based attribute to a feature.
f | feature |
attrIndex | attribute index |
Definition at line 888 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 831 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Adds attributes that don't source from the provider but are added inside QGIS Includes.
f | The feature will be modified |
Definition at line 848 of file qgsvectorlayerfeatureiterator.cpp.
|
overridevirtual |
end of iterating: free the resources / lock
Implements QgsAbstractFeatureIterator.
Definition at line 409 of file qgsvectorlayerfeatureiterator.cpp.
|
overrideprotectedvirtual |
fetch next feature, return true
on success
Implements QgsAbstractFeatureIterator.
Definition at line 292 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 433 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 516 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 477 of file qgsvectorlayerfeatureiterator.cpp.
|
overridevirtual |
Returns if this iterator is valid.
An invalid feature iterator is not able to provide a reliable source for data. If an iterator is invalid, either give up or try to send the request again (preferably after a timeout to give the system some time to stay responsive).
If you want to check if the iterator successfully completed, better use QgsFeatureIterator::isClosed().
Reimplemented from QgsAbstractFeatureIterator.
Definition at line 428 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 1016 of file qgsvectorlayerfeatureiterator.cpp.
|
inlineoverrideprotectedvirtual |
Overrides default method as we only need to filter features in the edit buffer while for others filtering is left to the provider implementation.
Reimplemented from QgsAbstractFeatureIterator.
Definition at line 163 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 627 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 809 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 672 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 588 of file qgsvectorlayerfeatureiterator.cpp.
|
overrideprotectedvirtual |
Setup the simplification of geometries to fetch using the specified simplify method.
Reimplemented from QgsAbstractFeatureIterator.
Definition at line 904 of file qgsvectorlayerfeatureiterator.cpp.
|
overridevirtual |
reset the iterator to the starting position
Implements QgsAbstractFeatureIterator.
Definition at line 391 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 580 of file qgsvectorlayerfeatureiterator.cpp.
|
overridevirtual |
Attach an object that can be queried regularly by the iterator to check if it must stopped.
This is mostly useful for iterators where a single nextFeature()/fetchFeature() iteration might be very long. A typical use case is the WFS provider. When nextFeature()/fetchFeature() is reasonably fast, it is not necessary to implement this method. The default implementation does nothing.
Reimplemented from QgsAbstractFeatureIterator.
Definition at line 422 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Update feature with uncommitted attribute updates.
Definition at line 1059 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Update feature with uncommitted geometry updates.
Definition at line 1082 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 462 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 542 of file qgsvectorlayerfeatureiterator.cpp.
|
protected |
Definition at line 233 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 232 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 250 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 241 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 240 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 239 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 243 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Information about joins used in the current select() statement.
Allows faster mapping of attribute ids compared to mVectorJoins
Definition at line 248 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 235 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 252 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 231 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 230 of file qgsvectorlayerfeatureiterator.h.
|
protected |
Definition at line 236 of file qgsvectorlayerfeatureiterator.h.