44 : mName( other.mName )
45 , mVariables( other.mVariables )
46 , mHasFeature( other.mHasFeature )
47 , mFeature( other.mFeature )
49 QHash<QString, QgsScopedExpressionFunction * >::const_iterator it = other.mFunctions.constBegin();
50 for ( ; it != other.mFunctions.constEnd(); ++it )
52 mFunctions.insert( it.key(), it.value()->clone() );
59 mVariables = other.mVariables;
60 mHasFeature = other.mHasFeature;
61 mFeature = other.mFeature;
63 qDeleteAll( mFunctions );
65 QHash<QString, QgsScopedExpressionFunction * >::const_iterator it = other.mFunctions.constBegin();
66 for ( ; it != other.mFunctions.constEnd(); ++it )
68 mFunctions.insert( it.key(), it.value()->clone() );
76 qDeleteAll( mFunctions );
81 if ( mVariables.contains(
name ) )
84 existing.
value = value;
101 return mVariables.remove(
name ) > 0;
106 return mVariables.contains(
name );
116 QStringList names = mVariables.keys();
121 class QgsExpressionContextVariableCompare
128 bool operator()(
const QString &a,
const QString &b )
const
130 bool aReadOnly = mScope.isReadOnly( a );
131 bool bReadOnly = mScope.isReadOnly( b );
132 if ( aReadOnly != bReadOnly )
134 return QString::localeAwareCompare( a, b ) < 0;
144 QStringList allVariables = mVariables.keys();
145 QStringList filtered;
146 const auto constAllVariables = allVariables;
147 for (
const QString &
variable : constAllVariables )
154 QgsExpressionContextVariableCompare cmp( *
this );
155 std::sort( filtered.begin(), filtered.end(), cmp );
177 return mFunctions.contains(
name );
182 return mFunctions.contains(
name ) ? mFunctions.value(
name ) :
nullptr;
187 return mFunctions.keys();
192 mFunctions.insert(
name,
function );
203 const QDomNodeList variablesNodeList = element.childNodes();
204 for (
int i = 0; i < variablesNodeList.size(); ++i )
206 const QDomElement variableElement = variablesNodeList.at( i ).toElement();
207 const QString key = variableElement.attribute( QStringLiteral(
"name" ) );
215 for (
auto it = mVariables.constBegin(); it != mVariables.constEnd(); ++it )
217 QDomElement varElem = document.createElement( QStringLiteral(
"Variable" ) );
218 varElem.setAttribute( QStringLiteral(
"name" ), it.key() );
220 varElem.appendChild( valueElem );
221 element.appendChild( varElem );
242 mHighlightedVariables = other.mHighlightedVariables;
243 mHighlightedFunctions = other.mHighlightedFunctions;
244 mCachedValues = other.mCachedValues;
249 if (
this != &other )
251 qDeleteAll( mStack );
253 mStack = other.mStack;
254 other.mStack.clear();
256 mHighlightedVariables = other.mHighlightedVariables;
257 mHighlightedFunctions = other.mHighlightedFunctions;
258 mCachedValues = other.mCachedValues;
265 if ( &other ==
this )
268 qDeleteAll( mStack );
274 mHighlightedVariables = other.mHighlightedVariables;
275 mHighlightedFunctions = other.mHighlightedFunctions;
276 mCachedValues = other.mCachedValues;
282 qDeleteAll( mStack );
288 const auto constMStack = mStack;
307 const auto constNames = names;
308 for (
const QString &name : constNames )
317 return mHighlightedVariables.contains( name );
322 return mHighlightedVariables;
332 return mHighlightedFunctions.contains( name );
337 mHighlightedFunctions = names;
343 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
344 while ( it != mStack.constBegin() )
347 if ( ( *it )->hasVariable( name ) )
356 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
357 while ( it != mStack.constBegin() )
360 if ( ( *it )->hasVariable( name ) )
368 if ( index < 0 || index >= mStack.count() )
371 return mStack.at( index );
376 if ( mStack.count() < 1 )
379 return mStack.last();
387 return mStack.indexOf(
scope );
393 const auto constMStack = mStack;
407 const auto constMStack = mStack;
412 return qgis::setToList( qgis::listToSet( names ) );
418 QStringList filtered;
419 const auto constAllVariables = allVariables;
420 for (
const QString &
variable : constAllVariables )
434 const auto constMStack = mStack;
451 const auto constMStack = mStack;
463 const auto constMStack = mStack;
468 result = qgis::setToList( qgis::listToSet( result ) );
476 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
477 while ( it != mStack.constBegin() )
480 if ( ( *it )->hasFunction( name ) )
481 return ( *it )->function( name );
488 return mStack.count();
493 mStack.append(
scope );
503 if ( !mStack.isEmpty() )
504 return mStack.takeLast();
511 QList<QgsExpressionContextScope *> stack = mStack;
518 mStack.append(
scope );
524 if ( mStack.isEmpty() )
527 mStack.last()->setFeature(
feature );
532 const auto constMStack = mStack;
544 QList< QgsExpressionContextScope * >::const_iterator it = mStack.constEnd();
545 while ( it != mStack.constBegin() )
548 if ( ( *it )->hasFeature() )
549 return ( *it )->feature();
556 if ( mStack.isEmpty() )
559 mStack.last()->setFields(
fields );
569 if ( mStack.isEmpty() )
578 mCachedValues.insert( key, value );
583 return mCachedValues.contains( key );
588 return mCachedValues.value( key, QVariant() );
593 mCachedValues.clear();
Single scope for storing variables and functions for use within a QgsExpressionContext.
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 readXml(const QDomElement &element, const QgsReadWriteContext &context)
Reads scope variables from an XML element.
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.
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.
~QgsExpressionContextScope()
QStringList variableNames() const
Returns a list of variable names contained within the scope.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
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.
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)
QgsExpressionContext()=default
Constructor for QgsExpressionContext.
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.
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.
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.
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.
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 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.
A 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...
Container of fields for a vector layer.
The class is used as a container of context for various read/write operations on other objects.
Expression function for use within a QgsExpressionContextScope.
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.
Single variable definition for use within a QgsExpressionContextScope.
bool isStatic
A static variable can be cached for the lifetime of a context.
QVariant value
Variable value.