15 #ifndef QGSFEATUREITERATOR_H 16 #define QGSFEATUREITERATOR_H 18 #include "qgis_core.h" 50 virtual bool rewind() = 0;
52 virtual bool close() = 0;
92 bool compileFailed()
const;
103 virtual bool fetchFeature(
QgsFeature &f ) = 0;
115 virtual bool nextFeatureFilterExpression(
QgsFeature &f );
128 virtual bool nextFeatureFilterFids(
QgsFeature &f );
156 bool mClosed =
false;
165 bool mZombie =
false;
179 long mFetchedCount = 0;
184 bool mCompileFailed =
false;
200 bool mUseCachedFeatures =
false;
201 QList<QgsIndexedFeature> mCachedFeatures;
202 QList<QgsIndexedFeature>::ConstIterator mFeatureIterator;
215 virtual bool prepareOrderBy(
const QList<QgsFeatureRequest::OrderByClause> &orderBys );
223 void setupOrderBy(
const QList<QgsFeatureRequest::OrderByClause> &orderBys );
239 , mOwnSource( ownSource )
241 mSource->iteratorOpened(
this );
254 T *mSource =
nullptr;
275 std::unique_ptr< QgsFeature > f = qgis::make_unique< QgsFeature >();
277 Py_BEGIN_ALLOW_THREADS
278 result = ( sipCpp->nextFeature( *f ) );
281 sipRes = sipConvertFromType( f.release(), sipType_QgsFeature, Py_None );
284 PyErr_SetString( PyExc_StopIteration,
"" );
313 virtual bool isValid()
const;
316 bool isClosed()
const;
406 return !( fi1 == fi2 );
417 #endif // QGSFEATUREITERATOR_H
Wrapper for iterator of features from vector data provider or vector layer.
virtual bool close()=0
end of iterating: free the resources / lock
A rectangle specified with double values.
Expression could not be compiled or not attempt was made to compile expression.
long mFetchedCount
Number of features already fetched by iterator.
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
virtual bool rewind()=0
reset the iterator to the starting position
Expression was fully compiled and delegated to data provider source.
bool mClosed
Sets to true, as soon as the iterator is closed.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
#define SIP_TYPEHINT(type)
friend bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool isClosed() const
find out whether the iterator is still valid or closed already
Base class for feedback objects to be used for cancellation of something running in a worker thread...
void iteratorClosed()
to be called by from subclass in close()
virtual bool nextFeature(QgsFeature &f)
fetch next feature, return true on success
Internal feature iterator to be implemented within data providers.
CompileStatus
Status of expression compilation for filter expression requests.
void setInterruptionChecker(QgsFeedback *interruptionChecker)
Attach an object that can be queried regularly by the iterator to check if it must stopped...
bool mZombie
A feature iterator may be closed already but still be serving features from the cache.
This class wraps a request for features to a vector layer (or directly its vector data provider)...
QgsFeatureIterator()=default
Construct invalid iterator.
void deref()
Remove reference, delete if refs == 0.
friend bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
~QgsAbstractFeatureIteratorFromSource() override
QgsFeatureRequest mRequest
A copy of the feature request.
CompileStatus compileStatus() const
Returns the status of expression compilation for filter expression requests.
bool compileFailed() const
Indicator if there was an error when sending the compiled query to the server.
Expression was partially compiled, but extra checks need to be applied to features.
QgsAbstractFeatureIterator * mIter
virtual void setInterruptionChecker(QgsFeedback *interruptionChecker)
Attach an object that can be queried regularly by the iterator to check if it must stopped...
QgsAbstractFeatureIterator::CompileStatus compileStatus() const
Returns the status of expression compilation for filter expression requests.
~QgsFeatureIterator()
Destructor deletes the iterator if it has no more references.
This class contains information about how to simplify geometries fetched from a QgsFeatureIterator.
Custom exception class for Coordinate Reference System related exceptions.
virtual bool isValid() const
Returns if this iterator is valid.
bool nextFeature(QgsFeature &f)
QgsAbstractFeatureIteratorFromSource(T *source, bool ownSource, const QgsFeatureRequest &request)
Helper template that cares of two things: 1.