16#ifndef QGSEXPRESSION_H
17#define QGSEXPRESSION_H
26#include <QCoreApplication>
27#include <QDomDocument>
30#include <QRecursiveMutex>
36using namespace Qt::StringLiterals;
48class QgsExpressionPrivate;
55 HelpArg(
const QString &arg,
const QString &desc,
bool descOnly =
false,
bool syntaxOnly =
false,
bool optional =
false,
const QString &defaultVal = QString() )
57 , mDescription( desc )
58 , mDescOnly( descOnly )
59 , mSyntaxOnly( syntaxOnly )
60 , mOptional( optional )
61 , mDefaultVal( defaultVal )
74 HelpExample(
const QString &expression,
const QString &returns,
const QString ¬e = QString() )
75 : mExpression( expression )
90 const QString &description,
91 const QList<HelpArg> &arguments = QList<HelpArg>(),
92 bool variableLenArguments =
false,
93 const QList<HelpExample> &examples = QList<HelpExample>(),
94 const QString ¬es = QString(),
95 const QStringList &tags = QStringList()
98 , mDescription( description )
99 , mArguments( arguments )
100 , mVariableLenArguments( variableLenArguments )
101 , mExamples( examples )
107 QString mDescription;
108 QList<HelpArg> mArguments;
109 bool mVariableLenArguments;
110 QList<HelpExample> mExamples;
120 Help(
const QString &name,
const QString &type,
const QString &description,
const QList<HelpVariant> &variants )
123 , mDescription( description )
124 , mVariants( variants )
129 QString mDescription;
130 QList<HelpVariant> mVariants;
133typedef QHash<QString, Help> HelpTextHash;
368 QList<const QgsExpressionNode *>
nodes()
const;
378 QList<const T *> lst;
379 const QList<const QgsExpressionNode *> allNodes(
nodes() );
380 for (
const auto &node : allNodes )
382 const T *n =
dynamic_cast<const T *
>( node );
402 QSet<int> referencedAttributeIndexes(
const QgsFields &fields )
const;
405 bool needsGeometry()
const;
423 bool hasEvalError()
const;
425 QString evalErrorString()
const;
427 void setEvalErrorString(
const QString &str );
434 bool isField()
const;
448 static int expressionToLayerFieldIndex(
const QString &expression,
const QgsVectorLayer *layer );
462 static QString quoteFieldExpression(
const QString &expression,
const QgsVectorLayer *layer );
477 void setExpression(
const QString &expression );
484 QString expression()
const;
492 QString dump()
const;
573 static QSet<QString> referencedVariables(
const QString &text );
584 static double evaluateToDouble(
const QString &text,
double fallbackValue );
599 static const QList<QgsExpressionFunction *> &Functions();
601 static const QStringList &BuiltinFunctions();
617 static bool unregisterFunction(
const QString &name );
622 static void cleanRegisteredFunctions();
625 static bool isFunctionName(
const QString &name );
628 static int functionIndex(
const QString &name );
634 static int functionCount();
641 static QString quotedColumnRef( QString name );
648 static QString quotedString( QString text );
657 static QString quotedValue(
const QVariant &value );
667 static QString quotedValue(
const QVariant &value, QMetaType::Type type );
678 Q_DECL_DEPRECATED
static QString quotedValue(
const QVariant &value, QVariant::Type type )
SIP_DEPRECATED;
684 static HelpTextHash &functionHelpTexts();
694 static QString helpText( QString name );
701 static QStringList tags(
const QString &name );
715 static bool addVariableHelpText(
const QString name,
const QString &description );
723 static QString variableHelpText(
const QString &variableName );
733 static QString
formatVariableHelp(
const QString &description,
bool showValue =
true,
const QVariant &value = QVariant() );
739 static QString group(
const QString &group );
749 static QString formatPreviewString(
const QVariant &value,
bool htmlOutput =
true,
int maximumPreviewLength = 60 );
759 static QString createFieldEqualityExpression(
const QString &fieldName,
const QVariant &value, QMetaType::Type fieldType = QMetaType::Type::UnknownType );
770 Q_DECL_DEPRECATED
static QString createFieldEqualityExpression(
const QString &fieldName,
const QVariant &value, QVariant::Type fieldType )
SIP_DEPRECATED;
782 static bool isFieldEqualityExpression(
const QString &expression, QString &field
SIP_OUT, QVariant &value
SIP_OUT );
798 static bool attemptReduceToInClause(
const QStringList &expressions, QString &result
SIP_OUT );
802 SIP_PYOBJECT __repr__();
804 QString str = u
"<QgsExpression: '%1'>"_s.arg( sipCpp->expression() );
805 sipRes = PyUnicode_FromString( str.toUtf8().constData() );
822 QgsExpressionPrivate *d =
nullptr;
824 static HelpTextHash sFunctionHelpTexts;
827 static
void initFunctionHelp()
SIP_SKIP;
829 static
void buildFunctionHelp()
SIP_SKIP;
831 static
void initVariableHelp()
SIP_SKIP;
833 static
void buildVariableHelp()
SIP_SKIP;
836 static QRecursiveMutex sFunctionsMutex;
837 static QMap< QString,
int> sFunctionIndexMap;
DistanceUnit
Units of distance.
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
An abstract base class for defining QgsExpression functions.
Abstract base class for all nodes that can appear in an expression.
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QgsExpression & operator=(const QgsExpression &other)
Create a copy of this expression.
QList< const T * > findNodes() const
Returns a list of all nodes of the given class which are used in this expression.
QList< const QgsExpressionNode * > nodes() const
Returns a list of all nodes which are used in this expression.
QSet< QString > referencedVariables() const
Returns a list of all variables which are used in this expression.
bool hasParserError() const
Returns true if an error occurred when parsing the input expression.
QList< QgsExpression::ParserError > parserErrors() const
Returns parser error details including location of error.
QString parserErrorString() const
Returns parser error.
QSet< QString > referencedColumns() const
Gets list of columns referenced by the expression.
QSet< QString > referencedFunctions() const
Returns a list of the names of all functions which are used in this expression.
friend class QgsExpressionNodeFunction
const QgsExpressionNode * rootNode() const
Returns the root node of the expression.
QgsExpression(const QString &expr)
Creates a new expression based on the provided string.
bool isValid() const
Checks if this expression is valid.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
A geometry is the spatial representation of a feature.
Provides various utility functions for conversion between OGC (Open Geospatial Consortium) standards ...
Base class for vector data providers.
Represents a vector layer which manages a vector based dataset.
Q_DECLARE_METATYPE(QgsDatabaseQueryLogEntry)
QString formatVariableHelp(const QString &variable, const QString &description, bool showValue, const QVariant &value)
Returns a HTML formatted string for use as a variable item help.
Details about any parser errors that were found when parsing the expression.
QgsExpression::ParserError::ParserErrorType errorType
The type of parser error that was found.
int lastColumn
The last column that contained the error in the parser.
int lastLine
The last line that contained the error in the parser.
int firstColumn
The first column that contained the error in the parser.
QString errorMsg
The message for the error at this location.
@ FunctionInvalidParams
Function was called with invalid args.
@ Unknown
Unknown error type.
@ FunctionUnknown
Function was unknown.
@ FunctionNamedArgsError
Non named function arg used after named arg.
@ FunctionWrongArgs
Function was called with the wrong number of args.
int firstLine
The first line that contained the error in the parser.