Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeometryholecheck.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 : : 16 : : #include "qgsgeometrycheckcontext.h" 17 : : #include "qgsgeometryholecheck.h" 18 : : #include "qgscurve.h" 19 : : #include "qgscurvepolygon.h" 20 : : #include "qgsfeaturepool.h" 21 : : #include "qgsgeometrycheckerror.h" 22 : : 23 : 1 : void QgsGeometryHoleCheck::collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids ) const 24 : : { 25 : 1 : Q_UNUSED( messages ) 26 : : 27 : 1 : QMap<QString, QgsFeatureIds> featureIds = ids.isEmpty() ? allLayerFeatureIds( featurePools ) : ids.toMap(); 28 : 1 : QgsGeometryCheckerUtils::LayerFeatures layerFeatures( featurePools, featureIds, compatibleGeometryTypes(), feedback, mContext ); 29 : 26 : for ( const QgsGeometryCheckerUtils::LayerFeature &layerFeature : layerFeatures ) 30 : : { 31 : 25 : const QgsAbstractGeometry *geom = layerFeature.geometry().constGet(); 32 : 51 : for ( int iPart = 0, nParts = geom->partCount(); iPart < nParts; ++iPart ) 33 : : { 34 : 26 : const QgsCurvePolygon *poly = dynamic_cast<const QgsCurvePolygon *>( QgsGeometryCheckerUtils::getGeomPart( geom, iPart ) ); 35 : 26 : if ( !poly ) 36 : : { 37 : 0 : continue; 38 : : } 39 : : // Rings after the first one are interiors 40 : 27 : for ( int iRing = 1, nRings = poly->ringCount( iPart ); iRing < nRings; ++iRing ) 41 : : { 42 : : 43 : 1 : QgsPoint pos = poly->interiorRing( iRing - 1 )->centroid(); 44 : 1 : errors.append( new QgsGeometryCheckError( this, layerFeature, pos, QgsVertexId( iPart, iRing ) ) ); 45 : 1 : } 46 : 26 : } 47 : : } 48 : 1 : } 49 : : 50 : 1 : void QgsGeometryHoleCheck::fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> & /*mergeAttributeIndices*/, Changes &changes ) const 51 : : { 52 : 1 : QgsFeaturePool *featurePool = featurePools[ error->layerId() ]; 53 : 1 : QgsFeature feature; 54 : 1 : if ( !featurePool->getFeature( error->featureId(), feature ) ) 55 : : { 56 : 0 : error->setObsolete(); 57 : 0 : return; 58 : : } 59 : 1 : QgsGeometry featureGeom = feature.geometry(); 60 : 1 : const QgsAbstractGeometry *geom = featureGeom.constGet(); 61 : 1 : QgsVertexId vidx = error->vidx(); 62 : : 63 : : // Check if ring still exists 64 : 1 : if ( !vidx.isValid( geom ) ) 65 : : { 66 : 0 : error->setObsolete(); 67 : 0 : return; 68 : : } 69 : : 70 : : // Fix error 71 : 1 : if ( method == NoChange ) 72 : : { 73 : 0 : error->setFixed( method ); 74 : 0 : } 75 : 1 : else if ( method == RemoveHoles ) 76 : : { 77 : 1 : deleteFeatureGeometryRing( featurePools, error->layerId(), feature, vidx.part, vidx.ring, changes ); 78 : 1 : error->setFixed( method ); 79 : 1 : } 80 : : else 81 : : { 82 : 0 : error->setFixFailed( tr( "Unknown method" ) ); 83 : : } 84 : 1 : } 85 : : 86 : 1 : QStringList QgsGeometryHoleCheck::resolutionMethods() const 87 : : { 88 : 1 : static QStringList methods = QStringList() << tr( "Remove hole" ) << tr( "No action" ); 89 : 1 : return methods; 90 : 0 : }