QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsgeometryduplicatecheck.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsgeometryduplicatecheck.cpp
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
17
18#include "qgsfeaturepool.h"
19#include "qgsfeedback.h"
20#include "qgsgeometry.h"
22#include "qgsgeometryengine.h"
23#include "qgsspatialindex.h"
24#include "qgsvectorlayer.h"
25
26QString QgsGeometryDuplicateCheckError::duplicatesString( const QMap<QString, QgsFeaturePool *> &featurePools, const QMap<QString, QList<QgsFeatureId>> &duplicates )
27{
28 QStringList str;
29 for ( auto it = duplicates.constBegin(); it != duplicates.constEnd(); ++it )
30 {
31 str.append( featurePools[it.key()]->layerName() + ":" );
32 QStringList ids;
33 ids.reserve( it.value().length() );
34 for ( const QgsFeatureId id : it.value() )
35 {
36 ids.append( QString::number( id ) );
37 }
38 str.back() += ids.join( ',' );
39 }
40 return str.join( QLatin1String( "; " ) );
41}
42
43
44QgsGeometryCheck::Result QgsGeometryDuplicateCheck::collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids ) const
45{
46 QMap<QString, QSet<QVariant>> uniqueIds;
47 const QMap<QString, QgsFeatureIds> featureIds = ids.isEmpty() ? allLayerFeatureIds( featurePools ) : ids.toMap();
48 const QgsGeometryCheckerUtils::LayerFeatures layerFeaturesA( featurePools, featureIds, compatibleGeometryTypes(), feedback, mContext, true );
49 QList<QString> layerIds = featureIds.keys();
50 for ( const QgsGeometryCheckerUtils::LayerFeature &layerFeatureA : layerFeaturesA )
51 {
52 if ( feedback && feedback->isCanceled() )
53 {
55 }
56
57 if ( context()->uniqueIdFieldIndex != -1 )
58 {
59 QgsGeometryCheck::Result result = checkUniqueId( layerFeatureA, uniqueIds );
61 {
62 return result;
63 }
64 }
65
66 // Ensure each pair of layers only gets compared once: remove the current layer from the layerIds, but add it to the layerList for layerFeaturesB
67 layerIds.removeOne( layerFeatureA.layer()->id() );
68
69 const QgsGeometry geomA = layerFeatureA.geometry();
70 const QgsRectangle bboxA = geomA.boundingBox();
71 std::unique_ptr<QgsGeometryEngine> geomEngineA( QgsGeometry::createGeometryEngine( geomA.constGet(), mContext->tolerance, Qgis::GeosCreationFlags() ) );
72 if ( !geomEngineA->isValid() )
73 {
74 messages.append( tr( "Duplicate check failed for (%1): the geometry is invalid" ).arg( layerFeatureA.id() ) );
75 continue;
76 }
77 QMap<QString, QList<QgsFeatureId>> duplicates;
78
79 const Qgis::GeometryType geomType = geomA.type();
80 const QgsGeometryCheckerUtils::LayerFeatures layerFeaturesB( featurePools, QList<QString>() << layerFeatureA.layer()->id() << layerIds, bboxA, { geomType }, mContext );
81 for ( const QgsGeometryCheckerUtils::LayerFeature &layerFeatureB : layerFeaturesB )
82 {
83 if ( feedback && feedback->isCanceled() )
84 {
86 }
87
88 // only report overlaps within same layer once
89 if ( layerFeatureA.layer()->id() == layerFeatureB.layer()->id() && layerFeatureB.feature().id() >= layerFeatureA.feature().id() )
90 {
91 continue;
92 }
93
94 const QgsGeometry geomB = layerFeatureB.geometry();
95 QString errMsg;
96 const bool equal = geomEngineA->isEqual( geomB.constGet(), &errMsg );
97 if ( equal && errMsg.isEmpty() )
98 {
99 duplicates[layerFeatureB.layer()->id()].append( layerFeatureB.feature().id() );
100 }
101 else if ( !errMsg.isEmpty() )
102 {
103 messages.append( tr( "Duplicate check failed for (%1, %2): %3" ).arg( layerFeatureA.id(), layerFeatureB.id(), errMsg ) );
104 }
105 }
106 if ( !duplicates.isEmpty() )
107 {
108 errors.append( new QgsGeometryDuplicateCheckError( this, layerFeatureA, geomA.constGet()->centroid(), featurePools, duplicates ) );
109 }
110 }
112}
113
114void QgsGeometryDuplicateCheck::fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> & /*mergeAttributeIndices*/, Changes &changes ) const
115{
116 QgsFeaturePool *featurePoolA = featurePools[error->layerId()];
117 QgsFeature featureA;
118 if ( !featurePoolA->getFeature( error->featureId(), featureA ) )
119 {
120 error->setObsolete();
121 return;
122 }
123
124 if ( method == NoChange )
125 {
126 error->setFixed( method );
127 }
128 else if ( method == RemoveDuplicates )
129 {
130 const QgsGeometryCheckerUtils::LayerFeature layerFeatureA( featurePoolA, featureA, mContext, true );
131 std::unique_ptr<QgsGeometryEngine> geomEngineA( QgsGeometry::createGeometryEngine( layerFeatureA.geometry().constGet(), mContext->tolerance ) );
132
133 QgsGeometryDuplicateCheckError *duplicateError = static_cast<QgsGeometryDuplicateCheckError *>( error );
134 const QMap<QString, QList<QgsFeatureId>> duplicates = duplicateError->duplicates();
135 for ( auto it = duplicates.constBegin(); it != duplicates.constEnd(); ++it )
136 {
137 const QString layerIdB = it.key();
138 QgsFeaturePool *featurePoolB = featurePools[layerIdB];
139 const QList<QgsFeatureId> ids = it.value();
140 for ( const QgsFeatureId idB : ids )
141 {
142 QgsFeature featureB;
143 if ( !featurePoolB->getFeature( idB, featureB ) )
144 {
145 continue;
146 }
147 const QgsGeometryCheckerUtils::LayerFeature layerFeatureB( featurePoolB, featureB, mContext, true );
148 std::unique_ptr<QgsAbstractGeometry> diffGeom( geomEngineA->symDifference( layerFeatureB.geometry().constGet() ) );
149 if ( !diffGeom || diffGeom->isEmpty() )
150 {
151 featurePoolB->deleteFeature( featureB.id() );
152 changes[layerIdB][idB].append( Change( ChangeFeature, ChangeRemoved ) );
153 }
154 }
155 }
156 error->setFixed( method );
157 }
158 else
159 {
160 error->setFixFailed( tr( "Unknown method" ) );
161 }
162}
163
165{
166 static const QStringList methods = QStringList()
167 << tr( "No action" )
168 << tr( "Remove duplicates" );
169 return methods;
170}
171
173{
174 return QStringLiteral( "QgsGeometryDuplicateCheck" );
175}
176
QFlags< GeosCreationFlag > GeosCreationFlags
Geos geometry creation behavior flags.
Definition qgis.h:2158
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:358
virtual QgsPoint centroid() const
Returns the centroid of the geometry.
A feature pool is based on a vector layer and caches features.
virtual void deleteFeature(QgsFeatureId fid)=0
Removes a feature from this pool.
bool getFeature(QgsFeatureId id, QgsFeature &feature)
Retrieves the feature with the specified id into feature.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsFeatureId id
Definition qgsfeature.h:66
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
This represents an error reported by a geometry check.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
void setFixed(int method)
Set the status to fixed and specify the method that has been used to fix the error.
void setFixFailed(const QString &reason)
Set the error status to failed and specify the reason for failure.
void setObsolete()
Set the error status to obsolete.
const QString & layerId() const
The id of the layer on which this error has been detected.
QMap< QString, QMap< QgsFeatureId, QList< QgsGeometryCheck::Change > > > Changes
A collection of changes.
const QgsGeometryCheckContext * mContext
@ ChangeFeature
This change happens on feature level.
CheckType
The type of a check.
@ FeatureCheck
The check controls geometries as a whole.
QMap< QString, QgsFeatureIds > allLayerFeatureIds(const QMap< QString, QgsFeaturePool * > &featurePools) const
Returns all layers and feature ids.
Result checkUniqueId(const QgsGeometryCheckerUtils::LayerFeature layerFeature, QMap< QString, QSet< QVariant > > &uniqueIds) const
Checks that there are no duplicated unique IDs.
Result
Result of the geometry checker operation.
@ Canceled
User canceled calculation.
@ Success
Operation completed successfully.
@ ChangeRemoved
Something has been removed.
const QgsGeometryCheckContext * context() const
Returns the context.
A layer feature combination to uniquely identify and access a feature in a set of layers.
QgsGeometry geometry() const
Returns the geometry of this feature.
Contains a set of layers and feature ids in those layers to pass to a geometry check.
A duplicate geometry check error.
QMap< QString, QList< QgsFeatureId > > duplicates() const
Returns the duplicates.
static QgsGeometryCheck::CheckType factoryCheckType()
QList< Qgis::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
Q_DECL_DEPRECATED QStringList resolutionMethods() const override
Returns a list of descriptions for available resolutions for errors.
QgsGeometryCheck::Result collectErrors(const QMap< QString, QgsFeaturePool * > &featurePools, QList< QgsGeometryCheckError * > &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids=LayerFeatureIds()) const override
The main worker method.
void fixError(const QMap< QString, QgsFeaturePool * > &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const override
Fixes the error error with the specified method.
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.
Qgis::GeometryType type
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
A rectangle specified with double values.
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
Descripts a change to fix a geometry.
A list of layers and feature ids for each of these layers.
QMap< QString, QgsFeatureIds > toMap() const