QGIS API Documentation 3.99.0-Master (c22de0620c0)
Loading...
Searching...
No Matches
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
17#ifndef QGS_GEOMETRY_COVER_CHECK_H
18#define QGS_GEOMETRY_COVER_CHECK_H
19
20#include "qgsgeometrycheck.h"
22#include "qgsvectorlayer.h"
23
24#include <QString>
25
26#define SIP_NO_FILE
27
28using namespace Qt::StringLiterals;
29
35{
36 public:
38 : QgsGeometryCheckError( check, layerFeature, errorLocation, QgsVertexId(), containingFeature.id(), ValueOther )
39 , mContainingFeature( qMakePair( containingFeature.layer()->id(), containingFeature.feature().id() ) )
40 {}
41 const QPair<QString, QgsFeatureId> &containingFeature() const { return mContainingFeature; }
42
43 bool isEqual( QgsGeometryCheckError *other ) const override
44 {
45 return other->check() == check() && other->featureId() == featureId() && static_cast<QgsGeometryContainedCheckError *>( other )->containingFeature() == containingFeature();
46 }
47
48 private:
49 QPair<QString, QgsFeatureId> mContainingFeature;
50};
51
56class ANALYSIS_EXPORT QgsGeometryContainedCheck : public QgsGeometryCheck
57{
58 Q_DECLARE_TR_FUNCTIONS( QgsGeometryContainedCheck )
59 public:
65
66 explicit QgsGeometryContainedCheck( QgsGeometryCheckContext *context, const QVariantMap &configuration )
67 : QgsGeometryCheck( context, configuration ) {}
68 QList<Qgis::GeometryType> compatibleGeometryTypes() const override { return factoryCompatibleGeometryTypes(); }
69 QgsGeometryCheck::Result collectErrors( const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids = LayerFeatureIds() ) const override;
70 void fixError( const QMap<QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap<QString, int> &mergeAttributeIndices, Changes &changes ) const override;
71 Q_DECL_DEPRECATED QStringList resolutionMethods() const override;
72 QString id() const override { return factoryId(); }
73 QString description() const override { return factoryDescription(); }
75
77 static bool factoryIsCompatible( QgsVectorLayer *layer ) SIP_SKIP { return factoryCompatibleGeometryTypes().contains( layer->geometryType() ); }
78 static QString factoryDescription() { return tr( "Within" ); }
79 static QString factoryId() { return u"QgsGeometryContainedCheck"_s; }
81};
82
83#endif // QGS_GEOMETRY_COVER_CHECK_H
@ Point
Points.
Definition qgis.h:377
@ Line
Lines.
Definition qgis.h:378
@ Polygon
Polygons.
Definition qgis.h:379
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Base configuration for geometry checks.
This represents an error reported by a geometry check.
@ ValueOther
The value if of another type.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
QgsGeometryCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, QgsVertexId vidx=QgsVertexId(), const QVariant &value=QVariant(), ValueType valueType=ValueOther)
Create a new geometry check error with the parent check and for the layerFeature pair at the errorLoc...
const QgsGeometryCheck * check() const
The geometry check that created this error.
Base class for geometry checks.
CheckType
The type of a check.
@ FeatureCheck
The check controls geometries as a whole.
Result
Result of the geometry checker operation.
QgsGeometryCheck(const QgsGeometryCheckContext *context, const QVariantMap &configuration)
Create a new geometry check.
const QgsGeometryCheckContext * context() const
Returns the context.
A layer feature combination to uniquely identify and access a feature in a set of layers.
bool isEqual(QgsGeometryCheckError *other) const override
Check if this error is equal to other.
const QPair< QString, QgsFeatureId > & containingFeature() const
QgsGeometryContainedCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, const QgsGeometryCheckerUtils::LayerFeature &containingFeature)
static QgsGeometryCheck::CheckType factoryCheckType()
static bool factoryIsCompatible(QgsVectorLayer *layer)
static QList< Qgis::GeometryType > factoryCompatibleGeometryTypes()
QList< Qgis::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
QString description() const override
Returns a human readable description for this check.
QString id() const override
Returns an id for this check.
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
QgsGeometryContainedCheck(QgsGeometryCheckContext *context, const QVariantMap &configuration)
Represents a 2D point.
Definition qgspointxy.h:62
Represents a vector layer which manages a vector based dataset.
#define SIP_SKIP
Definition qgis_sip.h:133
void CPL_STDCALL collectErrors(CPLErr, int, const char *msg)
Utility class for identifying a unique vertex within a geometry.
Definition qgsvertexid.h:34