QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
Public Member Functions | Static Public Member Functions | List of all members
QgsExpressionNodeFunction Class Reference

An expression node for expression functions. More...

#include <qgsexpressionnodeimpl.h>

Inheritance diagram for QgsExpressionNodeFunction:
Inheritance graph
[legend]

Public Member Functions

 QgsExpressionNodeFunction (int fnIndex, QgsExpressionNode::NodeList *args)
 A function node consists of an index of the function in the global function array and a list of arguments that will be passed to it. More...
 
 ~QgsExpressionNodeFunction () override
 
QgsExpressionNode::NodeListargs () const
 Returns a list of arguments specified for the function. More...
 
QgsExpressionNodeclone () const override
 Generate a clone of this node. More...
 
QString dump () const override
 Dump this node into a serialized (part) of an expression. More...
 
QVariant evalNode (QgsExpression *parent, const QgsExpressionContext *context) override
 Abstract virtual eval method Errors are reported to the parent. More...
 
int fnIndex () const
 Returns the index of the node's function. More...
 
bool isStatic (QgsExpression *parent, const QgsExpressionContext *context) const override
 Returns true if this node can be evaluated for a static value. More...
 
bool needsGeometry () const override
 Abstract virtual method which returns if the geometry is required to evaluate this expression. More...
 
QList< const QgsExpressionNode * > nodes () const override
 Returns a list of all nodes which are used in this expression. More...
 
QgsExpressionNode::NodeType nodeType () const override
 Gets the type of this node. More...
 
bool prepareNode (QgsExpression *parent, const QgsExpressionContext *context) override
 Abstract virtual preparation method Errors are reported to the parent. More...
 
QSet< QString > referencedColumns () const override
 Abstract virtual method which returns a list of columns required to evaluate this node. More...
 
QSet< QString > referencedFunctions () const override
 Returns a set of all functions which are used in this expression. More...
 
QSet< QString > referencedVariables () const override
 Returns a set of all variables which are used in this expression. More...
 
- Public Member Functions inherited from QgsExpressionNode
virtual ~QgsExpressionNode ()=default
 
QVariant cachedStaticValue () const
 Returns the node's static cached value. More...
 
virtual QgsExpressionNodeclone () const =0
 Generate a clone of this node. More...
 
virtual QString dump () const =0
 Dump this node into a serialized (part) of an expression. More...
 
const QgsExpressionNodeeffectiveNode () const
 Returns a reference to the simplest node which represents this node, after any compilation optimizations have been applied. More...
 
QVariant eval (QgsExpression *parent, const QgsExpressionContext *context)
 Evaluate this node with the given context and parent. More...
 
bool hasCachedStaticValue () const
 Returns true if the node can be replaced by a static cached value. More...
 
virtual bool isStatic (QgsExpression *parent, const QgsExpressionContext *context) const =0
 Returns true if this node can be evaluated for a static value. More...
 
virtual bool needsGeometry () const =0
 Abstract virtual method which returns if the geometry is required to evaluate this expression. More...
 
virtual QList< const QgsExpressionNode * > nodes () const =0
 Returns a list of all nodes which are used in this expression. More...
 
virtual QgsExpressionNode::NodeType nodeType () const =0
 Gets the type of this node. More...
 
bool prepare (QgsExpression *parent, const QgsExpressionContext *context)
 Prepare this node for evaluation. More...
 
virtual QSet< QString > referencedColumns () const =0
 Abstract virtual method which returns a list of columns required to evaluate this node. More...
 
virtual QSet< QString > referencedFunctions () const =0
 Returns a set of all functions which are used in this expression. More...
 
virtual QSet< QString > referencedVariables () const =0
 Returns a set of all variables which are used in this expression. More...
 
void setCachedStaticValue (const QVariant &value) const
 Sets the cached static value for the node. More...
 

Static Public Member Functions

