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