QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsgeometryduplicatecheck.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgeometryduplicatecheck.h
3 ---------------------
4 begin : September 2015
5 copyright : (C) 2014 by Sandro Mani / Sourcepole AG
6 email : smani at sourcepole dot ch
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
16#define SIP_NO_FILE
17
18#ifndef QGS_GEOMETRY_DUPLICATE_CHECK_H
19#define QGS_GEOMETRY_DUPLICATE_CHECK_H
20
22#include "qgsgeometrycheck.h"
24
30{
31 public:
34 const QgsGeometryCheckerUtils::LayerFeature &layerFeature,
35 const QgsPointXY &errorLocation,
36 const QMap<QString, QgsFeaturePool *> &featurePools,
37 const QMap<QString, QList<QgsFeatureId>> &duplicates )
38 : QgsGeometryCheckError( check, layerFeature, errorLocation, QgsVertexId(), duplicatesString( featurePools, duplicates ) )
39 , mDuplicates( duplicates )
40 { }
41
43 QMap<QString, QList<QgsFeatureId>> duplicates() const { return mDuplicates; }
44
46 bool isEqual( QgsGeometryCheckError *other ) const override
47 {
48 return other->check() == check() &&
49 other->layerId() == layerId() &&
50 other->featureId() == featureId() &&
51 // static_cast: since other->checker() == checker is only true if the types are actually the same
52 static_cast<QgsGeometryDuplicateCheckError *>( other )->duplicates() == duplicates();
53 }
54
55 private:
56 QMap<QString, QList<QgsFeatureId>> mDuplicates;
57
58 static QString duplicatesString( const QMap<QString, QgsFeaturePool *> &featurePools, const QMap<QString, QList<QgsFeatureId>> &duplicates );
59};
60
65class ANALYSIS_EXPORT QgsGeometryDuplicateCheck : public QgsGeometryCheck
66{
67 Q_DECLARE_TR_FUNCTIONS( QgsGeometryDuplicateCheck )
68 public:
69 explicit QgsGeometryDuplicateCheck( QgsGeometryCheckContext *context, const QVariantMap &configuration )
70 : QgsGeometryCheck( context, configuration ) {}
71 void collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids = LayerFeatureIds() ) const override;
72 void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override;
73
74 QList<Qgis::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); }
75 Q_DECL_DEPRECATED QStringList resolutionMethods() const override;
76 QString description() const override { return factoryDescription(); }
77 QString id() const override { return factoryId(); }
78 QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); }
79
81 static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes().contains( layer->geometryType() ); }
82 static QString factoryDescription() { return tr( "Duplicate" ); }
83 static QString factoryId();
84 static QgsGeometryCheck::CheckType factoryCheckType();
85
86 enum ResolutionMethod { NoChange, RemoveDuplicates };
87};
88
89#endif // QGS_GEOMETRY_DUPLICATE_CHECK_H
@ Polygon
Polygons.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition: qgsfeedback.h:44
Base configuration for geometry checks.
This represents an error reported by a geometry check.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
const QgsGeometryCheck * check() const
The geometry check that created this error.
const QString & layerId() const
The id of the layer on which this error has been detected.
This class implements a geometry check.
CheckType
The type of a check.
A layer feature combination to uniquely identify and access a feature in a set of layers.
A duplicate geometry check error.
bool isEqual(QgsGeometryCheckError *other) const override
Returns if the other error is equivalent.
QMap< QString, QList< QgsFeatureId > > duplicates() const
Returns the duplicates.
QgsGeometryDuplicateCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, const QMap< QString, QgsFeaturePool * > &featurePools, const QMap< QString, QList< QgsFeatureId > > &duplicates)
Constructor.
A duplicate geometry check.
static bool factoryIsCompatible(QgsVectorLayer *layer)
static QList< Qgis::GeometryType > factoryCompatibleGeometryTypes()
QList< Qgis::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
QString id() const override
Returns an id for this check.
QString description() const override
Returns a human readable description for this check.
QgsGeometryDuplicateCheck(QgsGeometryCheckContext *context, const QVariantMap &configuration)
A class to represent a 2D point.
Definition: qgspointxy.h:60
Represents a vector layer which manages a vector based data sets.
#define SIP_SKIP
Definition: qgis_sip.h:126
Utility class for identifying a unique vertex within a geometry.
Definition: qgsvertexid.h:30