static bool validateParams (int fnIndex, QgsExpressionNode::NodeList *args, QString &error)
 Tests whether the provided argument list is valid for the matching function. More...
 

Additional Inherited Members

- Public Types inherited from QgsExpressionNode
enum  NodeType {
  ntUnaryOperator , ntBinaryOperator , ntInOperator , ntFunction ,
  ntLiteral , ntColumnRef , ntCondition , ntIndexOperator ,
  ntBetweenOperator
}
 Known node types. More...
 
- Public Attributes inherited from QgsExpressionNode
int parserFirstColumn = 0
 First column in the parser this node was found. More...
 
int parserFirstLine = 0
 First line in the parser this node was found. More...
 
int parserLastColumn = 0
 Last column in the parser this node was found. More...
 
int parserLastLine = 0
 Last line in the parser this node was found. More...
 
- Protected Member Functions inherited from QgsExpressionNode
 QgsExpressionNode ()=default
 Constructor. More...
 
 QgsExpressionNode (const QgsExpressionNode &other)
 Copy constructor. More...
 
void cloneTo (QgsExpressionNode *target) const
 Copies the members of this node to the node provided in target. More...
 
QgsExpressionNodeoperator= (const QgsExpressionNode &other)
 Assignment operator. More...
 
- Protected Attributes inherited from QgsExpressionNode
QVariant mCachedStaticValue
 Contains the static, precalculated value for the node if mHasCachedValue is true. More...
 
std::unique_ptr< QgsExpressionNodemCompiledSimplifiedNode
 Contains a compiled node which represents a simplified version of this node as a result of compilation optimizations. More...
 
bool mHasCachedValue = false
 true if the node has a static, precalculated value. More...
 

Detailed Description

An expression node for expression functions.

Definition at line 395 of file qgsexpressionnodeimpl.h.

Constructor & Destructor Documentation

◆ QgsExpressionNodeFunction()

QgsExpressionNodeFunction::QgsExpressionNodeFunction ( int  fnIndex,
QgsExpressionNode::NodeList args 
)

A function node consists of an index of the function in the global function array and a list of arguments that will be passed to it.

Definition at line 1082 of file qgsexpressionnodeimpl.cpp.

◆ ~QgsExpressionNodeFunction()

QgsExpressionNodeFunction::~QgsExpressionNodeFunction ( )
override

Definition at line 1146 of file qgsexpressionnodeimpl.cpp.

Member Function Documentation

◆ args()

QgsExpressionNode::NodeList * QgsExpressionNodeFunction::args ( ) const
inline

Returns a list of arguments specified for the function.

Definition at line 433 of file qgsexpressionnodeimpl.h.

◆ clone()

QgsExpressionNode * QgsExpressionNodeFunction::clone ( ) const
overridevirtual

Generate a clone of this node.

Ownership is transferred to the caller.

Returns
a deep copy of this node.

Implements QgsExpressionNode.

Definition at line 1281 of file qgsexpressionnodeimpl.cpp.

◆ dump()

QString QgsExpressionNodeFunction::dump ( ) const
overridevirtual

Dump this node into a serialized (part) of an expression.

The returned expression does not necessarily literally match the original expression, it's just guaranteed to behave the same way.

Implements QgsExpressionNode.

Definition at line 1172 of file qgsexpressionnodeimpl.cpp.

◆ evalNode()

QVariant QgsExpressionNodeFunction::evalNode ( QgsExpression parent,
const QgsExpressionContext context 
)
overridevirtual

Abstract virtual eval method Errors are reported to the parent.

Implements QgsExpressionNode.

Definition at line 1070 of file qgsexpressionnodeimpl.cpp.

◆ fnIndex()

int QgsExpressionNodeFunction::fnIndex ( ) const
inline

Returns the index of the node's function.

Definition at line 428 of file qgsexpressionnodeimpl.h.

◆ isStatic()

