QGIS API Documentation 3.43.0-Master (ac54a16a525)
qgsweakrelation.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsweakrelation.h - QgsWeakRelation
3
4 ---------------------
5 begin : 5.12.2019
6 copyright : (C) 2019 by Alessandro Pasotti
7 email : elpaso at itopen dot it
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16#ifndef QGSWEAKRELATION_H
17#define QGSWEAKRELATION_H
18
19#include "qgis_core.h"
20#include "qgsrelation.h"
21#include "qgsvectorlayerref.h"
22
41class CORE_EXPORT QgsWeakRelation
42{
43 public:
44
50 {
52 Referenced
53 };
54
59
65 QgsWeakRelation( const QString &relationId,
66 const QString &relationName,
67 const Qgis::RelationshipStrength strength,
68 const QString &referencingLayerId,
69 const QString &referencingLayerName,
70 const QString &referencingLayerSource,
71 const QString &referencingLayerProviderKey,
72 const QString &referencedLayerId,
73 const QString &referencedLayerName,
74 const QString &referencedLayerSource,
75 const QString &referencedLayerProviderKey
76 );
77
85#ifndef SIP_RUN
86 QList< QgsRelation > resolvedRelations( const QgsProject *project, QgsVectorLayerRef::MatchType matchType = QgsVectorLayerRef::MatchType::All ) const;
87#else
88 QList< QgsRelation > resolvedRelations( const QgsProject *project ) const;
89#endif
90
96 QString id() const { return mRelationId; }
97
103 QString name() const { return mRelationName; }
104
110 QgsVectorLayerRef referencingLayer() const SIP_SKIP;
111
119 QString referencingLayerSource() const;
120
128 QString referencingLayerProvider() const;
129
138 QString referencingLayerName() const;
139
147 void setReferencingLayer( const QString &sourceUri, const QString &provider );
148
154 QgsVectorLayerRef referencedLayer() const SIP_SKIP;
155
163 QString referencedLayerSource() const;
164
172 QString referencedLayerProvider() const;
173
182 QString referencedLayerName() const;
183
191 void setReferencedLayer( const QString &sourceUri, const QString &provider );
192
200 QgsVectorLayerRef mappingTable() const SIP_SKIP;
201
209 void setMappingTable( const QgsVectorLayerRef &table ) SIP_SKIP;
210
218 QString mappingTableSource() const;
219
227 QString mappingTableProvider() const;
228
237 QString mappingTableName() const;
238
246 void setMappingTable( const QString &sourceUri, const QString &provider );
247
253 QStringList referencingLayerFields() const { return mReferencingLayerFields; }
254
260 void setReferencingLayerFields( const QStringList &fields ) { mReferencingLayerFields = fields; }
261
269 QStringList mappingReferencingLayerFields() const { return mMappingReferencingLayerFields; }
270
278 void setMappingReferencingLayerFields( const QStringList &fields ) { mMappingReferencingLayerFields = fields; }
279
285 QStringList referencedLayerFields() const { return mReferencedLayerFields; }
286
292 void setReferencedLayerFields( const QStringList &fields ) { mReferencedLayerFields = fields; }
293
301 QStringList mappingReferencedLayerFields() const { return mMappingReferencedLayerFields; }
302
310 void setMappingReferencedLayerFields( const QStringList &fields ) { mMappingReferencedLayerFields = fields; }
311
315 Qgis::RelationshipStrength strength() const;
316
323 Qgis::RelationshipCardinality cardinality() const { return mCardinality; }
324
331 void setCardinality( Qgis::RelationshipCardinality cardinality ) { mCardinality = cardinality; }
332
350 QString forwardPathLabel() const { return mForwardPathLabel; }
351
369 QString backwardPathLabel() const { return mBackwardPathLabel; }
370
388 void setForwardPathLabel( const QString &label ) { mForwardPathLabel = label; }
389
407 void setBackwardPathLabel( const QString &label ) { mBackwardPathLabel = label; }
408
420 QString relatedTableType() const { return mRelatedTableType; }
421
433 void setRelatedTableType( const QString &type ) { mRelatedTableType = type; }
434
444 static QgsWeakRelation readXml( const QgsVectorLayer *layer, WeakRelationType type, const QDomNode &node, const QgsPathResolver resolver );
445
456 static void writeXml( const QgsVectorLayer *layer, WeakRelationType type, const QgsRelation &relation, QDomNode &node, QDomDocument &doc );
457
458#ifdef SIP_RUN
459 SIP_PYOBJECT __repr__();
460 % MethodCode
461
462 QString leftIdentifier;
463 if ( !sipCpp->referencedLayer().source.isEmpty() )
464 leftIdentifier = sipCpp->referencedLayer().source;
465
466 QString rightIdentifier;
467 if ( !sipCpp->referencingLayer().source.isEmpty() )
468 rightIdentifier = sipCpp->referencingLayer().source;
469
470 QString str;
471 if ( leftIdentifier.isEmpty() && rightIdentifier.isEmpty() )
472 str = QStringLiteral( "<QgsWeakRelation: %1>" ).arg( sipCpp->id() );
473 else
474 str = QStringLiteral( "<QgsWeakRelation: %1 - %2 -> %3>" ).arg( sipCpp->id(), leftIdentifier, rightIdentifier );
475
476 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
477 % End
478#endif
479
480 private:
481
482 QgsVectorLayerRef mReferencingLayer;
483 QgsVectorLayerRef mReferencedLayer;
484 QgsVectorLayerRef mMappingTable;
485
486 QString mRelationId;
487 QString mRelationName;
489
490 QStringList mReferencingLayerFields;
491 QStringList mMappingReferencingLayerFields;
492 QStringList mReferencedLayerFields;
493 QStringList mMappingReferencedLayerFields;
494
496 QString mForwardPathLabel;
497 QString mBackwardPathLabel;
498 QString mRelatedTableType;
499
500 friend class TestQgsWeakRelation;
501
502};
503
504#endif // QGSWEAKRELATION_H
RelationshipStrength
Relationship strength.
Definition qgis.h:4255
@ Association
Loose relation, related elements are not part of the parent and a parent copy will not copy any child...
RelationshipCardinality
Relationship cardinality.
Definition qgis.h:4267
@ OneToMany
One to many relationship.
Resolves relative paths into absolute paths and vice versa.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:107
Represents a relationship between two vector layers.
Definition qgsrelation.h:44
Represents a vector layer which manages a vector based dataset.
Represent a QgsRelation with possibly unresolved layers or unmatched fields.
WeakRelationType
Enum to distinguish if the layer is referenced or referencing.
@ Referencing
The layer is referencing (or the "child" / "right" layer in the relationship)
QStringList mappingReferencingLayerFields() const
Returns the list of fields from the mappingTable() involved in the relationship.
void setForwardPathLabel(const QString &label)
Sets the label of the forward path for the relationship.
QgsWeakRelation()
Default constructor for an invalid relation.
void setMappingReferencingLayerFields(const QStringList &fields)
Sets the list of fields from the mappingTable() involved in the relationship.
void setBackwardPathLabel(const QString &label)
Sets the label of the backward path for the relationship.
QString relatedTableType() const
Returns the type string of the related table.
void setReferencingLayerFields(const QStringList &fields)
Sets the list of fields from the referencingLayer() involved in the relationship.
QString name() const
Returns the relationship's name.
QString backwardPathLabel() const
Returns the label of the backward path for the relationship.
void setMappingReferencedLayerFields(const QStringList &fields)
Sets the list of fields from the mappingTable() involved in the relationship.
QString id() const
Returns the relationship's ID.
QString forwardPathLabel() const
Returns the label of the forward path for the relationship.
Qgis::RelationshipCardinality cardinality() const
Returns the relationship's cardinality.
void setCardinality(Qgis::RelationshipCardinality cardinality)
Sets the relationship's cardinality.
QStringList referencedLayerFields() const
Returns the list of fields from the referencedLayer() involved in the relationship.
QStringList mappingReferencedLayerFields() const
Returns the list of fields from the mappingTable() involved in the relationship.
void setRelatedTableType(const QString &type)
Sets the type string of the related table.
void setReferencedLayerFields(const QStringList &fields)
Sets the list of fields from the referencedLayer() involved in the relationship.
#define SIP_SKIP
Definition qgis_sip.h:126
MatchType
Flag for match type in weak resolution.