Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeometrycontainedcheck.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_COVER_CHECK_H 19 : : #define QGS_GEOMETRY_COVER_CHECK_H 20 : : 21 : : #include "qgsgeometrycheck.h" 22 : : #include "qgsvectorlayer.h" 23 : : #include "qgsgeometrycheckerror.h" 24 : : 25 : : /** 26 : : * \ingroup analysis 27 : : * \brief A contained check error. 28 : : */ 29 : 0 : class ANALYSIS_EXPORT QgsGeometryContainedCheckError : public QgsGeometryCheckError 30 : : { 31 : : public: 32 : 4 : QgsGeometryContainedCheckError( const QgsGeometryCheck *check, 33 : : const QgsGeometryCheckerUtils::LayerFeature &layerFeature, 34 : : const QgsPointXY &errorLocation, 35 : : const QgsGeometryCheckerUtils::LayerFeature &containingFeature 36 : : ) 37 : 4 : : QgsGeometryCheckError( check, layerFeature, errorLocation, QgsVertexId(), containingFeature.id(), ValueOther ) 38 : 4 : , mContainingFeature( qMakePair( containingFeature.layer()->id(), containingFeature.feature().id() ) ) 39 : 12 : { } 40 : 2 : const QPair<QString, QgsFeatureId> &containingFeature() const { return mContainingFeature; } 41 : : 42 : 0 : bool isEqual( QgsGeometryCheckError *other ) const override 43 : : { 44 : 0 : return other->check() == check() && 45 : 0 : other->featureId() == featureId() && 46 : 0 : static_cast<QgsGeometryContainedCheckError *>( other )->containingFeature() == containingFeature(); 47 : : } 48 : : 49 : : private: 50 : : QPair<QString, QgsFeatureId> mContainingFeature; 51 : : }; 52 : : 53 : : /** 54 : : * \ingroup analysis 55 : : * \brief A contained check. 56 : : */ 57 : 1 : class ANALYSIS_EXPORT QgsGeometryContainedCheck : public QgsGeometryCheck 58 : : { 59 : 9 : Q_DECLARE_TR_FUNCTIONS( QgsGeometryContainedCheck ) 60 : : public: 61 : : enum ResolutionMethod { Delete, NoChange }; 62 : : 63 : 1 : explicit QgsGeometryContainedCheck( QgsGeometryCheckContext *context, const QVariantMap &configuration ) 64 : 1 : : QgsGeometryCheck( context, configuration ) {} 65 : 40 : QList<QgsWkbTypes::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); } 66 : : void collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids = LayerFeatureIds() ) const override; 67 : : void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override; 68 : : Q_DECL_DEPRECATED QStringList resolutionMethods() const override; 69 : 0 : QString id() const override { return factoryId(); } 70 : 0 : QString description() const override { return factoryDescription(); } 71 : 0 : QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); } 72 : : 73 : 40 : static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes() {return {QgsWkbTypes::PointGeometry, QgsWkbTypes::LineGeometry, QgsWkbTypes::PolygonGeometry}; } 74 : : static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes().contains( layer->geometryType() ); } 75 : 0 : static QString factoryDescription() { return tr( "Within" ); } 76 : 0 : static QString factoryId() { return QStringLiteral( "QgsGeometryContainedCheck" ); } 77 : 0 : static QgsGeometryCheck::CheckType factoryCheckType() { return QgsGeometryCheck::FeatureCheck; } 78 : : }; 79 : : 80 : : #endif // QGS_GEOMETRY_COVER_CHECK_H