QGIS API Documentation
3.4.15-Madeira (e83d02e274)
|
Abstract base class for all nodes that can appear in an expression. More...
#include <qgsexpressionnode.h>
Classes | |
struct | NamedNode |
Named node. More... | |
class | NodeList |
A list of expression nodes. More... | |
Public Types | |
enum | NodeType { ntUnaryOperator, ntBinaryOperator, ntInOperator, ntFunction, ntLiteral, ntColumnRef, ntCondition } |
Known node types. More... | |
Public Member Functions | |
virtual | ~QgsExpressionNode ()=default |
virtual QgsExpressionNode * | clone () 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... | |
QVariant | eval (QgsExpression *parent, const QgsExpressionContext *context) |
Evaluate this node with the given context and parent. 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... | |
Public Attributes | |
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 | |
void | cloneTo (QgsExpressionNode *target) const |
Copies the members of this node to the node provided in target. More... | |
Abstract base class for all nodes that can appear in an expression.
Definition at line 34 of file qgsexpressionnode.h.
Known node types.
Definition at line 74 of file qgsexpressionnode.h.
|
virtualdefault |
|
pure virtual |
Generate a clone of this node.
Ownership is transferred to the caller.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
protected |
Copies the members of this node to the node provided in target.
Needs to be called by all subclasses as part of their clone() implementation.
Definition at line 51 of file qgsexpressionnode.cpp.
|
pure virtual |
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.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
QVariant QgsExpressionNode::eval | ( | QgsExpression * | parent, |
const QgsExpressionContext * | context | ||
) |
Evaluate this node with the given context and parent.
This will return a cached value if it has been determined to be static during the prepare() execution.
Definition at line 20 of file qgsexpressionnode.cpp.
|
pure virtual |
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.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
pure virtual |
Abstract virtual method which returns if the geometry is required to evaluate this expression.
This needs to call needsGeometry()
recursively on any child nodes.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
pure virtual |
Returns a list of all nodes which are used in this expression.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
pure virtual |
Gets the type of this node.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
bool QgsExpressionNode::prepare | ( | QgsExpression * | parent, |
const QgsExpressionContext * | context | ||
) |
Prepare this node for evaluation.
This will check if the node content is static and in this case cache the value. If it's not static it will call prepareNode() to allow the node to do initialization work like for example resolving a column name to an attribute index.
Definition at line 33 of file qgsexpressionnode.cpp.
|
pure virtual |
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.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
pure virtual |
Returns a set of all functions which are used in this expression.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
|
pure virtual |
Returns a set of all variables which are used in this expression.
Implemented in QgsExpressionNodeCondition, QgsExpressionNodeColumnRef, QgsExpressionNodeLiteral, QgsExpressionNodeFunction, QgsExpressionNodeInOperator, QgsExpressionNodeBinaryOperator, and QgsExpressionNodeUnaryOperator.
int QgsExpressionNode::parserFirstColumn = 0 |
First column in the parser this node was found.
Definition at line 280 of file qgsexpressionnode.h.
int QgsExpressionNode::parserFirstLine = 0 |
First line in the parser this node was found.
Definition at line 273 of file qgsexpressionnode.h.
int QgsExpressionNode::parserLastColumn = 0 |
Last column in the parser this node was found.
Definition at line 294 of file qgsexpressionnode.h.
int QgsExpressionNode::parserLastLine = 0 |
Last line in the parser this node was found.
Definition at line 287 of file qgsexpressionnode.h.