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,
56 bool optional =
false,
const QString &defaultVal = QString() )
58 , mDescription( desc )
59 , mDescOnly( descOnly )
60 , mSyntaxOnly( syntaxOnly )
61 , mOptional( optional )
62 , mDefaultVal( defaultVal )
75 HelpExample(
const QString &expression,
const QString &returns,
const QString ¬e = QString() )
76 : mExpression( expression )
89 HelpVariant(
const QString &name,
const QString &description,
90 const QList<HelpArg> &arguments = QList<HelpArg>(),
91 bool variableLenArguments =
false,
92 const QList<HelpExample> &examples = QList<HelpExample>(),
93 const QString ¬es = QString(),
94 const QStringList &tags = QStringList() )
96 , mDescription( description )
97 , mArguments( arguments )
98 , mVariableLenArguments( variableLenArguments )
99 , mExamples( examples )
105 QString mDescription;
106 QList<HelpArg> mArguments;
107 bool mVariableLenArguments;
108 QList<HelpExample> mExamples;
118 Help(
const QString &name,
const QString &type,
const QString &description,
const QList<HelpVariant> &variants )
121 , mDescription( description )
122 , mVariants( variants )
127 QString mDescription;
128 QList<HelpVariant> mVariants;
131typedef QHash<QString, Help> HelpTextHash;
367 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;
564 static QString replaceExpressionText(
const QString &action,
const QgsExpressionContext *context,
574 static QSet<QString> referencedVariables(
const QString &text );
585 static double evaluateToDouble(
const QString &text,
double fallbackValue );
600 static const QList<QgsExpressionFunction *> &Functions();
602 static const QStringList &BuiltinFunctions();
618 static bool unregisterFunction(
const QString &name );
623 static void cleanRegisteredFunctions();
626 static bool isFunctionName(
const QString &name );
629 static int functionIndex(
const QString &name );
635 static int functionCount();
642 static QString quotedColumnRef( QString name );
649 static QString quotedString( QString text );
658 static QString quotedValue(
const QVariant &value );
668 static QString quotedValue(
const QVariant &value, QMetaType::Type type );
679 Q_DECL_DEPRECATED
static QString quotedValue(
const QVariant &value, QVariant::Type type )
SIP_DEPRECATED;
685 static HelpTextHash &functionHelpTexts();
695 static QString helpText( QString name );
702 static QStringList tags(
const QString &name );
716 static bool addVariableHelpText(
const QString name,
const QString &description );
724 static QString variableHelpText(
const QString &variableName );
734 static QString
formatVariableHelp(
const QString &description,
bool showValue =
true,
const QVariant &value = QVariant() );
740 static QString group(
const QString &group );
750 static QString formatPreviewString(
const QVariant &value,
bool htmlOutput =
true,
int maximumPreviewLength = 60 );
760 static QString createFieldEqualityExpression(
const QString &fieldName,
const QVariant &value, QMetaType::Type fieldType = QMetaType::Type::UnknownType );
771 Q_DECL_DEPRECATED
static QString createFieldEqualityExpression(
const QString &fieldName,
const QVariant &value, QVariant::Type fieldType )
SIP_DEPRECATED;
783 static bool isFieldEqualityExpression(
const QString &expression, QString &field
SIP_OUT, QVariant &value
SIP_OUT );
799 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() );
820 QgsExpressionPrivate *d =
nullptr;
822 static HelpTextHash sFunctionHelpTexts;
825 static
void initFunctionHelp()
SIP_SKIP;
827 static
void buildFunctionHelp()
SIP_SKIP;
829 static
void initVariableHelp()
SIP_SKIP;
831 static
void buildVariableHelp()
SIP_SKIP;
834 static QRecursiveMutex sFunctionsMutex;
835 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.