Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeometrypointcoveredbylinecheck.cpp 3 : : --------------------- 4 : : begin : June 2017 5 : : copyright : (C) 2017 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 "qgsgeometrypointcoveredbylinecheck.h" 18 : : #include "qgslinestring.h" 19 : : #include "qgsfeaturepool.h" 20 : : #include "qgsgeometrycheckerror.h" 21 : : 22 : 1 : void QgsGeometryPointCoveredByLineCheck::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, true ); 28 : 8 : for ( const QgsGeometryCheckerUtils::LayerFeature &layerFeature : layerFeatures ) 29 : : { 30 : 7 : const QgsAbstractGeometry *geom = layerFeature.geometry().constGet(); 31 : 14 : for ( int iPart = 0, nParts = geom->partCount(); iPart < nParts; ++iPart ) 32 : : { 33 : 7 : const QgsPoint *point = dynamic_cast<const QgsPoint *>( QgsGeometryCheckerUtils::getGeomPart( geom, iPart ) ); 34 : 7 : if ( !point ) 35 : : { 36 : : // Should not happen 37 : 0 : continue; 38 : : } 39 : : // Check that point lies on a line 40 : 7 : bool touches = false; 41 : 14 : QgsRectangle rect( point->x() - mContext->tolerance, point->y() - mContext->tolerance, 42 : 7 : point->x() + mContext->tolerance, point->y() + mContext->tolerance ); 43 : 7 : QgsGeometryCheckerUtils::LayerFeatures checkFeatures( featurePools, featureIds.keys(), rect, {QgsWkbTypes::LineGeometry}, mContext ); 44 : 9 : for ( const QgsGeometryCheckerUtils::LayerFeature &checkFeature : checkFeatures ) 45 : : { 46 : 2 : const QgsAbstractGeometry *testGeom = checkFeature.geometry().constGet(); 47 : 2 : for ( int jPart = 0, mParts = testGeom->partCount(); jPart < mParts; ++jPart ) 48 : : { 49 : 2 : const QgsLineString *testLine = dynamic_cast<const QgsLineString *>( QgsGeometryCheckerUtils::getGeomPart( testGeom, jPart ) ); 50 : 2 : if ( !testLine ) 51 : : { 52 : 0 : continue; 53 : : } 54 : 2 : if ( QgsGeometryCheckerUtils::pointOnLine( *point, testLine, mContext->tolerance ) ) 55 : : { 56 : 2 : touches = true; 57 : 2 : break; 58 : : } 59 : 0 : } 60 : 2 : if ( touches ) 61 : : { 62 : 2 : break; 63 : : } 64 : : } 65 : 7 : if ( touches ) 66 : : { 67 : 2 : continue; 68 : : } 69 : 5 : errors.append( new QgsGeometryCheckError( this, layerFeature, *point, QgsVertexId( iPart, 0, 0 ) ) ); 70 : 7 : } 71 : : } 72 : 1 : } 73 : : 74 : 0 : void QgsGeometryPointCoveredByLineCheck::fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> & /*mergeAttributeIndices*/, Changes & /*changes*/ ) const 75 : : { 76 : 0 : Q_UNUSED( featurePools ) 77 : : 78 : 0 : if ( method == NoChange ) 79 : : { 80 : 0 : error->setFixed( method ); 81 : 0 : } 82 : : else 83 : : { 84 : 0 : error->setFixFailed( tr( "Unknown method" ) ); 85 : : } 86 : 0 : } 87 : : 88 : 0 : QStringList QgsGeometryPointCoveredByLineCheck::resolutionMethods() const 89 : : { 90 : 0 : static QStringList methods = QStringList() << tr( "No action" ); 91 : 0 : return methods; 92 : 0 : } 93 : : 94 : 0 : QgsGeometryCheck::CheckType QgsGeometryPointCoveredByLineCheck::factoryCheckType() 95 : : { 96 : 0 : return QgsGeometryCheck::FeatureNodeCheck; 97 : : }