QGIS API Documentation  3.22.4-Białowieża (ce8e65e95e)
qgsrelation.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrelation.cpp
3  --------------------------------------
4  Date : 29.4.2013
5  Copyright : (C) 2013 Matthias Kuhn
6  Email : matthias at opengis 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 "qgsrelation.h"
17 
18 #include "qgsapplication.h"
19 #include "qgsfeatureiterator.h"
20 #include "qgslogger.h"
21 #include "qgsproject.h"
22 #include "qgsvectorlayer.h"
23 #include "qgsrelation_p.h"
24 #include "qgspolymorphicrelation.h"
25 #include "qgsrelationmanager.h"
26 
28  : d( new QgsRelationPrivate() )
29 {
30 }
31 
33  : d( new QgsRelationPrivate() )
34  , mContext( context )
35 {
36 }
37 
38 QgsRelation::~QgsRelation() = default;
39 
41  : d( other.d )
42  , mContext( other.mContext )
43 {
44 }
45 
47 {
48  d = other.d;
49  mContext = other.mContext;
50  return *this;
51 }
52 
53 QgsRelation QgsRelation::createFromXml( const QDomNode &node, QgsReadWriteContext &context, const QgsRelationContext &relationContext )
54 {
55  QDomElement elem = node.toElement();
56 
57  if ( elem.tagName() != QLatin1String( "relation" ) )
58  {
59  QgsLogger::warning( QApplication::translate( "QgsRelation", "Cannot create relation. Unexpected tag '%1'" ).arg( elem.tagName() ) );
60  }
61 
62  QgsRelation relation( relationContext );
63 
64  QString referencingLayerId = elem.attribute( QStringLiteral( "referencingLayer" ) );
65  QString referencedLayerId = elem.attribute( QStringLiteral( "referencedLayer" ) );
66  QString id = elem.attribute( QStringLiteral( "id" ) );
67  QString name = context.projectTranslator()->translate( QStringLiteral( "project:relations" ), elem.attribute( QStringLiteral( "name" ) ) );
68  QString strength = elem.attribute( QStringLiteral( "strength" ) );
69 
70  QMap<QString, QgsMapLayer *> mapLayers = relationContext.project()->mapLayers();
71 
74 
75  if ( !referencingLayer )
76  {
77  QgsLogger::warning( QApplication::translate( "QgsRelation", "Relation defined for layer '%1' which does not exist." ).arg( referencingLayerId ) );
78  }
80  {
81  QgsLogger::warning( QApplication::translate( "QgsRelation", "Relation defined for layer '%1' which is not of type VectorLayer." ).arg( referencingLayerId ) );
82  }
83 
84  if ( !referencedLayer )
85  {
86  QgsLogger::warning( QApplication::translate( "QgsRelation", "Relation defined for layer '%1' which does not exist." ).arg( referencedLayerId ) );
87  }
89  {
90  QgsLogger::warning( QApplication::translate( "QgsRelation", "Relation defined for layer '%1' which is not of type VectorLayer." ).arg( referencedLayerId ) );
91  }
92 
93  relation.d->mReferencingLayerId = referencingLayerId;
94  relation.d->mReferencingLayer = qobject_cast<QgsVectorLayer *>( referencingLayer );
95  relation.d->mReferencedLayerId = referencedLayerId;
96  relation.d->mReferencedLayer = qobject_cast<QgsVectorLayer *>( referencedLayer );
97  relation.d->mRelationId = id;
98  relation.d->mRelationName = name;
99  relation.d->mRelationStrength = qgsEnumKeyToValue<QgsRelation::RelationStrength>( strength, RelationStrength::Association );
100 
101  QDomNodeList references = elem.elementsByTagName( QStringLiteral( "fieldRef" ) );
102  for ( int i = 0; i < references.size(); ++i )
103  {
104  QDomElement refEl = references.at( i ).toElement();
105 
106  QString referencingField = refEl.attribute( QStringLiteral( "referencingField" ) );
107  QString referencedField = refEl.attribute( QStringLiteral( "referencedField" ) );
108 
109  relation.addFieldPair( referencingField, referencedField );
110  }
111 
112  relation.updateRelationStatus();
113 
114  return relation;
115 }
116 
117 void QgsRelation::writeXml( QDomNode &node, QDomDocument &doc ) const
118 {
119  QDomElement elem = doc.createElement( QStringLiteral( "relation" ) );
120  elem.setAttribute( QStringLiteral( "id" ), d->mRelationId );
121  elem.setAttribute( QStringLiteral( "name" ), d->mRelationName );
122  elem.setAttribute( QStringLiteral( "referencingLayer" ), d->mReferencingLayerId );
123  elem.setAttribute( QStringLiteral( "referencedLayer" ), d->mReferencedLayerId );
124  elem.setAttribute( QStringLiteral( "strength" ), qgsEnumValueToKey<RelationStrength>( d->mRelationStrength ) );
125 
126  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
127  {
128  QDomElement referenceElem = doc.createElement( QStringLiteral( "fieldRef" ) );
129  referenceElem.setAttribute( QStringLiteral( "referencingField" ), pair.first );
130  referenceElem.setAttribute( QStringLiteral( "referencedField" ), pair.second );
131  elem.appendChild( referenceElem );
132  }
133 
134  node.appendChild( elem );
135 }
136 
137 void QgsRelation::setId( const QString &id )
138 {
139  d.detach();
140  d->mRelationId = id;
141 
143 }
144 
145 void QgsRelation::setName( const QString &name )
146 {
147  d.detach();
148  d->mRelationName = name;
149 }
150 
151 
153 {
154  d.detach();
155  d->mRelationStrength = strength;
156 }
157 
158 void QgsRelation::setReferencingLayer( const QString &id )
159 {
160  d.detach();
161  d->mReferencingLayerId = id;
162 
164 }
165 
166 void QgsRelation::setReferencedLayer( const QString &id )
167 {
168  d.detach();
169  d->mReferencedLayerId = id;
170 
172 }
173 
174 void QgsRelation::addFieldPair( const QString &referencingField, const QString &referencedField )
175 {
176  d.detach();
177  d->mFieldPairs << FieldPair( referencingField, referencedField );
179 }
180 
181 void QgsRelation::addFieldPair( const FieldPair &fieldPair )
182 {
183  d.detach();
184  d->mFieldPairs << fieldPair;
186 }
187 
189 {
191 }
192 
194 {
195  QString filter = getRelatedFeaturesFilter( feature );
196  QgsDebugMsgLevel( QStringLiteral( "Filter conditions: '%1'" ).arg( filter ), 2 );
197 
198  QgsFeatureRequest myRequest;
199  myRequest.setFilterExpression( filter );
200  return myRequest;
201 }
202 
203 QString QgsRelation::getRelatedFeaturesFilter( const QgsFeature &feature ) const
204 {
205  QStringList conditions;
206 
207  if ( ! d->mPolymorphicRelationId.isEmpty() )
208  {
210  if ( polyRel.isValid() )
211  {
213  }
214  else
215  {
216  QgsDebugMsg( "The polymorphic relation is invalid" );
217  conditions << QStringLiteral( " FALSE " );
218  }
219  }
220 
221  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
222  {
223  QVariant val( feature.attribute( pair.referencedField() ) );
224  conditions << QgsExpression::createFieldEqualityExpression( pair.referencingField(), val );
225  }
226 
227  return conditions.join( QLatin1String( " AND " ) );
228 }
229 
231 {
232  QStringList conditions;
233 
234  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
235  {
236  int referencingIdx = referencingLayer()->fields().lookupField( pair.referencingField() );
237  conditions << QgsExpression::createFieldEqualityExpression( pair.referencedField(), attributes.at( referencingIdx ) );
238  }
239 
240  QgsFeatureRequest myRequest;
241 
242  QgsDebugMsgLevel( QStringLiteral( "Filter conditions: '%1'" ).arg( conditions.join( " AND " ) ), 2 );
243 
244  myRequest.setFilterExpression( conditions.join( QLatin1String( " AND " ) ) );
245 
246  return myRequest;
247 }
248 
250 {
251  return getReferencedFeatureRequest( feature.attributes() );
252 }
253 
255 {
256  QgsFeatureRequest request = getReferencedFeatureRequest( feature );
257 
258  QgsFeature f;
259  d->mReferencedLayer->getFeatures( request ).nextFeature( f );
260  return f;
261 }
262 
263 QString QgsRelation::name() const
264 {
265  return d->mRelationName;
266 }
267 
269 {
270  return d->mRelationStrength;
271 }
272 
273 QString QgsRelation::id() const
274 {
275  return d->mRelationId;
276 }
277 
279 {
280  if ( !d->mFieldPairs.isEmpty() )
281  {
282  const QgsRelation::FieldPair fieldPair = d->mFieldPairs.at( 0 );
283  d->mRelationId = QStringLiteral( "%1_%2_%3_%4" )
284  .arg( referencingLayerId(),
285  fieldPair.referencingField(),
287  fieldPair.referencedField() );
288  }
290 }
291 
293 {
294  return d->mReferencingLayerId;
295 }
296 
298 {
299  return d->mReferencingLayer;
300 }
301 
303 {
304  return d->mReferencedLayerId;
305 }
306 
308 {
309  return d->mReferencedLayer;
310 }
311 
312 QList<QgsRelation::FieldPair> QgsRelation::fieldPairs() const
313 {
314  return d->mFieldPairs;
315 }
316 
318 {
319  QgsAttributeList attrs;
320  attrs.reserve( d->mFieldPairs.size() );
321  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
322  {
323  attrs << d->mReferencedLayer->fields().lookupField( pair.second );
324  }
325  return attrs;
326 }
327 
329 {
330  QgsAttributeList attrs;
331 
332  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
333  {
334  attrs << d->mReferencingLayer->fields().lookupField( pair.first );
335  }
336  return attrs;
337 
338 }
339 
341 {
342  return d->mValid && !d->mReferencingLayer.isNull() && !d->mReferencedLayer.isNull() && d->mReferencingLayer.data()->isValid() && d->mReferencedLayer.data()->isValid();
343 }
344 
346 {
347  return d->mReferencedLayerId == other.d->mReferencedLayerId && d->mReferencingLayerId == other.d->mReferencingLayerId && d->mFieldPairs == other.d->mFieldPairs;
348 }
349 
350 QString QgsRelation::resolveReferencedField( const QString &referencingField ) const
351 {
352  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
353  {
354  if ( pair.first == referencingField )
355  return pair.second;
356  }
357  return QString();
358 }
359 
360 QString QgsRelation::resolveReferencingField( const QString &referencedField ) const
361 {
362  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
363  {
364  if ( pair.second == referencedField )
365  return pair.first;
366  }
367  return QString();
368 }
369 
371 {
372  const QMap<QString, QgsMapLayer *> &mapLayers = mContext.project()->mapLayers();
373 
374  d->mReferencingLayer = qobject_cast<QgsVectorLayer *>( mapLayers[d->mReferencingLayerId] );
375  d->mReferencedLayer = qobject_cast<QgsVectorLayer *>( mapLayers[d->mReferencedLayerId] );
376 
377  d->mValid = true;
378 
379  if ( d->mRelationId.isEmpty() )
380  {
381  QgsDebugMsg( QStringLiteral( "Invalid relation: no ID" ) );
382  d->mValid = false;
383  }
384  else
385  {
386  if ( !d->mReferencedLayer )
387  {
388  QgsDebugMsgLevel( QStringLiteral( "Invalid relation: referenced layer does not exist. ID: %1" ).arg( d->mReferencedLayerId ), 4 );
389  d->mValid = false;
390  }
391  else if ( !d->mReferencingLayer )
392  {
393  QgsDebugMsgLevel( QStringLiteral( "Invalid relation: referencing layer does not exist. ID: %2" ).arg( d->mReferencingLayerId ), 4 );
394  d->mValid = false;
395  }
396  else
397  {
398  if ( d->mFieldPairs.count() < 1 )
399  {
400  QgsDebugMsgLevel( QStringLiteral( "Invalid relation: no pair of field is specified." ), 4 );
401  d->mValid = false;
402  }
403 
404  for ( const FieldPair &pair : std::as_const( d->mFieldPairs ) )
405  {
406  if ( -1 == d->mReferencingLayer->fields().lookupField( pair.first ) )
407  {
408  QgsDebugMsg( QStringLiteral( "Invalid relation: field %1 does not exist in referencing layer %2" ).arg( pair.first, d->mReferencingLayer->name() ) );
409  d->mValid = false;
410  break;
411  }
412  else if ( -1 == d->mReferencedLayer->fields().lookupField( pair.second ) )
413  {
414  QgsDebugMsg( QStringLiteral( "Invalid relation: field %1 does not exist in referenced layer %2" ).arg( pair.second, d->mReferencedLayer->name() ) );
415  d->mValid = false;
416  break;
417  }
418  }
419  }
420 
421  }
422 }
423 
424 void QgsRelation::setPolymorphicRelationId( const QString &polymorphicRelationId )
425 {
426  d.detach();
427  d->mPolymorphicRelationId = polymorphicRelationId;
428 }
429 
431 {
432  return d->mPolymorphicRelationId;
433 }
434 
436 {
437  if ( ! mContext.project() || ! mContext.project()->relationManager() )
438  return QgsPolymorphicRelation();
439 
440  return mContext.project()->relationManager()->polymorphicRelation( d->mPolymorphicRelationId );
441 }
442 
444 {
445  if ( d->mPolymorphicRelationId.isNull() )
446  return QgsRelation::Normal;
447  else
448  return QgsRelation::Generated;
449 }
A vector of attributes.
Definition: qgsattributes.h:58
static QString createFieldEqualityExpression(const QString &fieldName, const QVariant &value)
Create an expression allowing to evaluate if a field is equal to a value.
Wrapper for iterator of features from vector data provider or vector layer.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
QgsAttributes attributes
Definition: qgsfeature.h:65
QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
Definition: qgsfeature.cpp:320
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
Definition: qgsfields.cpp:344
static void warning(const QString &msg)
Goes to qWarning.
Definition: qgslogger.cpp:122
Base class for all map layer types.
Definition: qgsmaplayer.h:73
QgsMapLayerType type
Definition: qgsmaplayer.h:80
A polymorphic relation consists of the same properties like a normal relation except for the referenc...
QString layerRepresentation(const QgsVectorLayer *layer) const
Returns layer representation as evaluated string.
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
The derived translate() translates with QTranslator and qm file the sourceText.
QgsRelationManager * relationManager
Definition: qgsproject.h:111
QMap< QString, QgsMapLayer * > mapLayers(const bool validOnly=false) const
Returns a map of all registered layers by layer ID.
The class is used as a container of context for various read/write operations on other objects.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
Context for relations.
const QgsProject * project() const
Gets the associated project.
QgsPolymorphicRelation polymorphicRelation(const QString &polymorphicRelationId) const
Returns the list of relations associated with a polymorphic relation.
Defines a relation between matching fields of the two involved tables of a relation.
Definition: qgsrelation.h:89
QString referencingField() const
Gets the name of the referencing (child) field.
Definition: qgsrelation.h:99
QString referencedField() const
Gets the name of the referenced (parent) field.
Definition: qgsrelation.h:101
QgsFeatureRequest getReferencedFeatureRequest(const QgsAttributes &attributes) const
Creates a request to return the feature on the referenced (parent) layer which is referenced by the p...
QgsAttributeList referencingFields() const
Returns a list of attributes used to form the referencing fields (foreign key) on the referencing (ch...
QString name
Definition: qgsrelation.h:49
QgsFeature getReferencedFeature(const QgsFeature &feature) const
Creates a request to return the feature on the referenced (parent) layer which is referenced by the p...
void setId(const QString &id)
Set an id for this relation.
QgsFeatureIterator getRelatedFeatures(const QgsFeature &feature) const
Creates an iterator which returns all the features on the referencing (child) layer which have a fore...
QgsRelation()
Default constructor.
Definition: qgsrelation.cpp:27
void setReferencedLayer(const QString &id)
Set the referenced (parent) layer id.
void setPolymorphicRelationId(const QString &polymorphicRelationId)
Sets the parent polymorphic relation id.
QgsRelation & operator=(const QgsRelation &other)
Copies a relation.
Definition: qgsrelation.cpp:46
void generateId()
Generate a (project-wide) unique id for this relation.
Q_INVOKABLE QString resolveReferencingField(const QString &referencedField) const
Gets the referencing field counterpart given a referenced field.
bool hasEqualDefinition(const QgsRelation &other) const
Compares the two QgsRelation, ignoring the name and the ID.
static QgsRelation createFromXml(const QDomNode &node, QgsReadWriteContext &context, const QgsRelationContext &relationContext=QgsRelationContext())
Creates a relation from an XML structure.
Definition: qgsrelation.cpp:53
Q_INVOKABLE QString resolveReferencedField(const QString &referencingField) const
Gets the referenced field counterpart given a referencing field.
QString polymorphicRelationId
Definition: qgsrelation.h:51
QgsVectorLayer * referencedLayer
Definition: qgsrelation.h:48
void addFieldPair(const QString &referencingField, const QString &referencedField)
Add a field pair which is part of this relation The first element of each pair are the field names of...
RelationType
Enum holding the relations type.
Definition: qgsrelation.h:60
@ Generated
A generated relation is a child of a polymorphic relation.
Definition: qgsrelation.h:62
@ Normal
A normal relation.
Definition: qgsrelation.h:61
void setReferencingLayer(const QString &id)
Set the referencing (child) layer id.
QList< QgsRelation::FieldPair > fieldPairs() const
Returns the field pairs which form this relation The first element of each pair are the field names o...
Q_GADGET QString id
Definition: qgsrelation.h:46
RelationStrength
enum for the relation strength Association, Composition
Definition: qgsrelation.h:71
RelationType type() const
Returns the type of the relation.
QgsPolymorphicRelation polymorphicRelation
Definition: qgsrelation.h:52
QgsAttributeList referencedFields() const
Returns a list of attributes used to form the referenced fields (most likely primary key) on the refe...
QgsVectorLayer * referencingLayer
Definition: qgsrelation.h:47
void setStrength(RelationStrength strength)
Set a strength for this relation.
bool isValid
Definition: qgsrelation.h:50
QString referencedLayerId() const
Access the referenced (parent) layer's id.
void setName(const QString &name)
Set a name for this relation.
RelationStrength strength() const
Returns the relation strength as a string.
QString referencingLayerId() const
Access the referencing (child) layer's id This is the layer which has the field(s) which point to ano...
void writeXml(QDomNode &node, QDomDocument &doc) const
Writes a relation to an XML structure.
QString getRelatedFeaturesFilter(const QgsFeature &feature) const
Returns a filter expression which returns all the features on the referencing (child) layer which hav...
void updateRelationStatus()
Updates the validity status of this relation.
QgsFeatureRequest getRelatedFeaturesRequest(const QgsFeature &feature) const
Creates a request to return all the features on the referencing (child) layer which have a foreign ke...
Represents a vector layer which manages a vector based data sets.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
QList< int > QgsAttributeList
Definition: qgsfield.h:26
#define QgsDebugMsgLevel(str, level)
Definition: qgslogger.h:39
#define QgsDebugMsg(str)
Definition: qgslogger.h:38