Branch data Line data Source code
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 : : 21 : : #include "qgsgeometrycheckcontext.h" 22 : : #include "qgsgeometrycheck.h" 23 : : #include "qgsgeometrycheckerror.h" 24 : : 25 : : /** 26 : : * \ingroup analysis 27 : : * \brief A duplicate geometry check error. 28 : : */ 29 : 0 : class ANALYSIS_EXPORT QgsGeometryDuplicateCheckError : public QgsGeometryCheckError 30 : : { 31 : : public: 32 : 3 : QgsGeometryDuplicateCheckError( const QgsGeometryCheck *check, 33 : : const QgsGeometryCheckerUtils::LayerFeature &layerFeature, 34 : : const QgsPointXY &errorLocation, 35 : : const QMap<QString, QgsFeaturePool *> &featurePools, 36 : : const QMap<QString, QList<QgsFeatureId>> &duplicates ) 37 : 3 : : QgsGeometryCheckError( check, layerFeature, errorLocation, QgsVertexId(), duplicatesString( featurePools, duplicates ) ) 38 : 3 : , mDuplicates( duplicates ) 39 : 6 : { } 40 : 3 : QMap<QString, QList<QgsFeatureId>> duplicates() const { return mDuplicates; } 41 : : 42 : 0 : bool isEqual( QgsGeometryCheckError *other ) const override 43 : : { 44 : 0 : return other->check() == check() && 45 : 0 : other->layerId() == layerId() && 46 : 0 : other->featureId() == featureId() && 47 : : // static_cast: since other->checker() == checker is only true if the types are actually the same 48 : 0 : static_cast<QgsGeometryDuplicateCheckError *>( other )->duplicates() == duplicates(); 49 : 0 : } 50 : : 51 : : private: 52 : : QMap<QString, QList<QgsFeatureId>> mDuplicates; 53 : : 54 : : static QString duplicatesString( const QMap<QString, QgsFeaturePool *> &featurePools, const QMap<QString, QList<QgsFeatureId>> &duplicates ); 55 : : }; 56 : : 57 : : /** 58 : : * \ingroup analysis 59 : : * \brief A duplicate geometry check. 60 : : */ 61 : 1 : class ANALYSIS_EXPORT QgsGeometryDuplicateCheck : public QgsGeometryCheck 62 : : { 63 : 6 : Q_DECLARE_TR_FUNCTIONS( QgsGeometryDuplicateCheck ) 64 : : public: 65 : 1 : explicit QgsGeometryDuplicateCheck( QgsGeometryCheckContext *context, const QVariantMap &configuration ) 66 : 1 : : QgsGeometryCheck( context, configuration ) {} 67 : : void collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids = LayerFeatureIds() ) const override; 68 : : void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override; 69 : : 70 : 1 : QList<QgsWkbTypes::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); } 71 : : Q_DECL_DEPRECATED QStringList resolutionMethods() const override; 72 : 0 : QString description() const override { return factoryDescription(); } 73 : 0 : QString id() const override { return factoryId(); } 74 : 0 : QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); } 75 : : 76 : 1 : static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes() {return {QgsWkbTypes::PointGeometry, QgsWkbTypes::LineGeometry, QgsWkbTypes::PolygonGeometry}; } 77 : : static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes().contains( layer->geometryType() ); } 78 : 0 : static QString factoryDescription() { return tr( "Duplicate" ); } 79 : : static QString factoryId(); 80 : : static QgsGeometryCheck::CheckType factoryCheckType(); 81 : : 82 : : enum ResolutionMethod { NoChange, RemoveDuplicates }; 83 : : }; 84 : : 85 : : #endif // QGS_GEOMETRY_DUPLICATE_CHECK_H