21#include "moc_qgsvectordataprovider.cpp"
51 return QStringLiteral(
"Generic vector file" );
134 return mErrors.isEmpty() ? QString() : mErrors.last();
165 Q_UNUSED( attributes )
173 Q_UNUSED( attributes )
181 Q_UNUSED( renamedAttributes )
205 Q_UNUSED( fieldIndex )
214 if ( fieldIndex < 0 || fieldIndex >= f.count() )
217 return f.at( fieldIndex ).constraints().constraints();
231 Q_UNUSED( geometry_map )
278 mEncoding = QTextCodec::codecForName(
"UTF-8" );
282 mEncoding = QTextCodec::codecForName( e.toLocal8Bit().constData() );
284 if ( !mEncoding && e != QLatin1String(
"System" ) )
299 mEncoding = QTextCodec::codecForName(
"System" );
305 mEncoding = QTextCodec::codecForLocale();
307 Q_ASSERT( mEncoding );
316 return mEncoding->name();
326 QStringList abilitiesList;
332 abilitiesList += tr(
"Add Features" );
337 abilitiesList += tr(
"Delete Features" );
342 abilitiesList += tr(
"Change Attribute Values" );
347 abilitiesList += tr(
"Add Attributes" );
352 abilitiesList += tr(
"Delete Attributes" );
357 abilitiesList += tr(
"Rename Attributes" );
363 abilitiesList += tr(
"Create Spatial Index" );
368 abilitiesList += tr(
"Create Attribute Indexes" );
373 abilitiesList += tr(
"Fast Access to Features at ID" );
378 abilitiesList += tr(
"Change Geometries" );
383 abilitiesList += tr(
"Presimplify Geometries" );
388 abilitiesList += tr(
"Presimplify Geometries with Validity Check" );
393 abilitiesList += tr(
"Simultaneous Geometry and Attribute Updates" );
398 abilitiesList += tr(
"Transactions" );
403 abilitiesList += tr(
"Curved Geometries" );
408 abilitiesList += tr(
"Feature Symbology" );
411 return abilitiesList.join( QLatin1String(
", " ) );
430 QMap<QString, int> resultMap;
433 for (
int i = 0; i < fieldsCopy.
count(); ++i )
435 resultMap.insert( fieldsCopy.
at( i ).
name(), i );
473 QgsDebugMsgLevel( QStringLiteral(
"field name = %1 type = %2 length = %3 precision = %4" )
475 QVariant::typeToName( field.
type() ) )
479 for (
const NativeType &nativeType : mNativeTypes )
481 QgsDebugMsgLevel( QStringLiteral(
"native field type = %1 min length = %2 max length = %3 min precision = %4 max precision = %5" )
482 .arg( QVariant::typeToName( nativeType.mType ) )
483 .arg( nativeType.mMinLen )
484 .arg( nativeType.mMaxLen )
485 .arg( nativeType.mMinPrec )
486 .arg( nativeType.mMaxPrec ), 2 );
488 if ( field.
type() != nativeType.mType )
494 if ( ( nativeType.mMinLen > 0 && field.
length() < nativeType.mMinLen ) ||
495 ( nativeType.mMaxLen > 0 && field.
length() > nativeType.mMaxLen ) )
505 if ( ( nativeType.mMinPrec > 0 && field.
precision() < nativeType.mMinPrec ) ||
506 ( nativeType.mMaxPrec > 0 && field.
precision() > nativeType.mMaxPrec ) )
517 QgsDebugError( QStringLiteral(
"no sufficient native type found" ) );
525 if ( index < 0 || index >=
fields().count() )
527 QgsDebugError(
"Warning: access requested to invalid field index: " + QString::number( index ) );
533 if ( !mCacheMinValues.contains( index ) )
536 return mCacheMinValues[index];
543 if ( index < 0 || index >=
fields().count() )
545 QgsDebugError(
"Warning: access requested to invalid field index: " + QString::number( index ) );
551 if ( !mCacheMaxValues.contains( index ) )
554 return mCacheMaxValues[index];
564 if ( index < 0 || index >=
fields().count() )
569 keys.append( index );
575 request.
setFilterExpression( QStringLiteral(
"\"%1\" ILIKE '%%2%'" ).arg( fieldName, substring ) );
582 const QString value = f.
attribute( index ).toString();
583 if ( !set.contains( value ) )
585 results.append( value );
589 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
604 Q_UNUSED( parameters )
616 mCacheMinMaxDirty =
true;
617 mCacheMinValues.clear();
618 mCacheMaxValues.clear();
625 if ( !mCacheMinMaxDirty )
629 for (
int i = 0; i < flds.
count(); ++i )
631 if ( flds.
at( i ).
type() == QMetaType::Type::Int )
633 mCacheMinValues[i] = QVariant( std::numeric_limits<int>::max() );
634 mCacheMaxValues[i] = QVariant( std::numeric_limits<int>::lowest() );
636 else if ( flds.
at( i ).
type() == QMetaType::Type::LongLong )
638 mCacheMinValues[i] = QVariant( std::numeric_limits<qlonglong>::max() );
639 mCacheMaxValues[i] = QVariant( std::numeric_limits<qlonglong>::lowest() );
641 else if ( flds.
at( i ).
type() == QMetaType::Type::Double )
643 mCacheMinValues[i] = QVariant( std::numeric_limits<double>::max() );
644 mCacheMaxValues[i] = QVariant( std::numeric_limits<double>::lowest() );
649 mCacheMinValues[i] = QVariant();
650 mCacheMaxValues[i] = QVariant();
662 for (
const int attributeIndex : keys )
664 const QVariant &varValue = attrs.at( attributeIndex );
669 switch ( flds.
at( attributeIndex ).
type() )
671 case QMetaType::Type::Int:
673 const int value = varValue.toInt();
674 if ( value < mCacheMinValues[ attributeIndex ].toInt() )
675 mCacheMinValues[ attributeIndex ] = value;
676 if ( value > mCacheMaxValues[ attributeIndex ].toInt() )
677 mCacheMaxValues[ attributeIndex ] = value;
680 case QMetaType::Type::LongLong:
682 const qlonglong value = varValue.toLongLong();
683 if ( value < mCacheMinValues[ attributeIndex ].toLongLong() )
684 mCacheMinValues[ attributeIndex ] = value;
685 if ( value > mCacheMaxValues[ attributeIndex ].toLongLong() )
686 mCacheMaxValues[ attributeIndex ] = value;
689 case QMetaType::Type::Double:
691 const double value = varValue.toDouble();
692 if ( value < mCacheMinValues[ attributeIndex ].toDouble() )
693 mCacheMinValues[attributeIndex ] = value;
694 if ( value > mCacheMaxValues[ attributeIndex ].toDouble() )
695 mCacheMaxValues[ attributeIndex ] = value;
698 case QMetaType::Type::QDateTime:
700 const QDateTime value = varValue.toDateTime();
701 if ( value < mCacheMinValues[ attributeIndex ].toDateTime() || !mCacheMinValues[ attributeIndex ].isValid() )
702 mCacheMinValues[attributeIndex ] = value;
703 if ( value > mCacheMaxValues[ attributeIndex ].toDateTime() || !mCacheMaxValues[ attributeIndex ].isValid() )
704 mCacheMaxValues[ attributeIndex ] = value;
707 case QMetaType::Type::QDate:
709 const QDate value = varValue.toDate();
710 if ( value < mCacheMinValues[ attributeIndex ].toDate() || !mCacheMinValues[ attributeIndex ].isValid() )
711 mCacheMinValues[attributeIndex ] = value;
712 if ( value > mCacheMaxValues[ attributeIndex ].toDate() || !mCacheMaxValues[ attributeIndex ].isValid() )
713 mCacheMaxValues[ attributeIndex ] = value;
716 case QMetaType::Type::QTime:
718 const QTime value = varValue.toTime();
719 if ( value < mCacheMinValues[ attributeIndex ].toTime() || !mCacheMinValues[ attributeIndex ].isValid() )
720 mCacheMinValues[attributeIndex ] = value;
721 if ( value > mCacheMaxValues[ attributeIndex ].toTime() || !mCacheMaxValues[ attributeIndex ].isValid() )
722 mCacheMaxValues[ attributeIndex ] = value;
727 const QString value = varValue.toString();
728 if (
QgsVariantUtils::isNull( mCacheMinValues[ attributeIndex ] ) || value < mCacheMinValues[attributeIndex ].toString() )
730 mCacheMinValues[attributeIndex] = value;
732 if (
QgsVariantUtils::isNull( mCacheMaxValues[attributeIndex] ) || value > mCacheMaxValues[attributeIndex].toString() )
734 mCacheMaxValues[attributeIndex] = value;
742 mCacheMinMaxDirty =
false;
749 if ( !v.convert( type ) || value.isNull() )
767static bool _compareEncodings(
const QString &s1,
const QString &s2 )
769 return s1.toLower() < s2.toLower();
772static bool _removeDuplicateEncodings(
const QString &s1,
const QString &s2 )
774 return s1.compare( s2, Qt::CaseInsensitive ) == 0;
779 static std::once_flag initialized;
780 std::call_once( initialized, [ = ]
782 const auto codecs { QTextCodec::availableCodecs() };
783 for (
const QByteArray &codec : codecs )
788 smEncodings <<
"BIG5";
789 smEncodings <<
"BIG5-HKSCS";
790 smEncodings <<
"EUCJP";
791 smEncodings <<
"EUCKR";
792 smEncodings <<
"GB2312";
793 smEncodings <<
"GBK";
794 smEncodings <<
"GB18030";
795 smEncodings <<
"JIS7";
796 smEncodings <<
"SHIFT-JIS";
797 smEncodings <<
"TSCII";
798 smEncodings <<
"UTF-8";
799 smEncodings <<
"UTF-16";
800 smEncodings <<
"KOI8-R";
801 smEncodings <<
"KOI8-U";
802 smEncodings <<
"ISO8859-1";
803 smEncodings <<
"ISO8859-2";
804 smEncodings <<
"ISO8859-3";
805 smEncodings <<
"ISO8859-4";
806 smEncodings <<
"ISO8859-5";
807 smEncodings <<
"ISO8859-6";
808 smEncodings <<
"ISO8859-7";
809 smEncodings <<
"ISO8859-8";
810 smEncodings <<
"ISO8859-8-I";
811 smEncodings <<
"ISO8859-9";
812 smEncodings <<
"ISO8859-10";
813 smEncodings <<
"ISO8859-11";
814 smEncodings <<
"ISO8859-12";
815 smEncodings <<
"ISO8859-13";
816 smEncodings <<
"ISO8859-14";
817 smEncodings <<
"ISO8859-15";
818 smEncodings <<
"IBM 850";
819 smEncodings <<
"IBM 866";
820 smEncodings <<
"CP874";
821 smEncodings <<
"CP1250";
822 smEncodings <<
"CP1251";
823 smEncodings <<
"CP1252";
824 smEncodings <<
"CP1253";
825 smEncodings <<
"CP1254";
826 smEncodings <<
"CP1255";
827 smEncodings <<
"CP1256";
828 smEncodings <<
"CP1257";
829 smEncodings <<
"CP1258";
830 smEncodings <<
"Apple Roman";
831 smEncodings <<
"TIS-620";
832 smEncodings <<
"System";
836 std::sort( sEncodings.begin(), sEncodings.end(), _compareEncodings );
837 const auto last = std::unique( sEncodings.begin(), sEncodings.end(), _removeDuplicateEncodings );
838 sEncodings.erase( last, sEncodings.end() );
856 return !mErrors.isEmpty();
893 return QSet<QgsMapLayerDependency>();
928 if ( !convertedGeometry )
935 if ( convertedGeometry->
wkbType() == providerGeometryType )
940 std::unique_ptr< QgsAbstractGeometry > outputGeom;
945 QgsCompoundCurve *compoundCurve = qgsgeometry_cast<QgsCompoundCurve *>( convertedGeometry );
948 if ( compoundCurve->
nCurves() == 1 )
950 const QgsCircularString *circularString = qgsgeometry_cast<const QgsCircularString *>( compoundCurve->
curveAt( 0 ) );
951 if ( circularString )
953 outputGeom.reset( circularString->
clone() );
965 outputGeom.reset( curveGeom );
973 if ( segmentizedGeom )
975 outputGeom.reset( segmentizedGeom );
984 if ( geomCollection )
986 if ( geomCollection->
addGeometry( outputGeom ? outputGeom->clone() : convertedGeometry->
clone() ) )
988 outputGeom.reset( collGeom.release() );
996 const QgsGeometryCollection *collection = qgsgeometry_cast<const QgsGeometryCollection *>( convertedGeometry );
1002 if ( firstGeom && firstGeom->
wkbType() == providerGeometryType )
1004 outputGeom.reset( firstGeom->
clone() );
1015 outputGeom.reset( convertedGeometry->
clone() );
1024 outputGeom.reset( convertedGeometry->
clone() );
1026 outputGeom->addMValue();
1044QStringList QgsVectorDataProvider::sEncodings;
1050 return QList<QgsRelation>();
1063 return mTemporalCapabilities.get();
1070 return mTemporalCapabilities.get();
1077 return mElevationProperties.get();
1084 return mElevationProperties.get();
@ SelectAtId
Fast access to features using their ID.
@ ChangeFeatures
Supports joint updates for attributes and geometry. Providers supporting this should still define Cha...
@ SimplifyGeometries
Supports simplification of geometries on provider side according to a distance tolerance.
@ AddFeatures
Allows adding features.
@ SimplifyGeometriesWithTopologicalValidation
Supports topological simplification of geometries on provider side according to a distance tolerance.
@ CreateAttributeIndex
Can create indexes on provider's fields.
@ CircularGeometries
Supports circular geometry types (circularstring, compoundcurve, curvepolygon)
@ NoCapabilities
Provider has no capabilities.
@ ChangeGeometries
Allows modifications of geometries.
@ AddAttributes
Allows addition of new attributes (fields)
@ CreateSpatialIndex
Allows creation of spatial index.
@ RenameAttributes
Supports renaming attributes (fields)
@ DeleteFeatures
Allows deletion of features.
@ TransactionSupport
Supports transactions.
@ DeleteAttributes
Allows deletion of attributes (fields)
@ ChangeAttributeValues
Allows modification of attribute values.
@ FeatureSymbology
Provider is able retrieve embedded symbology associated with individual features.
QFlags< VectorLayerTypeFlag > VectorLayerTypeFlags
Vector layer type flags.
@ NoGeometry
Geometry is not required. It may still be returned if e.g. required for a filter condition.
QFlags< DataProviderReadFlag > DataProviderReadFlags
Flags which control data provider construction.
FeatureAvailability
Possible return value for QgsFeatureSource::hasFeatures() to determine if a source is empty.
@ FeaturesAvailable
There is at least one feature available in this source.
@ NoFeaturesAvailable
There are certainly no features available in this source.
QFlags< VectorProviderCapability > VectorProviderCapabilities
Vector data provider capabilities.
Aggregate
Available aggregates to calculate.
@ SqlQuery
SQL query layer.
QFlags< VectorDataProviderAttributeEditCapability > VectorDataProviderAttributeEditCapabilities
Attribute editing capabilities which may be supported by vector data providers.
WkbType
The WKB type describes the number of dimensions a geometry has.
@ CircularString
CircularString.
Abstract base class for all geometries.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
virtual QgsAbstractGeometry * segmentize(double tolerance=M_PI/180., SegmentationToleranceType toleranceType=MaximumAngle) const
Returns a version of the geometry without curves.
virtual QgsAbstractGeometry * toCurveType() const =0
Returns the geometry converted to the more generic curve type.
Qgis::WkbType wkbType() const
Returns the WKB type of the geometry.
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
A 3-dimensional box composed of x, y, z coordinates.
Circular string geometry type.
QgsCircularString * clone() const override
Clones the geometry by performing a deep copy.
Compound curve geometry type.
int nCurves() const
Returns the number of curves in the geometry.
const QgsCurve * curveAt(int i) const
Returns the curve at the specified index.
This class represents a coordinate reference system (CRS).
Base class for handling elevation related properties for a data provider.
Abstract base class for spatial data provider implementations.
virtual Qgis::DataProviderFlags flags() const
Returns the generic data provider flags.
virtual QgsCoordinateReferenceSystem crs() const =0
Returns the coordinate system for the data source.
virtual QgsBox3D extent3D() const
Returns the 3D extent of the layer.
virtual QgsRectangle extent() const =0
Returns the extent of the layer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Abstract base class for all 2D vector feature renderers.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & setLimit(long long limit)
Set the maximum number of features to request.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const
Tells whether the operation has been canceled already.
Constraint
Constraints which may be present on a field.
QFlags< Constraint > Constraints
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
QgsAttributeList allAttributesList() const
Utility function to get list of attribute indexes.
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
int numGeometries() const
Returns the number of geometries within the collection.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkbType(Qgis::WkbType t)
Returns empty geometry from wkb type.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
A QTextCodec implementation which relies on OGR to do the text conversion.
static QStringList supportedCodecs()
Returns a list of supported text codecs.
A rectangle specified with double values.
This class allows including a set of layers in a database-side transaction, provided the layer data p...
static QMetaType::Type variantTypeToMetaType(QVariant::Type variantType)
Converts a QVariant::Type to a QMetaType::Type.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
static QVariant createNullVariant(QMetaType::Type metaType)
Helper method to properly create a null QVariant from a metaType Returns the created QVariant.
Implementation of data provider temporal properties for QgsVectorDataProviders.
This is the base class for vector data providers.
void pushError(const QString &msg) const
Push a notification about errors that happened in this providers scope.
QgsRectangle sourceExtent() const override
Returns the extent of all geometries from the source.
virtual bool cancelReload()
Cancels the current reloading of data.
QString lastError() const override
Returns the most recent error encountered by the sink, e.g.
void setNativeTypes(const QList< QgsVectorDataProvider::NativeType > &nativeTypes)
Set the list of native types supported by this provider.
virtual QList< QgsRelation > discoverRelations(const QgsVectorLayer *target, const QList< QgsVectorLayer * > &layers) const
Discover the available relations with the given layers.
static QStringList availableEncodings()
Returns a list of available encodings.
virtual QString dataComment() const override
Returns a short comment for the data that this provider is providing access to (e....
virtual QVariant aggregate(Qgis::Aggregate aggregate, int index, const QgsAggregateCalculator::AggregateParameters ¶meters, QgsExpressionContext *context, bool &ok, QgsFeatureIds *fids=nullptr) const
Calculates an aggregated value from the layer's features.
bool supportedType(const QgsField &field) const
check if provider supports type of field
virtual bool changeGeometryValues(const QgsGeometryMap &geometry_map)
Changes geometries of existing features.
virtual bool createSpatialIndex()
Creates a spatial index on the datasource (if supported by the provider type).
Q_DECL_DEPRECATED QgsAttrPalIndexNameHash palAttributeIndexNames() const
Returns list of indexes to names for QgsPalLabeling fix.
QgsCoordinateReferenceSystem sourceCrs() const override
Returns the coordinate reference system for features in the source.
virtual QgsFeatureRenderer * createRenderer(const QVariantMap &configuration=QVariantMap()) const
Creates a new vector layer feature renderer, using provider backend specific information.
virtual QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
void clearMinMaxCache()
Invalidates the min/max cache.
virtual bool truncate()
Removes all features from the layer.
virtual QStringList uniqueStringsMatching(int index, const QString &substring, int limit=-1, QgsFeedback *feedback=nullptr) const
Returns unique string values of an attribute which contain a specified subset string.
void raiseError(const QString &msg) const
Signals an error in this provider.
QTextCodec * textEncoding() const
Gets this providers encoding.
QgsVectorDataProvider(const QString &uri=QString(), const QgsDataProvider::ProviderOptions &providerOptions=QgsDataProvider::ProviderOptions(), Qgis::DataProviderReadFlags flags=Qgis::DataProviderReadFlags())
Constructor for a vector data provider.
virtual bool isSqlQuery() const
Returns true if the layer is a query (SQL) layer.
void clearErrors()
Clear recorded errors.
QStringList errors() const
Gets recorded errors.
virtual bool empty() const
Returns true if the layer does not contain any feature.
virtual Q_INVOKABLE Qgis::VectorProviderCapabilities capabilities() const
Returns flags containing the supported capabilities.
QList< QgsVectorDataProvider::NativeType > nativeTypes() const
Returns the names of the supported types.
QgsBox3D sourceExtent3D() const override
Returns the 3D extent of all geometries from the source.
virtual QgsAttributeList pkAttributeIndexes() const
Returns list of indexes of fields that make up the primary key.
virtual void handlePostCloneOperations(QgsVectorDataProvider *source)
Handles any post-clone operations required after this vector data provider was cloned from the source...
QgsGeometry convertToProviderType(const QgsGeometry &geom) const
Converts the geometry to the provider type if possible / necessary.
virtual bool changeFeatures(const QgsChangedAttributesMap &attr_map, const QgsGeometryMap &geometry_map)
Changes attribute values and geometries of existing features.
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of layer ids on which this layer depends.
int fieldNameIndex(const QString &fieldName) const
Returns the index of a field name or -1 if the field does not exist.
virtual QString defaultValueClause(int fieldIndex) const
Returns any default value clauses which are present at the provider for a specified field index.
virtual void setEncoding(const QString &e)
Set encoding used for accessing data from layer.
virtual bool changeAttributeValues(const QgsChangedAttributesMap &attr_map)
Changes attribute values of existing features.
virtual bool deleteFeatures(const QgsFeatureIds &id)
Deletes one or more features from the provider.
virtual Qgis::VectorLayerTypeFlags vectorLayerTypeFlags() const
Returns the vector layer type flags.
QVariant maximumValue(int index) const override
Returns the maximum value of an attribute.
virtual bool createAttributeIndex(int field)
Create an attribute index on the datasource.
bool addFeatures(QgsFeatureList &flist, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a list of features to the sink.
QgsDataProviderElevationProperties * elevationProperties() override
Returns the provider's elevation properties.
QgsFields fields() const override=0
Returns the fields associated with this data provider.
QMap< QString, int > fieldNameMap() const
Returns a map where the key is the name of the field and the value is its index.
Qgis::WkbType wkbType() const override=0
Returns the geometry type which is returned by this layer.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const override=0
Query the provider for features specified in request.
virtual QgsAttributeList attributeIndexes() const
Returns list of indexes to fetch all attributes in nextFeature()
virtual bool addAttributes(const QList< QgsField > &attributes)
Adds new attributes to the provider.
QVariant minimumValue(int index) const override
Returns the minimum value of an attribute.
void fillMinMaxCache() const
Populates the cache of minimum and maximum attribute values.
QString encoding() const
Returns the encoding which is used for accessing data.
virtual QVariant defaultValue(int fieldIndex) const
Returns any literal default values which are present at the provider for a specified field index.
QgsFieldConstraints::Constraints fieldConstraints(int fieldIndex) const
Returns any constraints which are present at the provider for a specified field index.
virtual QgsTransaction * transaction() const
Returns the transaction this data provider is included in, if any.
virtual QgsAbstractVectorLayerLabeling * createLabeling(const QVariantMap &configuration=QVariantMap()) const
Creates labeling settings, using provider backend specific information.
static QVariant convertValue(QMetaType::Type type, const QString &value)
Convert value to type.
Qgis::FeatureAvailability hasFeatures() const override
Will always return FeatureAvailability::FeaturesAvailable or FeatureAvailability::NoFeaturesAvailable...
virtual bool renameAttributes(const QgsFieldNameMap &renamedAttributes)
Renames existing attributes.
virtual bool deleteAttributes(const QgsAttributeIds &attributes)
Deletes existing attributes from the provider.
virtual bool skipConstraintCheck(int fieldIndex, QgsFieldConstraints::Constraint constraint, const QVariant &value=QVariant()) const
Returns true if a constraint check should be skipped for a specified field (e.g., if the value return...
virtual Qgis::VectorDataProviderAttributeEditCapabilities attributeEditCapabilities() const
Returns the provider's supported attribute editing capabilities.
bool hasErrors() const
Provider has errors to report.
QgsVectorDataProviderTemporalCapabilities * temporalCapabilities() override
Returns the provider's temporal capabilities.
QString capabilitiesString() const
Returns the above in friendly format.
Represents a vector layer which manages a vector based data sets.
static bool isMultiType(Qgis::WkbType type)
Returns true if the WKB type is a multi type.
static bool hasZ(Qgis::WkbType type)
Tests whether a WKB type contains the z-dimension.
static bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
static bool isCurvedType(Qgis::WkbType type)
Returns true if the WKB type is a curved type or can contain curved geometries.
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
QMap< int, QString > QgsFieldNameMap
QMap< QgsFeatureId, QgsGeometry > QgsGeometryMap
QMap< QgsFeatureId, QgsAttributeMap > QgsChangedAttributesMap
QList< QgsFeature > QgsFeatureList
QSet< QgsFeatureId > QgsFeatureIds
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS_NON_FATAL
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS
QList< int > QgsAttributeList
QSet< int > QgsAttributeIds
QHash< int, QString > QgsAttrPalIndexNameHash
A bundle of parameters controlling aggregate calculation.
Setting options for creating vector data providers.