16 #include <QRegularExpression> 39 std::unique_ptr<QgsExpression> expression;
49 if ( expression->hasParserError() || !expression->prepare( &context ) )
58 lst.insert( fieldOrExpression );
60 lst = expression->referencedColumns();
63 .
setFlags( ( expression && expression->needsGeometry() ) ?
81 QList<QVariant> values;
85 std::unique_ptr<QgsExpression> expression;
102 QVariant v = expression->evaluate( &context );
121 QList<double> values;
126 QList<QVariant> variantValues =
getValues( layer, fieldOrExpression, ok, selectedOnly, feedback );
131 const auto constVariantValues = variantValues;
132 for (
const QVariant &value : constVariantValues )
134 double val = value.toDouble( &convertOk );
137 else if ( value.isNull() )
158 if ( fieldIndex < 0 || fieldIndex >= fields.
count() )
161 QString fieldName = fields.
at( fieldIndex ).
name();
169 int limit = ignoreIds.size() + 1;
179 if ( ignoreIds.contains( feat.
id() ) )
195 if ( fieldIndex < 0 || fieldIndex >= fields.
count() )
203 QVariant newVar( maxVal.toLongLong() + 1 );
211 switch ( field.
type() )
213 case QVariant::String:
216 if ( seed.isValid() )
217 base = seed.toString();
219 if ( !base.isEmpty() )
222 QRegularExpression rx( QStringLiteral(
"(.*)_\\d+" ) );
223 QRegularExpressionMatch match = rx.match( base );
224 if ( match.hasMatch() )
226 base = match.captured( 1 );
238 base = f.
attribute( fieldIndex ).toString();
245 if ( !base.isEmpty() && !vals.contains( base ) )
248 for (
int i = 1; i < 10000; ++i )
250 QString testVal = base +
'_' + QString::number( i );
251 if ( !vals.contains( testVal ) )
275 if ( fieldIndex < 0 || fieldIndex >= fields.
count() )
282 QVariant maxVal = existingValues.isEmpty() ? 0 : *std::max_element( existingValues.begin(), existingValues.end() );
283 QVariant newVar( maxVal.toLongLong() + 1 );
291 switch ( field.
type() )
293 case QVariant::String:
296 if ( seed.isValid() )
297 base = seed.toString();
299 if ( !base.isEmpty() )
302 QRegularExpression rx( QStringLiteral(
"(.*)_\\d+" ) );
303 QRegularExpressionMatch match = rx.match( base );
304 if ( match.hasMatch() )
306 base = match.captured( 1 );
313 base = existingValues.isEmpty() ? QString() : existingValues.values().first().toString();
318 for (
const auto &v : qgis::as_const( existingValues ) )
320 if ( v.toString().startsWith( base ) )
321 vals.push_back( v.toString() );
325 if ( !base.isEmpty() && !vals.contains( base ) )
328 for (
int i = 1; i < 10000; ++i )
330 QString testVal = base +
'_' + QString::number( i );
331 if ( !vals.contains( testVal ) )
355 if ( attributeIndex < 0 || attributeIndex >= layer->
fields().
count() )
360 QVariant value = feature.
attribute( attributeIndex );
375 valid = expr.
evaluate( &context ).toBool();
377 if ( expr.hasParserError() )
379 errors << QObject::tr(
"parser error: %1" ).arg( expr.parserErrorString() );
381 else if ( expr.hasEvalError() )
383 errors << QObject::tr(
"evaluation error: %1" ).arg( expr.evalErrorString() );
405 valid = valid && !value.isNull();
407 if ( value.isNull() )
409 errors << QObject::tr(
"value is NULL" );
429 valid = valid && !alreadyExists;
433 errors << QObject::tr(
"value is not unique" );
445 return features.isEmpty() ?
QgsFeature() : features.first();
454 result.reserve( featuresData.length() );
457 std::unique_ptr< QgsExpressionContext > tempContext;
462 evalContext = tempContext.get();
468 QMap<int, QSet<QVariant>> uniqueValueCaches;
470 for (
const auto &fd : qgis::as_const( featuresData ) )
479 for (
int idx = 0; idx < fields.
count(); ++idx )
482 bool checkUnique =
true;
487 if ( fd.attributes().contains( idx ) )
489 v = fd.attributes().value( idx );
493 if ( hasUniqueConstraint && ! uniqueValueCaches.contains( idx ) )
498 std::unique_ptr<QgsVectorLayer> unfilteredClone { layer->
clone( ) };
500 uniqueValueCaches[ idx ] = unfilteredClone->uniqueValues( idx );
511 if ( ( v.isNull() || ( hasUniqueConstraint
512 && uniqueValueCaches[ idx ].contains( v ) )
514 && defaultValueDefinition.
isValid() )
519 v = layer->
defaultValue( idx, newFeature, evalContext );
524 if ( ( v.isNull() || ( hasUniqueConstraint
525 && uniqueValueCaches[ idx ].contains( v ) ) )
530 if ( !providerDefault.isEmpty() )
539 if ( ( v.isNull() || ( checkUnique && hasUniqueConstraint
540 && uniqueValueCaches[ idx ].contains( v ) ) )
554 if ( v.isNull() && fd.attributes().contains( idx ) )
556 v = fd.attributes().value( idx );
562 if ( checkUnique && hasUniqueConstraint )
564 if ( uniqueValueCaches[ idx ].contains( v ) )
568 if ( uniqueValue.isValid() )
572 if ( hasUniqueConstraint )
573 uniqueValueCaches[ idx ].insert( v );
576 result.append( newFeature );
607 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
610 relation.referencingLayer()->startEditing();
612 const auto pairs = relation.fieldPairs();
618 childFeatureIds.insert(
duplicateFeature( relation.referencingLayer(), childFeature, project, depth, duplicateFeatureContext ).
id() );
622 duplicateFeatureContext.setDuplicatedFeatures( relation.referencingLayer(), childFeatureIds );
633 std::unique_ptr<QgsVectorLayerFeatureSource> featureSource;
637 #if QT_VERSION >= QT_VERSION_CHECK( 5, 10, 0 ) 638 Q_ASSERT( QThread::currentThread() == qApp->thread() || feedback );
652 return featureSource;
660 attributes.reserve( fields.
size() );
662 for (
const QgsField &field : fields )
665 attributes.append( index >= 0 ? feature.
attribute( index ) : QVariant( field.type() ) );
673 if ( lengthDiff > 0 )
679 else if ( lengthDiff < 0 )
683 attributes.reserve( fields.
count() );
686 attributes.append( QVariant( fields.
at( i ).
type() ) );
703 bool newFHasGeom = newFGeomType !=
704 QgsWkbTypes::GeometryType::UnknownGeometry &&
705 newFGeomType != QgsWkbTypes::GeometryType::NullGeometry;
706 bool layerHasGeom = inputWkbType !=
707 QgsWkbTypes::Type::NoGeometry &&
708 inputWkbType != QgsWkbTypes::Type::Unknown;
710 if ( newFHasGeom && ! layerHasGeom )
714 resultFeatures.append( _f );
719 if ( newFHasGeom && layerHasGeom && newF.
geometry().
wkbType() != inputWkbType )
744 std::unique_ptr< QgsAbstractGeometry > exterior( ( *part )->clone() );
745 if (
QgsCurve *curve = qgsgeometry_cast< QgsCurve * >( exterior.get() ) )
749 std::unique_ptr< QgsCurvePolygon > cp = qgis::make_unique< QgsCurvePolygon >();
750 cp->setExteriorRing( curve );
752 gc->addGeometry( cp.release() );
756 std::unique_ptr< QgsPolygon > p = qgis::make_unique< QgsPolygon >();
757 p->setExteriorRing( qgsgeometry_cast< QgsLineString * >( curve ) );
759 gc->addGeometry( p.release() );
773 std::unique_ptr< QgsMultiPoint > mp = qgis::make_unique< QgsMultiPoint >();
775 QSet< QgsPoint > added;
776 for (
auto vertex = source.vertices_begin(); vertex != source.vertices_end(); ++vertex )
778 if ( added.contains( *vertex ) )
780 mp->addGeometry( ( *vertex ).clone() );
781 added.insert( *vertex );
824 const QgsGeometryCollection *parts( static_cast< const QgsGeometryCollection * >( newGeom.constGet() ) );
830 resultFeatures.reserve( parts->partCount() );
831 for (
int i = 0; i < parts->partCount( ); i++ )
835 resultFeatures.append( _f );
840 resultFeatures.append( newF );
845 resultFeatures.append( newF );
848 return resultFeatures;
857 for (
const auto &_f : features )
859 resultFeatures.append( _f );
862 return resultFeatures;
867 QList<QgsVectorLayer *> layers;
868 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
869 for ( i = mDuplicatedFeatures.begin(); i != mDuplicatedFeatures.end(); ++i )
870 layers.append( i.key() );
876 return mDuplicatedFeatures[layer];
881 mDuplicatedFeatures.insert( layer, ids );
891 mGeometry( geometry ),
892 mAttributes( attributes )
bool isMeasure() const
Returns true if the geometry contains m values.
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
Class for parsing and evaluation of expressions (formerly called "search strings").
Wrapper for iterator of features from vector data provider or vector layer.
QSet< QgsFeatureId > QgsFeatureIds
static bool valueExists(const QgsVectorLayer *layer, int fieldIndex, const QVariant &value, const QgsFeatureIds &ignoreIds=QgsFeatureIds())
Returns true if the specified value already exists within a field.
int size() const
Returns number of items.
FieldOrigin fieldOrigin(int fieldIdx) const
Gets field's origin (value from an enumeration)
static QString quotedColumnRef(QString name)
Returns a quoted column reference (in double quotes)
void setFields(const QgsFields &fields, bool initAttributes=false)
Assign a field map with the feature to allow attribute access by attribute name.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
ConstraintStrength constraintStrength(Constraint constraint) const
Returns the strength of a field constraint, or ConstraintStrengthNotSet if the constraint is not pres...
bool isValid() const
Returns if this default value should be applied.
static std::unique_ptr< QgsVectorLayerFeatureSource > getFeatureSource(QPointer< QgsVectorLayer > layer, QgsFeedback *feedback=nullptr)
Gets the feature source from a QgsVectorLayer pointer.
static bool isMultiType(Type type)
Returns true if the WKB type is a multi type.
The QgsDefaultValue class provides a container for managing client side default values for fields...
Contains mainly the QMap with QgsVectorLayer and QgsFeatureIds do list all the duplicated features...
QList< QgsVectorLayer * > layers() const
Returns all the layers on which features have been duplicated.
QgsWkbTypes::Type wkbType() const FINAL
Returns the WKBType or WKBUnknown in case of error.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
QList< QgsFeature > QgsFeatureList
QgsWkbTypes::Type wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.)
ConstraintOrigin
Origin of constraints.
static QList< double > getDoubleValues(const QgsVectorLayer *layer, const QString &fieldOrExpression, bool &ok, bool selectedOnly=false, int *nullCount=nullptr, QgsFeedback *feedback=nullptr)
Fetches all double values from a specified field name or expression.
QgsAbstractGeometry::const_part_iterator const_parts_end() const
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry...
QgsAbstractGeometry::const_part_iterator const_parts_begin() const
Returns STL-style const iterator pointing to the first part of the geometry.
static QgsFeatureList createFeatures(const QgsVectorLayer *layer, const QgsFeaturesDataList &featuresData, QgsExpressionContext *context=nullptr)
Creates a set of new features ready for insertion into a layer.
QVariant evaluate()
Evaluate the feature and return the result.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
bool convertCompatible(QVariant &v) const
Converts the provided variant to a compatible format.
static std::unique_ptr< QgsGeometryCollection > createCollectionOfType(QgsWkbTypes::Type type)
Returns a new geometry collection matching a specified WKB type.
Container of fields for a vector layer.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
A geometry is the spatial representation of a feature.
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool setAttribute(int field, const QVariant &attr)
Set an attribute's value by field index.
static QList< QVariant > getValues(const QgsVectorLayer *layer, const QString &fieldOrExpression, bool &ok, bool selectedOnly=false, QgsFeedback *feedback=nullptr)
Fetches all values from a specified field name or expression.
virtual QgsAbstractGeometry * boundary() const =0
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
Stores information about constraints which may be present on a field.
Field comes from the underlying data provider of the vector layer (originIndex = index in provider's ...
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
static bool validateAttribute(const QgsVectorLayer *layer, const QgsFeature &feature, int attributeIndex, QStringList &errors, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthNotSet, QgsFieldConstraints::ConstraintOrigin origin=QgsFieldConstraints::ConstraintOriginNotSet)
Tests an attribute value to check whether it passes all constraints which are present on the correspo...
int count() const
Returns number of items.
static bool hasZ(Type type)
Tests whether a WKB type contains the z-dimension.
static QgsFeatureIterator getValuesIterator(const QgsVectorLayer *layer, const QString &fieldOrExpression, bool &ok, bool selectedOnly)
Create a feature iterator for a specified field name or expression.
Constraint was set at data provider.
Field has an expression constraint set. See constraintExpression().
QgsField at(int i) const
Gets field at particular index (must be in range 0..N-1)
int fieldOriginIndex(int fieldIdx) const
Gets field's origin index (its meaning is specific to each type of origin)
Base class for feedback objects to be used for cancellation of something running in a worker thread...
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...
bool isEditable() const FINAL
Returns true if the provider is in editing mode.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
Type
The WKB type describes the number of dimensions a geometry has.
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.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
Defines a relation between matching fields of the two involved tables of a relation.
static void matchAttributesToFields(QgsFeature &feature, const QgsFields &fields)
Matches the attributes in feature to the specified fields.
static QVariant createUniqueValueFromCache(const QgsVectorLayer *layer, int fieldIndex, const QSet< QVariant > &existingValues, const QVariant &seed=QVariant())
Returns a new attribute value for the specified field index which is guaranteed to be unique within r...
QgsFeatureIterator getSelectedFeatures(QgsFeatureRequest request=QgsFeatureRequest()) const
Returns an iterator of the selected features.
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
QgsFeatureData(const QgsGeometry &geometry=QgsGeometry(), const QgsAttributeMap &attributes=QgsAttributeMap())
Constructs a new QgsFeatureData with given geometry and attributes.
QString constraintDescription() const
Returns the descriptive name for the constraint expression.
void initAttributes(int fieldCount)
Initialize this feature with the given number of fields.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsAttributeMap attributes() const
Returns attributes.
static QgsFeature createFeature(const QgsVectorLayer *layer, const QgsGeometry &geometry=QgsGeometry(), const QgsAttributeMap &attributes=QgsAttributeMap(), QgsExpressionContext *context=nullptr)
Creates a new feature ready for insertion into a layer.
Encapsulate geometry and attributes for new features, to be passed to createFeatures.
void seed(uint32_t value)
QMap< int, QVariant > QgsAttributeMap
static GeometryType geometryType(Type type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
This class wraps a request for features to a vector layer (or directly its vector data provider)...
virtual QString defaultValueClause(int fieldIndex) const
Returns any default value clauses which are present at the provider for a specified field index...
Reads and writes project states.
QgsAttributeMap toMap() const
Returns a QgsAttributeMap of the attribute values.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
Abstract base class for curved geometry type.
QList< QgsRelation > referencedRelations(QgsVectorLayer *layer=nullptr) const
Gets all relations where this layer is the referenced part (i.e.
Encapsulate a field in an attribute table or data source.
QgsRelationManager relationManager
QgsExpressionContext createExpressionContext() const FINAL
This method needs to be reimplemented in all classes which implement this interface and return an exp...
static bool runOnMainThread(const Func &func, QgsFeedback *feedback=nullptr)
Guarantees that func is executed on the main thread.
static QgsFeatureList makeFeaturesCompatible(const QgsFeatureList &features, const QgsVectorLayer *layer)
Converts input features to be compatible with the given layer.
Partial snapshot of vector layer's state (only the members necessary for access to features) ...
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static QVariant createUniqueValue(const QgsVectorLayer *layer, int fieldIndex, const QVariant &seed=QVariant())
Returns a new attribute value for the specified field index which is guaranteed to be unique...
QgsGeometry geometry() const
Returns geometry.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
void setValid(bool validity)
Sets the validity of the feature.
QgsDefaultValue defaultValueDefinition(int index) const
Returns the definition of the expression used when calculating the default value for a field...
QgsFieldConstraints constraints
bool convertToMultiType()
Converts single type geometry into multitype geometry e.g.
bool isCanceled() const
Tells whether the operation has been canceled already.
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
ConstraintStrength
Strength of constraints.
static QgsFeature duplicateFeature(QgsVectorLayer *layer, const QgsFeature &feature, QgsProject *project, int depth, QgsDuplicateFeatureContext &duplicateFeatureContext)
Duplicates a feature and it's children (one level deep).
static bool isCurvedType(Type type)
Returns true if the WKB type is a curved type or can contain curved geometries.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
QgsFeatureIds duplicatedFeatures(QgsVectorLayer *layer) const
Returns the duplicated features in the given layer.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=nullptr) FINAL
Adds a single feature to the sink.
QgsFeatureRequest & setLimit(long limit)
Set the maximum number of features to request.
bool isEmpty() const
Checks whether the container is empty.
virtual bool setSubsetString(const QString &subset)
Sets the string (typically sql) used to define a subset of the layer.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
static bool hasM(Type type)
Tests whether a WKB type contains m values.
ConstraintOrigin constraintOrigin(Constraint constraint) const
Returns the origin of a field constraint, or ConstraintOriginNotSet if the constraint is not present ...
void appendScopes(const QList< QgsExpressionContextScope *> &scopes)
Appends a list of scopes to the end of the context.
QgsWkbTypes::GeometryType type
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
QList< int > QgsAttributeList
virtual bool dropMValue()=0
Drops any measure values which exist in the geometry.
bool nextFeature(QgsFeature &f)
static QString quotedValue(const QVariant &value)
Returns a string representation of a literal value, including appropriate quotations where required...
QString constraintExpression() const
Returns the constraint expression for the field, if set.
static QgsFeatureList makeFeatureCompatible(const QgsFeature &feature, const QgsVectorLayer *layer)
Converts input feature to be compatible with the given layer.
Geometry is not required. It may still be returned if e.g. required for a filter condition.
QVariant maximumValue(int index) const FINAL
Returns the maximum value for an attribute column or an invalid variant in case of error...
Represents a vector layer which manages a vector based data sets.
QVariant attribute(const QString &name) const
Lookup attribute value from attribute name.
virtual QgsAbstractGeometry * segmentize(double tolerance=M_PI/180., SegmentationToleranceType toleranceType=MaximumAngle) const
Returns a version of the geometry without curves.
bool is3D() const
Returns true if the geometry is 3D and contains a z-value.
virtual bool dropZValue()=0
Drops any z-dimensions which exist in the geometry.
Fix relation, related elements are part of the parent and a parent copy will copy any children or del...
QList< QgsVectorLayerUtils::QgsFeatureData > QgsFeaturesDataList
Alias for list of QgsFeatureData.
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
QgsFeatureRequest & setFlags(QgsFeatureRequest::Flags flags)
Sets flags that affect how features will be fetched.
QVariant defaultValue(int index, const QgsFeature &feature=QgsFeature(), QgsExpressionContext *context=nullptr) const
Returns the calculated default value for the specified field index.
Field must have a unique value.
virtual QVariant defaultValue(int fieldIndex) const
Returns any literal default values which are present at the provider for a specified field index...