Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeometryselfintersectioncheck.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_SELFINTERSECTION_CHECK_H 19 : : #define QGS_GEOMETRY_SELFINTERSECTION_CHECK_H 20 : : 21 : : #include "qgsgeometryutils.h" 22 : : #include "qgssinglegeometrycheck.h" 23 : : 24 : : /** 25 : : * \ingroup analysis 26 : : * \brief A self intersection check error. 27 : : */ 28 : 0 : class ANALYSIS_EXPORT QgsGeometrySelfIntersectionCheckError : public QgsSingleGeometryCheckError 29 : : { 30 : : public: 31 : 5 : QgsGeometrySelfIntersectionCheckError( const QgsSingleGeometryCheck *check, 32 : : const QgsGeometry &geometry, 33 : : const QgsGeometry &errorLocation, 34 : : QgsVertexId vertexId, 35 : : const QgsGeometryUtils::SelfIntersection &intersection ) 36 : 5 : : QgsSingleGeometryCheckError( check, geometry, errorLocation, vertexId ) 37 : 5 : , mIntersection( intersection ) 38 : 10 : {} 39 : : 40 : 7 : const QgsGeometryUtils::SelfIntersection &intersection() const { return mIntersection; } 41 : : bool isEqual( const QgsSingleGeometryCheckError *other ) const override; 42 : : bool handleChanges( const QList<QgsGeometryCheck::Change> &changes ) override; 43 : : void update( const QgsSingleGeometryCheckError *other ) override; 44 : : 45 : : private: 46 : : QgsGeometryUtils::SelfIntersection mIntersection; 47 : : }; 48 : : 49 : : /** 50 : : * \ingroup analysis 51 : : * \brief A self intersection check. 52 : : */ 53 : 1 : class ANALYSIS_EXPORT QgsGeometrySelfIntersectionCheck : public QgsSingleGeometryCheck 54 : : { 55 : 3 : Q_DECLARE_TR_FUNCTIONS( QgsGeometrySelfIntersectionCheck ) 56 : : public: 57 : : enum ResolutionMethod 58 : : { 59 : : ToMultiObject, 60 : : ToSingleObjects, 61 : : NoChange 62 : : }; 63 : : 64 : 1 : explicit QgsGeometrySelfIntersectionCheck( const QgsGeometryCheckContext *context, const QVariantMap &configuration = QVariantMap() ) 65 : 2 : : QgsSingleGeometryCheck( context, 66 : 3 : configuration ) {} 67 : 1 : QList<QgsWkbTypes::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); } 68 : : void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override; 69 : : Q_DECL_DEPRECATED QStringList resolutionMethods() const override; 70 : 0 : QString description() const override { return factoryDescription(); } 71 : 0 : QString id() const override { return factoryId(); } 72 : 0 : QgsGeometryCheck::Flags flags() const override {return factoryFlags(); } 73 : 0 : QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); } 74 : : 75 : : QList<QgsSingleGeometryCheckError *> processGeometry( const QgsGeometry &geometry ) const override; 76 : : 77 : : ///@cond private 78 : : static QList<QgsWkbTypes::GeometryType> factoryCompatibleGeometryTypes() SIP_SKIP; 79 : : static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP; 80 : : static QString factoryDescription() SIP_SKIP; 81 : : static QgsGeometryCheck::Flags factoryFlags() SIP_SKIP; 82 : : static QString factoryId() SIP_SKIP; 83 : : static QgsGeometryCheck::CheckType factoryCheckType() SIP_SKIP; 84 : : ///@endcond private 85 : : 86 : : }; 87 : : 88 : : #endif // QGS_GEOMETRY_SELFINTERSECTION_CHECK_H