QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsgeometrycontainedcheck.h
Go to the documentation of this file.
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 
30 {
31  public:
33  const QgsGeometryCheckerUtils::LayerFeature &layerFeature,
34  const QgsPointXY &errorLocation,
35  const QgsGeometryCheckerUtils::LayerFeature &containingFeature
36  )
37  : QgsGeometryCheckError( check, layerFeature, errorLocation, QgsVertexId(), containingFeature.id(), ValueOther )
38  , mContainingFeature( qMakePair( containingFeature.layer()->id(), containingFeature.feature().id() ) )
39  { }
40  const QPair<QString, QgsFeatureId> &containingFeature() const { return mContainingFeature; }
41 
42  bool isEqual( QgsGeometryCheckError *other ) const override
43  {
44  return other->check() == check() &&
45  other->featureId() == featureId() &&
46  static_cast<QgsGeometryContainedCheckError *>( other )->containingFeature() == containingFeature();
47  }
48 
49  private:
50  QPair<QString, QgsFeatureId> mContainingFeature;
51 };
52 
57 class ANALYSIS_EXPORT QgsGeometryContainedCheck : public QgsGeometryCheck
58 {
59  Q_DECLARE_TR_FUNCTIONS( QgsGeometryContainedCheck )
60  public:
61  enum ResolutionMethod { Delete, NoChange };
62 
63  explicit QgsGeometryContainedCheck( QgsGeometryCheckContext *context, const QVariantMap &configuration )
64  : QgsGeometryCheck( context, configuration ) {}
65  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  QString id() const override { return factoryId(); }
70  QString description() const override { return factoryDescription(); }
71  QgsGeometryCheck::CheckType checkType() const override { return factoryCheckType(); }
72 
74  static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes().contains( layer->geometryType() ); }
75  static QString factoryDescription() { return tr( "Within" ); }
76  static QString factoryId() { return QStringLiteral( "QgsGeometryContainedCheck" ); }
78 };
79 
80 #endif // QGS_GEOMETRY_COVER_CHECK_H
QgsGeometryContainedCheck
A contained check.
Definition: qgsgeometrycontainedcheck.h:57
QgsGeometryContainedCheck::compatibleGeometryTypes
QList< QgsWkbTypes::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
Definition: qgsgeometrycontainedcheck.h:65
QgsGeometryCheckError::check
const QgsGeometryCheck * check() const
The geometry check that created this error.
Definition: qgsgeometrycheckerror.h:80
QgsGeometryContainedCheckError::QgsGeometryContainedCheckError
QgsGeometryContainedCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, const QgsGeometryCheckerUtils::LayerFeature &containingFeature)
Definition: qgsgeometrycontainedcheck.h:32
QgsGeometryContainedCheck::checkType
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
Definition: qgsgeometrycontainedcheck.h:71
QgsGeometryCheckError::featureId
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
Definition: qgsgeometrycheckerror.h:90
QgsGeometryContainedCheckError::isEqual
bool isEqual(QgsGeometryCheckError *other) const override
Check if this error is equal to other.
Definition: qgsgeometrycontainedcheck.h:42
QgsGeometryContainedCheckError::containingFeature
const QPair< QString, QgsFeatureId > & containingFeature() const
Definition: qgsgeometrycontainedcheck.h:40
QgsGeometryCheck::resolutionMethods
virtual Q_DECL_DEPRECATED QStringList resolutionMethods() const
Returns a list of descriptions for available resolutions for errors.
Definition: qgsgeometrycheck.cpp:77
qgsgeometrycheckerror.h
QgsGeometryCheck::collectErrors
virtual void collectErrors(const QMap< QString, QgsFeaturePool * > &featurePools, QList< QgsGeometryCheckError * > &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids=QgsGeometryCheck::LayerFeatureIds()) const =0
The main worker method.
QgsWkbTypes::PolygonGeometry
@ PolygonGeometry
Definition: qgswkbtypes.h:144
QgsGeometryCheck
This class implements a geometry check.
Definition: qgsgeometrycheck.h:91
QgsGeometryCheck::fixError
virtual void fixError(const QMap< QString, QgsFeaturePool * > &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const
Fixes the error error with the specified method.
Definition: qgsgeometrycheck.cpp:50
SIP_SKIP
#define SIP_SKIP
Definition: qgis_sip.h:126
QgsGeometryContainedCheck::factoryCompatibleGeometryTypes
static QList< QgsWkbTypes::GeometryType > factoryCompatibleGeometryTypes()
Definition: qgsgeometrycontainedcheck.h:73
qgsgeometrycheck.h
QgsGeometryContainedCheck::factoryDescription
static QString factoryDescription()
Definition: qgsgeometrycontainedcheck.h:75
QgsGeometryContainedCheck::id
QString id() const override
Returns an id for this check.
Definition: qgsgeometrycontainedcheck.h:69
QgsFeedback
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition: qgsfeedback.h:44
QgsGeometryContainedCheck::factoryIsCompatible
static bool factoryIsCompatible(QgsVectorLayer *layer)
Definition: qgsgeometrycontainedcheck.h:74
QgsGeometryCheckContext
Base configuration for geometry checks.
Definition: qgsgeometrycheckcontext.h:31
QgsGeometryCheckerUtils::LayerFeature
A layer feature combination to uniquely identify and access a feature in a set of layers.
Definition: qgsgeometrycheckerutils.h:51
QgsGeometryContainedCheck::description
QString description() const override
Returns a human readable description for this check.
Definition: qgsgeometrycontainedcheck.h:70
QgsGeometryContainedCheck::QgsGeometryContainedCheck
QgsGeometryContainedCheck(QgsGeometryCheckContext *context, const QVariantMap &configuration)
Definition: qgsgeometrycontainedcheck.h:63
qgsvectorlayer.h
QgsPointXY
A class to represent a 2D point.
Definition: qgspointxy.h:58
QgsWkbTypes::LineGeometry
@ LineGeometry
Definition: qgswkbtypes.h:143
QgsWkbTypes::PointGeometry
@ PointGeometry
Definition: qgswkbtypes.h:142
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:391
QgsGeometryCheck::CheckType
CheckType
The type of a check.
Definition: qgsgeometrycheck.h:154
QgsVertexId
Utility class for identifying a unique vertex within a geometry.
Definition: qgsvertexid.h:30
QgsGeometryContainedCheck::factoryId
static QString factoryId()
Definition: qgsgeometrycontainedcheck.h:76
QgsGeometryCheck::FeatureCheck
@ FeatureCheck
The check controls geometries as a whole.
Definition: qgsgeometrycheck.h:157
QgsGeometryCheckError
This represents an error reported by a geometry check.
Definition: qgsgeometrycheckerror.h:35
QgsGeometryContainedCheckError
A contained check error.
Definition: qgsgeometrycontainedcheck.h:29
QgsGeometryContainedCheck::ResolutionMethod
ResolutionMethod
Definition: qgsgeometrycontainedcheck.h:61
QgsGeometryContainedCheck::factoryCheckType
static QgsGeometryCheck::CheckType factoryCheckType()
Definition: qgsgeometrycontainedcheck.h:77