QGIS API Documentation 4.1.0-Master (60fea48833c)
Loading...
Searching...
No Matches
qgsexpressioncontext.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsexpressioncontext.cpp
3 ------------------------
4 Date : April 2015
5 Copyright : (C) 2015 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
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
17
18#include "qgsexpression.h"
20#include "qgsmaplayerstore.h"
21#include "qgsxmlutils.h"
22
23#include <QString>
24
25using namespace Qt::StringLiterals;
26
27const QString QgsExpressionContext::EXPR_FIELDS( u"_fields_"_s );
28const QString QgsExpressionContext::EXPR_ORIGINAL_VALUE( u"value"_s );
29const QString QgsExpressionContext::EXPR_SYMBOL_COLOR( u"symbol_color"_s );
30const QString QgsExpressionContext::EXPR_SYMBOL_ANGLE( u"symbol_angle"_s );
31const QString QgsExpressionContext::EXPR_GEOMETRY_PART_COUNT( u"geometry_part_count"_s );
32const QString QgsExpressionContext::EXPR_GEOMETRY_PART_NUM( u"geometry_part_num"_s );
33const QString QgsExpressionContext::EXPR_GEOMETRY_RING_NUM( u"geometry_ring_num"_s );
34const QString QgsExpressionContext::EXPR_GEOMETRY_POINT_COUNT( u"geometry_point_count"_s );
35const QString QgsExpressionContext::EXPR_GEOMETRY_POINT_NUM( u"geometry_point_num"_s );
36const QString QgsExpressionContext::EXPR_CLUSTER_SIZE( u"cluster_size"_s );
37const QString QgsExpressionContext::EXPR_CLUSTER_COLOR( u"cluster_color"_s );
38
39//
40// QgsExpressionContextScope
41//
42
46
48 //****** IMPORTANT! editing this? make sure you update the move constructor too! *****
49 : mName( other.mName )
50 , mVariables( other.mVariables )
51 , mHasFeature( other.mHasFeature )
52 , mFeature( other.mFeature )
53 , mHasGeometry( other.mHasGeometry )
54 , mGeometry( other.mGeometry )
55 , mHiddenVariables( other.mHiddenVariables )
56 , mLayerStores( other.mLayerStores )
57//****** IMPORTANT! editing this? make sure you update the move constructor too! *****
58{
59 QHash<QString, QgsScopedExpressionFunction * >::const_iterator it = other.mFunctions.constBegin();
60 for ( ; it != other.mFunctions.constEnd(); ++it )
61 {
62 mFunctions.insert( it.key(), it.value()->clone() );
63 }
64}
65
67 : mName( std::move( other.mName ) )
68 , mVariables( std::move( other.mVariables ) )
69 , mFunctions( std::move( other.mFunctions ) )
70 , mHasFeature( other.mHasFeature )
71 , mFeature( std::move( other.mFeature ) )
72 , mHasGeometry( other.mHasGeometry )
73 , mGeometry( std::move( other.mGeometry ) )
74 , mHiddenVariables( std::move( other.mHiddenVariables ) )
75 , mLayerStores( std::move( other.mLayerStores ) )
76{}
77
79{
80 if ( &other == this )
81 return *this;
82
83 //****** IMPORTANT! editing this? make sure you update the move assignment operator too! *****
84 mName = other.mName;
85 mVariables = other.mVariables;
86 mHasFeature = other.mHasFeature;
87 mFeature = other.mFeature;
88 mHasGeometry = other.mHasGeometry;
89 mGeometry = other.mGeometry;
90 mHiddenVariables = other.mHiddenVariables;
91 mLayerStores = other.mLayerStores;
92
93 qDeleteAll( mFunctions );
94 mFunctions.clear();
95 QHash<QString, QgsScopedExpressionFunction * >::const_iterator it = other.mFunctions.constBegin();
96 for ( ; it != other.mFunctions.constEnd(); ++it )
97 {
98 mFunctions.insert( it.key(), it.value()->clone() );
99 }
100 //****** IMPORTANT! editing this? make sure you update the move assignment operator too! *****
101 return *this;
102}
103
105{
106 if ( &other == this )
107 return *this;
108
109 mName = std::move( other.mName );
110 mVariables = std::move( other.mVariables );
111 mHasFeature = other.mHasFeature;
112 mFeature = std::move( other.mFeature );
113 mHasGeometry = other.mHasGeometry;
114 mGeometry = std::move( other.mGeometry );
115 mHiddenVariables = std::move( other.mHiddenVariables );
116 mLayerStores = std::move( other.mLayerStores );
117 mFunctions = std::move( other.mFunctions );
118 return *this;
119}
120
122{
123 qDeleteAll( mFunctions );
124}
125
126void QgsExpressionContextScope::setVariable( const QString &name, const QVariant &value, bool isStatic )
127{
128 auto it = mVariables.find( name );
129 if ( it != mVariables.end() )
130 {
131 it->value = value;
132 it->isStatic = isStatic;
133 }
134 else
135 {
137 }
138}
139
144
146{
147 return mVariables.remove( name );
148}
149
151{
152 return mVariables.contains( name );
153}
154
155QVariant QgsExpressionContextScope::variable( const QString &name ) const
156{
157 return hasVariable( name ) ? mVariables.value( name ).value : QVariant();
158}
159
161{
162 QStringList names = mVariables.keys();
163
164 if ( hasFeature() )
165 {
166 names.append( u"feature"_s );
167 names.append( u"id"_s );
168 names.append( u"geometry"_s );
169 }
170
171 return names;
172}
173
175{
176 return mHiddenVariables;
177}
178
180{
181 mHiddenVariables = hiddenVariables;
182}
183
184void QgsExpressionContextScope::addHiddenVariable( const QString &hiddenVariable )
185{
186 if ( !mHiddenVariables.contains( hiddenVariable ) )
187 mHiddenVariables << hiddenVariable;
188}
189
190void QgsExpressionContextScope::removeHiddenVariable( const QString &hiddenVariable )
191{
192 if ( mHiddenVariables.contains( hiddenVariable ) )
193 mHiddenVariables.removeAt( mHiddenVariables.indexOf( hiddenVariable ) );
194}
195
197{
198 mLayerStores.append( store );
199}
200
201QList<QgsMapLayerStore *> QgsExpressionContextScope::layerStores() const
202{
203 QList<QgsMapLayerStore *> res;
204 res.reserve( mLayerStores.size() );
205 for ( QgsMapLayerStore *store : std::as_const( mLayerStores ) )
206 {
207 if ( store )
208 res << store;
209 }
210 return res;
211}
212
214class QgsExpressionContextVariableCompare
215{
216 public:
217 explicit QgsExpressionContextVariableCompare( const QgsExpressionContextScope &scope )
218 : mScope( scope )
219 {}
220
221 bool operator()( const QString &a, const QString &b ) const
222 {
223 bool aReadOnly = mScope.isReadOnly( a );
224 bool bReadOnly = mScope.isReadOnly( b );
225 if ( aReadOnly != bReadOnly )
226 return aReadOnly;
227 return QString::localeAwareCompare( a, b ) < 0;
228 }
229
230 private:
231 const QgsExpressionContextScope &mScope;
232};
234
236{
237 QStringList allVariables = mVariables.keys();
238 QStringList filtered;
239 const auto constAllVariables = allVariables;
240 for ( const QString &variable : constAllVariables )
241 {
242 if ( variable.startsWith( '_' ) )
243 continue;
244
245 filtered << variable;
246 }
247 QgsExpressionContextVariableCompare cmp( *this );
248 std::sort( filtered.begin(), filtered.end(), cmp );
249
250 return filtered;
251}
252
253bool QgsExpressionContextScope::isReadOnly( const QString &name ) const
254{
255 return hasVariable( name ) ? mVariables.value( name ).readOnly : false;
256}
257
258bool QgsExpressionContextScope::isStatic( const QString &name ) const
259{
260 return hasVariable( name ) ? mVariables.value( name ).isStatic : false;
261}
262
263QString QgsExpressionContextScope::description( const QString &name ) const
264{
265 return hasVariable( name ) ? mVariables.value( name ).description : QString();
266}
267
269{
270 return mFunctions.contains( name );
271}
272
274{
275 return mFunctions.contains( name ) ? mFunctions.value( name ) : nullptr;
276}
277
279{
280 return mFunctions.keys();
281}
282
284{
285 mFunctions.insert( name, function );
286}
287
288
290{
291 addVariable( StaticVariable( QgsExpressionContext::EXPR_FIELDS, QVariant::fromValue( fields ), true ) );
292}
293
294void QgsExpressionContextScope::readXml( const QDomElement &element, const QgsReadWriteContext & )
295{
296 const QDomNodeList variablesNodeList = element.childNodes();
297 for ( int i = 0; i < variablesNodeList.size(); ++i )
298 {
299 const QDomElement variableElement = variablesNodeList.at( i ).toElement();
300 const QString key = variableElement.attribute( u"name"_s );
301 if ( variableElement.tagName() == "Variable"_L1 )
302 {
303 const QVariant value = QgsXmlUtils::readVariant( variableElement.firstChildElement( u"Option"_s ) );
304 setVariable( key, value );
305 }
306 else
307 addHiddenVariable( key );
308 }
309}
310
311bool QgsExpressionContextScope::writeXml( QDomElement &element, QDomDocument &document, const QgsReadWriteContext & ) const
312{
313 for ( auto it = mVariables.constBegin(); it != mVariables.constEnd(); ++it )
314 {
315 QDomElement varElem = document.createElement( u"Variable"_s );
316 varElem.setAttribute( u"name"_s, it.key() );
317 QDomElement valueElem = QgsXmlUtils::writeVariant( it.value().value, document );
318 varElem.appendChild( valueElem );
319 element.appendChild( varElem );
320 }
321
322 for ( QString hiddenVariable : mHiddenVariables )
323 {
324 QDomElement varElem = document.createElement( u"HiddenVariable"_s );
325 varElem.setAttribute( u"name"_s, hiddenVariable );
326 element.appendChild( varElem );
327 }
328 return true;
329}
330
331
332//
333// QgsExpressionContext
334//
335
337{
338 mLoadLayerFunction = std::make_unique< LoadLayerFunction >();
339}
340
341QgsExpressionContext::QgsExpressionContext( const QList<QgsExpressionContextScope *> &scopes )
342 : mStack( scopes )
343{
344 mLoadLayerFunction = std::make_unique< LoadLayerFunction >();
345}
346
348 : mStack {}
349{
350 //****** IMPORTANT! editing this? make sure you update the move constructor too! *****
351 for ( const QgsExpressionContextScope *scope : std::as_const( other.mStack ) )
352 {
353 mStack << new QgsExpressionContextScope( *scope );
354 }
355 mHighlightedVariables = other.mHighlightedVariables;
356 mHighlightedFunctions = other.mHighlightedFunctions;
357 mCachedValues = other.mCachedValues;
358 mFeedback = other.mFeedback;
359 mDestinationStore = other.mDestinationStore;
360 mLoadLayerFunction = std::make_unique< LoadLayerFunction >();
361 //****** IMPORTANT! editing this? make sure you update the move constructor too! *****
362}
363
365 : mStack( std::move( other.mStack ) )
366 , mHighlightedVariables( std::move( other.mHighlightedVariables ) )
367 , mHighlightedFunctions( std::move( other.mHighlightedFunctions ) )
368 , mFeedback( other.mFeedback )
369 , mLoadLayerFunction( std::move( other.mLoadLayerFunction ) )
370 , mDestinationStore( std::move( other.mDestinationStore ) )
371 , mCachedValues( std::move( other.mCachedValues ) )
372{}
373
375{
376 if ( this != &other )
377 {
378 qDeleteAll( mStack );
379 // move the stack over
380 mStack = std::move( other.mStack );
381
382 mHighlightedVariables = std::move( other.mHighlightedVariables );
383 mHighlightedFunctions = std::move( other.mHighlightedFunctions );
384 mLoadLayerFunction = std::move( other.mLoadLayerFunction );
385 mCachedValues = std::move( other.mCachedValues );
386 mFeedback = other.mFeedback;
387 mDestinationStore = std::move( other.mDestinationStore );
388 }
389 return *this;
390}
391
392// cppcheck-suppress operatorEqVarError
394{
395 if ( &other == this )
396 return *this;
397
398 //****** IMPORTANT! editing this? make sure you update the move assignment operator too! *****
399 qDeleteAll( mStack );
400 mStack.clear();
401 for ( const QgsExpressionContextScope *scope : std::as_const( other.mStack ) )
402 {
403 mStack << new QgsExpressionContextScope( *scope );
404 }
405 mHighlightedVariables = other.mHighlightedVariables;
406 mHighlightedFunctions = other.mHighlightedFunctions;
407 mCachedValues = other.mCachedValues;
408 mFeedback = other.mFeedback;
409 mDestinationStore = other.mDestinationStore;
410 //****** IMPORTANT! editing this? make sure you update the move assignment operator too! *****
411 return *this;
412}
413
415{
416 qDeleteAll( mStack );
417 mStack.clear();
418}
419
420bool QgsExpressionContext::hasVariable( const QString &name ) const
421{
422 const auto constMStack = mStack;
423 for ( const QgsExpressionContextScope *scope : constMStack )
424 {
425 if ( scope->hasVariable( name ) )
426 return true;
427 }
428 return false;
429}
430
431QVariant QgsExpressionContext::variable( const QString &name ) const
432{
434 return scope ? scope->variable( name ) : QVariant();
435}
436
438{
439 QStringList names = variableNames();
440 QVariantMap m;
441 const auto constNames = names;
442 for ( const QString &name : constNames )
443 {
444 m.insert( name, variable( name ) );
445 }
446 return m;
447}
448
449bool QgsExpressionContext::isHighlightedVariable( const QString &name ) const
450{
451 return mHighlightedVariables.contains( name );
452}
453
455{
456 return mHighlightedVariables;
457}
458
460{
461 mHighlightedVariables = variableNames;
462}
463
464bool QgsExpressionContext::isHighlightedFunction( const QString &name ) const
465{
466 return mHighlightedFunctions.contains( name );
467}
468
469void QgsExpressionContext::setHighlightedFunctions( const QStringList &names )
470{
471 mHighlightedFunctions = names;
472}
473
475{
476 //iterate through stack backwards, so that higher priority variables take precedence
477 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
478 while ( it != mStack.constBegin() )
479 {
480 --it;
481 if ( ( *it )->hasVariable( name ) )
482 return ( *it );
483 }
484 return nullptr;
485}
486
488{
489 //iterate through stack backwards, so that higher priority variables take precedence
490 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
491 while ( it != mStack.constBegin() )
492 {
493 --it;
494 if ( ( *it )->hasVariable( name ) )
495 return ( *it );
496 }
497 return nullptr;
498}
499
501{
502 if ( index < 0 || index >= mStack.count() )
503 return nullptr;
504
505 return mStack.at( index );
506}
507
509{
510 if ( mStack.count() < 1 )
511 return nullptr;
512
513 return mStack.last();
514}
515
517{
518 if ( !scope )
519 return -1;
520
521 return mStack.indexOf( scope );
522}
523
524int QgsExpressionContext::indexOfScope( const QString &scopeName ) const
525{
526 int index = 0;
527 const auto constMStack = mStack;
528 for ( const QgsExpressionContextScope *scope : constMStack )
529 {
530 if ( scope->name() == scopeName )
531 return index;
532
533 index++;
534 }
535 return -1;
536}
537
539{
540 QSet< QString> names;
541 for ( const QgsExpressionContextScope *scope : mStack )
542 {
543 const QStringList variableNames = scope->variableNames();
544 for ( const QString &name : variableNames )
545 names.insert( name );
546 }
547 return QStringList( names.constBegin(), names.constEnd() );
548}
549
551{
552 QStringList allVariables = variableNames();
553 QStringList filtered;
554 const auto constAllVariables = allVariables;
555
556 QStringList hiddenVariables;
557
558 for ( const QgsExpressionContextScope *scope : mStack )
559 {
560 const QStringList scopeHiddenVariables = scope->hiddenVariables();
561 for ( const QString &name : scopeHiddenVariables )
562 hiddenVariables << name;
563 }
564
565 for ( const QString &variable : constAllVariables )
566 {
567 if ( variable.startsWith( '_' ) || hiddenVariables.contains( variable ) )
568 continue;
569
570 filtered << variable;
571 }
572
573 filtered.sort();
574 return filtered;
575}
576
577bool QgsExpressionContext::isReadOnly( const QString &name ) const
578{
579 const auto constMStack = mStack;
580 for ( const QgsExpressionContextScope *scope : constMStack )
581 {
582 if ( scope->isReadOnly( name ) )
583 return true;
584 }
585 return false;
586}
587
588QString QgsExpressionContext::description( const QString &name ) const
589{
591 return ( scope && !scope->description( name ).isEmpty() ) ? scope->description( name ) : QgsExpression::variableHelpText( name );
592}
593
594bool QgsExpressionContext::hasFunction( const QString &name ) const
595{
596 if ( name.compare( "load_layer"_L1 ) == 0 && mDestinationStore )
597 return true;
598
599 for ( const QgsExpressionContextScope *scope : mStack )
600 {
601 if ( scope->hasFunction( name ) )
602 return true;
603 }
604 return false;
605}
606
608{
609 QSet< QString > result;
610 for ( const QgsExpressionContextScope *scope : mStack )
611 {
612 const QStringList functionNames = scope->functionNames();
613 for ( const QString &name : functionNames )
614 result.insert( name );
615 }
616
617 if ( mDestinationStore )
618 result.insert( u"load_layer"_s );
619
620 QStringList listResult( result.constBegin(), result.constEnd() );
621 listResult.sort();
622 return listResult;
623}
624
626{
627 if ( name.compare( "load_layer"_L1 ) == 0 && mDestinationStore )
628 {
629 return mLoadLayerFunction.get();
630 }
631
632 //iterate through stack backwards, so that higher priority variables take precedence
633 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
634 while ( it != mStack.constBegin() )
635 {
636 --it;
637 if ( ( *it )->hasFunction( name ) )
638 return ( *it )->function( name );
639 }
640 return nullptr;
641}
642
644{
645 return mStack.count();
646}
647
652
653void QgsExpressionContext::appendScopes( const QList<QgsExpressionContextScope *> &scopes )
654{
655 mStack.append( scopes );
656}
657
659{
660 if ( !mStack.isEmpty() )
661 return mStack.takeLast();
662
663 return nullptr;
664}
665
666QList<QgsExpressionContextScope *> QgsExpressionContext::takeScopes()
667{
668 QList<QgsExpressionContextScope *> stack = mStack;
669 mStack.clear();
670 return stack;
671}
672
678
680{
681 if ( mStack.isEmpty() )
682 mStack.append( new QgsExpressionContextScope() );
683
684 mStack.last()->setFeature( feature );
685}
686
688{
689 for ( const QgsExpressionContextScope *scope : mStack )
690 {
691 if ( scope->hasFeature() )
692 return true;
693 }
694 return false;
695}
696
698{
699 //iterate through stack backwards, so that higher priority variables take precedence
700 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
701 while ( it != mStack.constBegin() )
702 {
703 --it;
704 if ( ( *it )->hasFeature() )
705 return ( *it )->feature();
706 }
707 return QgsFeature();
708}
709
711{
712 if ( mStack.isEmpty() )
713 mStack.append( new QgsExpressionContextScope() );
714
715 mStack.last()->setGeometry( geometry );
716}
717
719{
720 for ( const QgsExpressionContextScope *scope : mStack )
721 {
722 if ( scope->hasGeometry() )
723 return true;
724 }
725 return false;
726}
727
729{
730 //iterate through stack backwards, so that higher priority variables take precedence
731 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
732 while ( it != mStack.constBegin() )
733 {
734 --it;
735 if ( ( *it )->hasGeometry() )
736 return ( *it )->geometry();
737 }
738 return QgsGeometry();
739}
740
742{
743 if ( mStack.isEmpty() )
744 mStack.append( new QgsExpressionContextScope() );
745
746 mStack.last()->setFields( fields );
747}
748
750{
751 return qvariant_cast<QgsFields>( variable( QgsExpressionContext::EXPR_FIELDS ) );
752}
753
755{
756 if ( mStack.isEmpty() )
757 mStack.append( new QgsExpressionContextScope() );
758
760}
761
762void QgsExpressionContext::setCachedValue( const QString &key, const QVariant &value ) const
763{
764 mCachedValues.insert( key, value );
765}
766
767bool QgsExpressionContext::hasCachedValue( const QString &key ) const
768{
769 return mCachedValues.contains( key );
770}
771
772QVariant QgsExpressionContext::cachedValue( const QString &key ) const
773{
774 return mCachedValues.value( key, QVariant() );
775}
776
778{
779 mCachedValues.clear();
780}
781
782QList<QgsMapLayerStore *> QgsExpressionContext::layerStores() const
783{
784 //iterate through stack backwards, so that higher priority layer stores take precedence
785 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
786 QList<QgsMapLayerStore *> res;
787 while ( it != mStack.constBegin() )
788 {
789 --it;
790 res.append( ( *it )->layerStores() );
791 }
792 // ensure that the destination store is also present in the list
793 if ( mDestinationStore && !res.contains( mDestinationStore ) )
794 res.append( mDestinationStore );
795 return res;
796}
797
799{
800 mDestinationStore = store;
801}
802
804{
805 return mDestinationStore;
806}
807
812
814{
815 return mFeedback;
816}
817
818QString QgsExpressionContext::uniqueHash( bool &ok, const QSet<QString> &variables ) const
819{
820 QString hash;
821 ok = true;
822 const QString delimiter( u"||~~||"_s );
823
824 if ( hasFeature() )
825 {
826 hash.append( QString::number( feature().id() ) + delimiter + QString::number( qHash( feature() ) ) + delimiter );
827 }
828
829 QStringList sortedVars = qgis::setToList( variables );
830 if ( sortedVars.empty() )
831 sortedVars = variableNames();
832 std::sort( sortedVars.begin(), sortedVars.end() );
833
834 for ( const QString &variableName : std::as_const( sortedVars ) )
835 {
836 const QVariant value = variable( variableName );
837 hash.append( variableName + "=" );
838 if ( QgsVariantUtils::isNull( value ) )
839 {
840 hash.append( delimiter );
841 }
842 else if ( value.type() == QVariant::String )
843 {
844 hash.append( value.toString() + delimiter );
845 }
846 else
847 {
848 const QString variantString = value.toString();
849 if ( variantString.isEmpty() )
850 {
851 ok = false;
852 return QString();
853 }
854 hash.append( variantString + delimiter );
855 }
856 }
857
858 return hash;
859}
Single scope for storing variables and functions for use within a QgsExpressionContext.
void addLayerStore(QgsMapLayerStore *store)
Adds a layer store to the scope.
bool hasVariable(const QString &name) const
Tests whether a variable with the specified name exists in the scope.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the scope.
QString description(const QString &name) const
Returns the translated description for the variable with the specified name (if set).
void setHiddenVariables(const QStringList &hiddenVariables)
Sets the list of variables intended to be hidden in the expression builder dialog and widget.
void addHiddenVariable(const QString &hiddenVariable)
Adds the passed variable to a list of hidden variables that won't be visible in the expression builde...
void readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads scope variables from an XML element.
QStringList hiddenVariables() const
Returns the list of variables hidden within the scope.
bool writeXml(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const
Writes scope variables to an XML element.
QgsExpressionFunction * function(const QString &name) const
Retrieves a function from the scope.
QVariant variable(const QString &name) const
Retrieves a variable's value from the scope.
QList< QgsMapLayerStore * > layerStores() const
Returns the list of layer stores associated with the scope.
void removeHiddenVariable(const QString &hiddenVariable)
Removes the passed variable from a list of hidden variables.
bool removeVariable(const QString &name)
Removes a variable from the context scope, if found.
bool isReadOnly(const QString &name) const
Tests whether the specified variable is read only and should not be editable by users.
void addFunction(const QString &name, QgsScopedExpressionFunction *function)
Adds a function to the scope.
bool hasFeature() const
Returns true if the scope has a feature associated with it.
bool hasFunction(const QString &name) const
Tests whether a function with the specified name exists in the scope.
QString name() const
Returns the friendly display name of the context scope.
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
bool isStatic(const QString &name) const
Tests whether the variable with the specified name is static and can be cached.
QStringList filteredVariableNames() const
Returns a filtered and sorted list of variable names contained within the scope.
QStringList functionNames() const
Retrieves a list of names of functions contained in the scope.
void setVariable(const QString &name, const QVariant &value, bool isStatic=false)
Convenience method for setting a variable in the context scope by name name and value.
QgsExpressionContextScope & operator=(const QgsExpressionContextScope &other)
QgsExpressionContextScope(const QString &name=QString())
Constructor for QgsExpressionContextScope.
QStringList variableNames() const
Returns a list of variable names contained within the scope.
static const QString EXPR_GEOMETRY_PART_COUNT
Inbuilt variable name for geometry part count variable.
bool hasFunction(const QString &name) const
Checks whether a specified function is contained in the context.
QString description(const QString &name) const
Returns a translated description string for the variable with specified name.
static const QString EXPR_GEOMETRY_POINT_COUNT
Inbuilt variable name for point count variable.
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
QStringList highlightedVariables() const
Returns the current list of variables highlighted within the context.
static const QString EXPR_CLUSTER_SIZE
Inbuilt variable name for cluster size variable.
QStringList functionNames() const
Retrieves a list of function names contained in the context.
static const QString EXPR_GEOMETRY_POINT_NUM
Inbuilt variable name for point number variable.
int indexOfScope(QgsExpressionContextScope *scope) const
Returns the index of the specified scope if it exists within the context.
void setCachedValue(const QString &key, const QVariant &value) const
Sets a value to cache within the expression context.
void clearCachedValues() const
Clears all cached values from the context.
void setHighlightedFunctions(const QStringList &names)
Sets the list of function names intended to be highlighted to the user.
QString uniqueHash(bool &ok, const QSet< QString > &variables=QSet< QString >()) const
Returns a unique hash representing the current state of the context.
QgsGeometry geometry() const
Convenience function for retrieving the geometry for the context, if set.
bool isHighlightedFunction(const QString &name) const
Returns true if the specified function name is intended to be highlighted to the user.
QgsFeature feature() const
Convenience function for retrieving the feature for the context, if set.
void setOriginalValueVariable(const QVariant &value)
Sets the original value variable value for the context.
QgsExpressionContext & operator=(const QgsExpressionContext &other)
static const QString EXPR_FIELDS
Inbuilt variable name for fields storage.
QStringList filteredVariableNames() const
Returns a filtered list of variables names set by all scopes in the context.
QList< QgsMapLayerStore * > layerStores() const
Returns the list of layer stores associated with the context.
void setGeometry(const QgsGeometry &geometry)
Convenience function for setting a geometry for the context.
static const QString EXPR_GEOMETRY_RING_NUM
Inbuilt variable name for geometry ring number variable.
bool isHighlightedVariable(const QString &name) const
Returns true if the specified variable name is intended to be highlighted to the user.
QgsExpressionContextScope * activeScopeForVariable(const QString &name)
Returns the currently active scope from the context for a specified variable name.
static const QString EXPR_GEOMETRY_PART_NUM
Inbuilt variable name for geometry part number variable.
QgsMapLayerStore * loadedLayerStore() const
Returns the destination layer store for any layers loaded during expression evaluation.
static const QString EXPR_SYMBOL_COLOR
Inbuilt variable name for symbol color variable.
QgsExpressionContextScope * lastScope()
Returns the last scope added to the context.
QList< QgsExpressionContextScope * > scopes()
Returns a list of scopes contained within the stack.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
bool hasVariable(const QString &name) const
Check whether a variable is specified by any scope within the context.
QList< QgsExpressionContextScope * > takeScopes()
Returns all scopes from this context and remove them, leaving this context without any context.
QgsFeedback * feedback() const
Returns the feedback object that can be queried regularly by the expression to check if evaluation sh...
void setFeedback(QgsFeedback *feedback)
Attach a feedback object that can be queried regularly by the expression engine to check if expressio...
int scopeCount() const
Returns the number of scopes contained in the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
void setHighlightedVariables(const QStringList &variableNames)
Sets the list of variable names within the context intended to be highlighted to the user.
static const QString EXPR_SYMBOL_ANGLE
Inbuilt variable name for symbol angle variable.
bool isReadOnly(const QString &name) const
Returns whether a variable is read only, and should not be modifiable by users.
bool hasGeometry() const
Returns true if the context has a geometry associated with it.
QgsExpressionFunction * function(const QString &name) const
Fetches a matching function from the context.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the context.
QVariantMap variablesToMap() const
Returns a map of variable name to value representing all the expression variables contained by the co...
bool hasCachedValue(const QString &key) const
Returns true if the expression context contains a cached value with a matching key.
void setLoadedLayerStore(QgsMapLayerStore *store)
Sets the destination layer store for any layers loaded during expression evaluation.
void appendScopes(const QList< QgsExpressionContextScope * > &scopes)
Appends a list of scopes to the end of the context.
QgsExpressionContext & operator<<(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
static const QString EXPR_ORIGINAL_VALUE
Inbuilt variable name for value original value variable.
static const QString EXPR_CLUSTER_COLOR
Inbuilt variable name for cluster color variable.
QStringList variableNames() const
Returns a list of variables names set by all scopes in the context.
QVariant variable(const QString &name) const
Fetches a matching variable from the context.
QgsExpressionContextScope * scope(int index)
Returns the scope at the specified index within the context.
QVariant cachedValue(const QString &key) const
Returns the matching cached value, if set.
bool hasFeature() const
Returns true if the context has a feature associated with it.
QgsFields fields() const
Convenience function for retrieving the fields for the context, if set.
An abstract base class for defining QgsExpression functions.
static QString variableHelpText(const QString &variableName)
Returns the help text for a specified variable.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Container of fields for a vector layer.
Definition qgsfields.h:46
A geometry is the spatial representation of a feature.
A storage object for map layers, in which the layers are owned by the store and have their lifetime b...
A container for the context for various read/write operations on objects.
Expression function for use within a QgsExpressionContextScope.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
static QDomElement writeVariant(const QVariant &value, QDomDocument &doc)
Write a QVariant to a QDomElement.
static QVariant readVariant(const QDomElement &element)
Read a QVariant from a QDomElement.
uint qHash(const QVariant &variant)
Hash for QVariant.
Definition qgis.cpp:611
Single variable definition for use within a QgsExpressionContextScope.