17#ifndef QGSEXPRESSIONNODEIMPL_H
18#define QGSEXPRESSIONNODEIMPL_H
25using namespace Qt::StringLiterals;
54 SIP_PYOBJECT __repr__();
55 % MethodCode QString str = u
"<QgsExpressionNodeUnaryOperator: %1>"_s.arg( sipCpp->text() );
56 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
79 QString
dump()
const override;
84 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
85 bool needsGeometry() const override;
105 std::unique_ptr<QgsExpressionNode> mOperand;
107 static const char *UNARY_OPERATOR_TEXT[];
165 SIP_PYOBJECT __repr__();
166 % MethodCode QString str = u
"<QgsExpressionNodeBinaryOperator: %1>"_s.arg( sipCpp->text() );
167 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
194 QString
dump()
const override;
199 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
201 bool needsGeometry() const override;
208 int precedence() const;
213 bool leftAssociative() const;
219 QString text() const;
228 qlonglong computeInt( qlonglong x, qlonglong y );
229 double computeDouble(
double x,
double y );
236 QDateTime computeDateTimeFromInterval(
const QDateTime &d,
QgsInterval *i );
244 std::unique_ptr<QgsExpressionNode> mOpLeft;
245 std::unique_ptr<QgsExpressionNode> mOpRight;
247 static const char *BINARY_OPERATOR_TEXT[];
281 QString
dump()
const override;
286 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
288 bool needsGeometry() const override;
300 std::unique_ptr<QgsExpressionNode> mContainer;
301 std::unique_ptr<QgsExpressionNode> mIndex;
317 , mLowerBound( nodeLowerBound )
318 , mHigherBound( nodeHigherBound )
333 QString
dump()
const override;
338 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
339 bool needsGeometry() const override;
367 std::unique_ptr<QgsExpressionNode> mNode;
368 std::unique_ptr<QgsExpressionNode> mLowerBound;
369 std::unique_ptr<QgsExpressionNode> mHigherBound;
370 bool mNegate =
false;
408 QString
dump()
const override;
413 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
414 bool needsGeometry() const override;
426 std::unique_ptr<QgsExpressionNode> mNode;
427 std::unique_ptr<QgsExpressionNodeInOperator::NodeList> mList;
447 SIP_PYOBJECT __repr__();
448 % MethodCode QString function;
451 function = fd->name();
455 function = QString::number( sipCpp->fnIndex() );
458 QString str = u
"<QgsExpressionNodeFunction: %1>"_s.arg( function );
459 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
479 QString
dump()
const override;
485 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
486 bool needsGeometry() const override;
491 static
bool validateParams(
int fnIndex,
QgsExpressionNode::NodeList *args, QString &error );
503 std::unique_ptr<NodeList> mArgs;
521 SIP_PYOBJECT __repr__();
522 % MethodCode QString str = u
"<QgsExpressionNodeLiteral: %1>"_s.arg( sipCpp->valueAsString() );
523 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
536 QString
dump()
const override;
542 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
543 bool needsGeometry() const override;
552 QString valueAsString() const;
574 SIP_PYOBJECT __repr__();
575 % MethodCode QString str = u
"<QgsExpressionNodeColumnRef: \"%1\">"_s.arg( sipCpp->name() );
576 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
589 QString
dump()
const override;
594 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
596 bool needsGeometry() const override;
651 std::unique_ptr<QgsExpressionNode> mWhenExp;
652 std::unique_ptr<QgsExpressionNode> mThenExp;
673 QString
dump()
const override;
691 QList<const QgsExpressionNode *>
nodes() const override
SIP_SKIP;
693 bool needsGeometry() const override;
706 WhenThenList mConditions;
707 std::unique_ptr<QgsExpressionNode> mElseExp;
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
An abstract base class for defining QgsExpression functions.
SQL-like BETWEEN and NOT BETWEEN predicates.
bool negate() const
Returns true if the predicate is an exclusion test (NOT BETWEEN).
QgsExpressionNode * node() const
Returns the expression node.
QgsExpressionNodeBetweenOperator(QgsExpressionNode *node, QgsExpressionNode *nodeLowerBound, QgsExpressionNode *nodeHigherBound, bool negate=false)
This node tests if the result of node is between the result of nodeLowerBound and nodeHigherBound nod...
A binary expression operator, which operates on two values.
QgsExpressionNode * opLeft() const
Returns the node to the left of the operator.
QgsExpressionNode * opRight() const
Returns the node to the right of the operator.
QgsExpressionNodeBinaryOperator::BinaryOperator op() const
Returns the binary operator.
QgsExpressionNodeBinaryOperator(QgsExpressionNodeBinaryOperator::BinaryOperator op, QgsExpressionNode *opLeft, QgsExpressionNode *opRight)
Binary combination of the left and the right with op.
BinaryOperator
list of binary operators
QgsExpressionNodeColumnRef(const QString &name)
Constructor for QgsExpressionNodeColumnRef, referencing the column with the specified name.
QString name() const
The name of the column.
Represents a "WHEN... THEN..." portation of a CASE WHEN clause in an expression.
WhenThen & operator=(const WhenThen &rh)=delete
WhenThen(const WhenThen &rh)=delete
WhenThen(QgsExpressionNode *whenExp, QgsExpressionNode *thenExp)
A combination of when and then.
QgsExpressionNode * thenExp() const
The expression node that makes the THEN result part of the condition.
QgsExpressionNode * whenExp() const
The expression that makes the WHEN part of the condition.
friend class QgsExpressionNodeCondition
An expression node for CASE WHEN clauses.
QgsExpressionNodeCondition(const QgsExpressionNodeCondition::WhenThenList &conditions, QgsExpressionNode *elseExp=nullptr)
Create a new node with the given list of conditions and an optional elseExp expression.
QList< QgsExpressionNodeCondition::WhenThen * > WhenThenList
QgsExpressionNodeCondition(QgsExpressionNodeCondition::WhenThenList *conditions, QgsExpressionNode *elseExp=nullptr)
Create a new node with the given list of conditions and an optional elseExp expression.
QgsExpressionNode * elseExp() const
The ELSE expression used for the condition.
WhenThenList conditions() const
The list of WHEN THEN expression parts of the expression.
An expression node for expression functions.
int fnIndex() const
Returns the index of the node's function.
QgsExpressionNode::NodeList * args() const
Returns a list of arguments specified for the function.
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 argum...
An expression node for value IN or NOT IN clauses.
QgsExpressionNode * node() const
Returns the expression node.
QgsExpressionNodeInOperator(QgsExpressionNode *node, QgsExpressionNode::NodeList *list, bool notin=false)
This node tests if the result of node is in the result of list.
QgsExpressionNode::NodeList * list() const
Returns the list of nodes to search for matching values within.
bool isNotIn() const
Returns true if this node is a "NOT IN" operator, or false if the node is a normal "IN" operator.
An indexing expression operator, which allows use of square brackets [] to reference map and array it...
QgsExpressionNodeIndexOperator(QgsExpressionNode *container, QgsExpressionNode *index)
Constructor for QgsExpressionNodeIndexOperator.
QgsExpressionNode * index() const
Returns the index node, representing an array element index or map key.
QgsExpressionNode * container() const
Returns the container node, representing an array or map value.
QVariant value() const
The value of the literal.
QgsExpressionNodeLiteral(const QVariant &value)
Constructor for QgsExpressionNodeLiteral, with the specified literal value.
A unary node is either negative as in boolean (not) or as in numbers (minus).
QgsExpressionNodeUnaryOperator::UnaryOperator op() const
Returns the unary operator.
QgsExpressionNodeUnaryOperator(QgsExpressionNodeUnaryOperator::UnaryOperator op, QgsExpressionNode *operand)
A node unary operator is modifying the value of operand by negating it with op.
QgsExpressionNode * operand() const
Returns the node the operator will operate upon.
UnaryOperator
list of unary operators
A list of expression nodes.
Abstract base class for all nodes that can appear in an expression.
virtual QString dump() const =0
Dump this node into a serialized (part) of an expression.
virtual QgsExpressionNode * clone() const =0
Generate a clone of this node.
virtual QSet< QString > referencedColumns() const =0
Abstract virtual method which returns a list of columns required to evaluate this node.
virtual QgsExpressionNode::NodeType nodeType() const =0
Gets the type of this node.
virtual QSet< QString > referencedVariables() const =0
Returns a set of all variables which are used in this expression.
QgsExpressionNode()=default
NodeType
Known node types.
virtual QList< const QgsExpressionNode * > nodes() const =0
Returns a list of all nodes which are used in this expression.
virtual QSet< QString > referencedFunctions() const =0
Returns a set of all functions which are used in this expression.
Handles parsing and evaluation of expressions (formerly called "search strings").
A representation of the interval between two datetime values.