bool QgsExpressionNodeFunction::isStatic ( QgsExpression parent,
const QgsExpressionContext context 
) const
overridevirtual

Returns true if this node can be evaluated for a static value.

This is used during the prepare() step and in case it returns true, the value of this node will already be evaluated and the result cached (and therefore not re-evaluated in subsequent calls to eval()). In case this returns true, prepareNode() will never be called.

Implements QgsExpressionNode.

Definition at line 1288 of file qgsexpressionnodeimpl.cpp.

◆ needsGeometry()

bool QgsExpressionNodeFunction::needsGeometry ( ) const
overridevirtual

Abstract virtual method which returns if the geometry is required to evaluate this expression.

This needs to call needsGeometry() recursively on any child nodes.

Returns
true if a geometry is required to evaluate this expression

Implements QgsExpressionNode.

Definition at line 1269 of file qgsexpressionnodeimpl.cpp.

◆ nodes()

QList< const QgsExpressionNode * > QgsExpressionNodeFunction::nodes ( ) const
overridevirtual

Returns a list of all nodes which are used in this expression.

Note
not available in Python bindings
Since
QGIS 3.2

Implements QgsExpressionNode.

Definition at line 1254 of file qgsexpressionnodeimpl.cpp.

◆ nodeType()

QgsExpressionNode::NodeType QgsExpressionNodeFunction::nodeType ( ) const
overridevirtual

Gets the type of this node.

Returns
The type of this node

Implements QgsExpressionNode.

Definition at line 1151 of file qgsexpressionnodeimpl.cpp.

◆ prepareNode()

bool QgsExpressionNodeFunction::prepareNode ( QgsExpression parent,
const QgsExpressionContext context 
)
overridevirtual

Abstract virtual preparation method Errors are reported to the parent.

Implements QgsExpressionNode.

Definition at line 1156 of file qgsexpressionnodeimpl.cpp.

◆ referencedColumns()

QSet< QString > QgsExpressionNodeFunction::referencedColumns ( ) const
overridevirtual

Abstract virtual method which returns a list of columns required to evaluate this node.

When reimplementing this, you need to return any column that is required to evaluate this node and in addition recursively collect all the columns required to evaluate child nodes.

Warning
If the expression has been prepared via a call to QgsExpression::prepare(), or a call to QgsExpressionNode::prepare() for a node has been made, then some nodes in the expression may have been determined to evaluate to a static pre-calculatable value. In this case the results will omit attribute indices which are used by these pre-calculated nodes, regardless of their actual referenced columns. If you are seeking to use these functions to introspect an expression you must take care to do this with an unprepared expression node.
Returns
A list of columns required to evaluate this expression

Implements QgsExpressionNode.

Definition at line 1181 of file qgsexpressionnodeimpl.cpp.

◆ referencedFunctions()

QSet< QString > QgsExpressionNodeFunction::referencedFunctions ( ) const
overridevirtual

Returns a set of all functions which are used in this expression.

Note
In contrast to the referencedColumns() function this method is not affected by any previous calls to QgsExpressionNode::prepare().

Implements QgsExpressionNode.

Definition at line 1237 of file qgsexpressionnodeimpl.cpp.

◆ referencedVariables()

QSet< QString > QgsExpressionNodeFunction::referencedVariables ( ) const
overridevirtual

Returns a set of all variables which are used in this expression.

Note
In contrast to the referencedColumns() function this method is not affected by any previous calls to QgsExpressionNode::prepare().

Implements QgsExpressionNode.

Definition at line 1207 of file qgsexpressionnodeimpl.cpp.

◆ validateParams()

bool QgsExpressionNodeFunction::validateParams ( int  fnIndex,
QgsExpressionNode::NodeList args,
QString &  error 
)
static

Tests whether the provided argument list is valid for the matching function.

Definition at line 1293 of file qgsexpressionnodeimpl.cpp.


The documentation for this class was generated from the following files: