68#include <QMimeDatabase>
69#include <QProcessEnvironment>
70#include <QCryptographicHash>
71#include <QRegularExpression>
94 QVariantList argValues;
98 const QList< QgsExpressionNode * > argList = args->
list();
105 v = QVariant::fromValue( n );
109 v = n->eval( parent, context );
111 bool defaultParamIsNull = mParameterList.count() > arg && mParameterList.at( arg ).optional() && !mParameterList.at( arg ).defaultValue().isValid();
112 if ( QgsExpressionUtils::isNull( v ) && !defaultParamIsNull && !
handlesNull() )
115 argValues.append( v );
120 return func( argValues, context, parent, node );
131 return QStringList();
158 return mGroups.isEmpty() ? false : mGroups.contains( QStringLiteral(
"deprecated" ) );
163 return ( QString::compare( mName, other.mName, Qt::CaseInsensitive ) == 0 );
175 const QString &group,
176 const QString &helpText,
180 const QStringList &aliases,
184 , mAliases( aliases )
185 , mUsesGeometry( false )
186 , mUsesGeometryFunc( usesGeometry )
187 , mReferencedColumnsFunc( referencedColumns )
199 if ( mUsesGeometryFunc )
200 return mUsesGeometryFunc( node );
202 return mUsesGeometry;
212 if ( mReferencedColumnsFunc )
213 return mReferencedColumnsFunc( node );
215 return mReferencedColumns;
221 return mIsStaticFunc( node, parent, context );
229 return mPrepareFunc( node, parent, context );
241 mIsStaticFunc =
nullptr;
247 mPrepareFunc = prepareFunc;
252 if ( node && node->
args() )
254 const QList< QgsExpressionNode * > argList = node->
args()->
list();
257 if ( !argNode->isStatic( parent, context ) )
267 double start = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
268 double stop = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
269 double step = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
271 if ( step == 0.0 || ( step > 0.0 && start > stop ) || ( step < 0.0 && start < stop ) )
278 double current = start + step;
279 while ( ( ( step > 0.0 && current <= stop ) || ( step < 0.0 && current >= stop ) ) && length <= 1000000 )
294 const QString name = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
296 if ( name == QLatin1String(
"feature" ) )
298 return context->
hasFeature() ? QVariant::fromValue( context->
feature() ) : QVariant();
300 else if ( name == QLatin1String(
"id" ) )
302 return context->
hasFeature() ? QVariant::fromValue( context->
feature().
id() ) : QVariant();
304 else if ( name == QLatin1String(
"geometry" ) )
320 QString templateString = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
329 QString expString = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
331 return expression.evaluate( context );
336 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
337 return QVariant( std::sqrt( x ) );
342 double val = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
343 return QVariant( std::fabs( val ) );
348 double deg = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
349 return ( deg * M_PI ) / 180;
353 double rad = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
354 return ( 180 * rad ) / M_PI;
358 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
359 return QVariant( std::sin( x ) );
363 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
364 return QVariant( std::cos( x ) );
368 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
369 return QVariant( std::tan( x ) );
373 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
374 return QVariant( std::asin( x ) );
378 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
379 return QVariant( std::acos( x ) );
383 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
384 return QVariant( std::atan( x ) );
388 double y = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
389 double x = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
390 return QVariant( std::atan2( y, x ) );
394 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
395 return QVariant( std::exp( x ) );
399 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
402 return QVariant( std::log( x ) );
406 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
409 return QVariant( log10( x ) );
413 double b = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
414 double x = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
415 if ( x <= 0 || b <= 0 )
417 return QVariant( std::log( x ) / std::log( b ) );
421 double min = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
422 double max = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
426 std::random_device rd;
427 std::mt19937_64 generator( rd() );
429 if ( !QgsExpressionUtils::isNull( values.at( 2 ) ) )
432 if ( QgsExpressionUtils::isIntSafe( values.at( 2 ) ) )
435 seed = QgsExpressionUtils::getIntValue( values.at( 2 ), parent );
440 QString seedStr = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
441 std::hash<std::string> hasher;
442 seed = hasher( seedStr.toStdString() );
444 generator.seed( seed );
448 double f =
static_cast< double >( generator() ) /
static_cast< double >( std::mt19937_64::max() );
449 return QVariant( min + f * ( max - min ) );
453 qlonglong min = QgsExpressionUtils::getIntValue( values.at( 0 ), parent );
454 qlonglong max = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
458 std::random_device rd;
459 std::mt19937_64 generator( rd() );
461 if ( !QgsExpressionUtils::isNull( values.at( 2 ) ) )
464 if ( QgsExpressionUtils::isIntSafe( values.at( 2 ) ) )
467 seed = QgsExpressionUtils::getIntValue( values.at( 2 ), parent );
472 QString seedStr = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
473 std::hash<std::string> hasher;
474 seed = hasher( seedStr.toStdString() );
476 generator.seed( seed );
479 qint64 randomInteger = min + ( generator() % ( max - min + 1 ) );
480 if ( randomInteger > std::numeric_limits<int>::max() || randomInteger < -std::numeric_limits<int>::max() )
481 return QVariant( randomInteger );
484 return QVariant(
int( randomInteger ) );
489 double val = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
490 double domainMin = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
491 double domainMax = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
492 double rangeMin = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
493 double rangeMax = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
495 if ( domainMin >= domainMax )
497 parent->
setEvalErrorString( QObject::tr(
"Domain max must be greater than domain min" ) );
502 if ( val >= domainMax )
506 else if ( val <= domainMin )
512 double m = ( rangeMax - rangeMin ) / ( domainMax - domainMin );
513 double c = rangeMin - ( domainMin * m );
516 return QVariant( m * val +
c );
521 double val = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
522 double domainMin = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
523 double domainMax = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
524 double rangeMin = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
525 double rangeMax = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
526 double exponent = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
528 if ( domainMin >= domainMax )
530 parent->
setEvalErrorString( QObject::tr(
"Domain max must be greater than domain min" ) );
540 if ( val >= domainMax )
544 else if ( val <= domainMin )
550 return QVariant( ( ( rangeMax - rangeMin ) / std::pow( domainMax - domainMin, exponent ) ) * std::pow( val - domainMin, exponent ) + rangeMin );
555 double val = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
556 double domainMin = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
557 double domainMax = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
558 double rangeMin = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
559 double rangeMax = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
560 double exponent = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
562 if ( domainMin >= domainMax )
564 parent->
setEvalErrorString( QObject::tr(
"Domain max must be greater than domain min" ) );
574 if ( val >= domainMax )
578 else if ( val <= domainMin )
584 double ratio = ( std::pow( exponent, val - domainMin ) - 1 ) / ( std::pow( exponent, domainMax - domainMin ) - 1 );
585 return QVariant( ( rangeMax - rangeMin ) * ratio + rangeMin );
590 QVariant result( QVariant::Double );
591 double maxVal = std::numeric_limits<double>::quiet_NaN();
592 for (
const QVariant &val : values )
595 if ( std::isnan( maxVal ) )
599 else if ( !std::isnan( testVal ) )
601 maxVal = std::max( maxVal, testVal );
605 if ( !std::isnan( maxVal ) )
607 result = QVariant( maxVal );
614 QVariant result( QVariant::Double );
615 double minVal = std::numeric_limits<double>::quiet_NaN();
616 for (
const QVariant &val : values )
619 if ( std::isnan( minVal ) )
623 else if ( !std::isnan( testVal ) )
625 minVal = std::min( minVal, testVal );
629 if ( !std::isnan( minVal ) )
631 result = QVariant( minVal );
643 QVariant value = node->
eval( parent, context );
648 QgsVectorLayer *vl = QgsExpressionUtils::getVectorLayer( value, context, parent );
652 parent->
setEvalErrorString( QObject::tr(
"Cannot find layer with name or ID '%1'" ).arg( value.toString() ) );
657 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
659 value = node->
eval( parent, context );
665 parent->
setEvalErrorString( QObject::tr(
"No such aggregate '%1'" ).arg( value.toString() ) );
670 node = QgsExpressionUtils::getNode( values.at( 2 ), parent );
672 QString subExpression = node->
dump();
676 if ( values.count() > 3 )
678 node = QgsExpressionUtils::getNode( values.at( 3 ), parent );
681 if ( !nl || nl->value().isValid() )
686 if ( values.count() > 4 )
688 node = QgsExpressionUtils::getNode( values.at( 4 ), parent );
690 value = node->
eval( parent, context );
697 if ( values.count() > 5 )
699 node = QgsExpressionUtils::getNode( values.at( 5 ), parent );
702 if ( !nl || nl->value().isValid() )
704 orderBy = node->
dump();
709 QString aggregateError;
717 bool isStatic =
true;
718 if ( filterExp.referencedVariables().contains( QStringLiteral(
"parent" ) )
719 || filterExp.referencedVariables().contains( QString() )
720 || subExp.referencedVariables().contains( QStringLiteral(
"parent" ) )
721 || subExp.referencedVariables().contains( QString() ) )
728 const QSet<QString> refVars = filterExp.referencedVariables() + subExp.referencedVariables();
729 for (
const QString &varName : refVars )
732 if ( scope && !scope->
isStatic( varName ) )
740 if ( isStatic && ! parameters.
orderBy.isEmpty() )
742 for (
const auto &orderByClause : std::as_const( parameters.orderBy ) )
745 if ( orderByExpression.referencedVariables().contains( QStringLiteral(
"parent" ) ) || orderByExpression.referencedVariables().contains( QString() ) )
755 cacheKey = QStringLiteral(
"aggfcn:%1:%2:%3:%4:%5%6:%7" ).arg( vl->id(), QString::number(
static_cast< int >( aggregate ) ), subExpression, parameters.
filter,
756 QString::number( context->
feature().
id() ), QString::number(
qHash( context->
feature() ) ), orderBy );
760 cacheKey = QStringLiteral(
"aggfcn:%1:%2:%3:%4:%5" ).arg( vl->id(), QString::number(
static_cast< int >( aggregate ) ), subExpression, parameters.
filter, orderBy );
771 subContext.appendScope( subScope );
772 result = vl->aggregate( aggregate, subExpression, parameters, &subContext, &ok,
nullptr, context->
feedback(), &aggregateError );
784 result = vl->aggregate( aggregate, subExpression, parameters,
nullptr, &ok,
nullptr,
nullptr, &aggregateError );
788 if ( !aggregateError.isEmpty() )
789 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1 (%2)" ).arg( subExpression, aggregateError ) );
791 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1" ).arg( subExpression ) );
802 parent->
setEvalErrorString( QObject::tr(
"Cannot use relation aggregate function in this context" ) );
810 QgsVectorLayer *vl = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
814 parent->
setEvalErrorString( QObject::tr(
"Cannot use relation aggregate function in this context" ) );
823 QVariant value = node->
eval( parent, context );
825 QString relationId = value.toString();
832 if ( relations.isEmpty() || relations.at( 0 ).referencedLayer() != vl )
834 parent->
setEvalErrorString( QObject::tr(
"Cannot find relation with id '%1'" ).arg( relationId ) );
839 relation = relations.at( 0 );
846 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
848 value = node->
eval( parent, context );
854 parent->
setEvalErrorString( QObject::tr(
"No such aggregate '%1'" ).arg( value.toString() ) );
859 node = QgsExpressionUtils::getNode( values.at( 2 ), parent );
861 QString subExpression = node->
dump();
865 if ( values.count() > 3 )
867 node = QgsExpressionUtils::getNode( values.at( 3 ), parent );
869 value = node->
eval( parent, context );
876 if ( values.count() > 4 )
878 node = QgsExpressionUtils::getNode( values.at( 4 ), parent );
881 if ( !nl || nl->value().isValid() )
883 orderBy = node->
dump();
894 QString cacheKey = QStringLiteral(
"relagg:%1:%2:%3:%4:%5" ).arg( vl->id(),
895 QString::number(
static_cast< int >( aggregate ) ),
908 result = childLayer->
aggregate( aggregate, subExpression, parameters, &subContext, &ok,
nullptr, context->
feedback(), &error );
912 if ( !error.isEmpty() )
913 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1 (%2)" ).arg( subExpression, error ) );
915 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1" ).arg( subExpression ) );
929 parent->
setEvalErrorString( QObject::tr(
"Cannot use aggregate function in this context" ) );
937 QgsVectorLayer *vl = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
941 parent->
setEvalErrorString( QObject::tr(
"Cannot use aggregate function in this context" ) );
950 QString subExpression = node->
dump();
954 if ( values.count() > 1 )
956 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
959 if ( !nl || nl->value().isValid() )
960 groupBy = node->
dump();
964 if ( values.count() > 2 )
966 node = QgsExpressionUtils::getNode( values.at( 2 ), parent );
969 if ( !nl || nl->value().isValid() )
975 if ( orderByPos >= 0 && values.count() > orderByPos )
977 node = QgsExpressionUtils::getNode( values.at( orderByPos ), parent );
980 if ( !nl || nl->value().isValid() )
982 orderBy = node->
dump();
990 if ( !groupBy.isEmpty() )
993 QVariant groupByValue = groupByExp.evaluate( context );
994 QString groupByClause = QStringLiteral(
"%1 %2 %3" ).arg( groupBy,
997 if ( !parameters.
filter.isEmpty() )
998 parameters.
filter = QStringLiteral(
"(%1) AND (%2)" ).arg( parameters.
filter, groupByClause );
1000 parameters.
filter = groupByClause;
1006 bool isStatic =
true;
1007 const QSet<QString> refVars = filterExp.referencedVariables() + subExp.referencedVariables();
1008 for (
const QString &varName : refVars )
1011 if ( scope && !scope->
isStatic( varName ) )
1021 cacheKey = QStringLiteral(
"agg:%1:%2:%3:%4:%5%6:%7" ).arg( vl->id(), QString::number(
static_cast< int >( aggregate ) ), subExpression, parameters.
filter,
1022 QString::number( context->
feature().
id() ), QString::number(
qHash( context->
feature() ) ), orderBy );
1026 cacheKey = QStringLiteral(
"agg:%1:%2:%3:%4:%5" ).arg( vl->id(), QString::number(
static_cast< int >( aggregate ) ), subExpression, parameters.
filter, orderBy );
1038 subContext.appendScope( subScope );
1040 result = vl->aggregate( aggregate, subExpression, parameters, &subContext, &ok,
nullptr, context->
feedback(), &error );
1044 if ( !error.isEmpty() )
1045 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1 (%2)" ).arg( subExpression, error ) );
1047 parent->
setEvalErrorString( QObject::tr(
"Could not calculate aggregate for: %1" ).arg( subExpression ) );
1152 if ( values.count() > 3 )
1154 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 3 ), parent );
1156 QVariant value = node->
eval( parent, context );
1158 parameters.
delimiter = value.toString();
1169 if ( values.count() > 3 )
1171 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 3 ), parent );
1173 QVariant value = node->
eval( parent, context );
1175 parameters.
delimiter = value.toString();
1191 QVariant scale = context->
variable( QStringLiteral(
"map_scale" ) );
1196 const double v = scale.toDouble( &ok );
1204 double minValue = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
1205 double testValue = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
1206 double maxValue = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
1209 if ( testValue <= minValue )
1211 return QVariant( minValue );
1213 else if ( testValue >= maxValue )
1215 return QVariant( maxValue );
1219 return QVariant( testValue );
1225 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
1226 return QVariant( std::floor( x ) );
1231 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
1232 return QVariant( std::ceil( x ) );
1237 return QVariant( QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) );
1241 return QVariant( QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent ) );
1245 return QVariant( QgsExpressionUtils::getStringValue( values.at( 0 ), parent ) );
1250 QString format = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1251 QString language = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
1252 if ( format.isEmpty() && !language.isEmpty() )
1254 parent->
setEvalErrorString( QObject::tr(
"A format is required to convert to DateTime when the language is specified" ) );
1255 return QVariant( QDateTime() );
1258 if ( format.isEmpty() && language.isEmpty() )
1259 return QVariant( QgsExpressionUtils::getDateTimeValue( values.at( 0 ), parent ) );
1261 QString datetimestring = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1262 QLocale locale = QLocale();
1263 if ( !language.isEmpty() )
1265 locale = QLocale( language );
1268 QDateTime datetime = locale.toDateTime( datetimestring, format );
1269 if ( !datetime.isValid() )
1271 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to DateTime" ).arg( datetimestring ) );
1272 datetime = QDateTime();
1274 return QVariant( datetime );
1279 const int year = QgsExpressionUtils::getIntValue( values.at( 0 ), parent );
1280 const int month = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
1281 const int day = QgsExpressionUtils::getIntValue( values.at( 2 ), parent );
1283 const QDate date( year, month, day );
1284 if ( !date.isValid() )
1286 parent->
setEvalErrorString( QObject::tr(
"'%1-%2-%3' is not a valid date" ).arg( year ).arg( month ).arg( day ) );
1289 return QVariant( date );
1294 const int hours = QgsExpressionUtils::getIntValue( values.at( 0 ), parent );
1295 const int minutes = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
1296 const double seconds = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
1298 const QTime time( hours, minutes, std::floor( seconds ), ( seconds - std::floor( seconds ) ) * 1000 );
1299 if ( !time.isValid() )
1301 parent->
setEvalErrorString( QObject::tr(
"'%1-%2-%3' is not a valid time" ).arg( hours ).arg( minutes ).arg( seconds ) );
1304 return QVariant( time );
1309 const int year = QgsExpressionUtils::getIntValue( values.at( 0 ), parent );
1310 const int month = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
1311 const int day = QgsExpressionUtils::getIntValue( values.at( 2 ), parent );
1312 const int hours = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
1313 const int minutes = QgsExpressionUtils::getIntValue( values.at( 4 ), parent );
1314 const double seconds = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
1316 const QDate date( year, month, day );
1317 if ( !date.isValid() )
1319 parent->
setEvalErrorString( QObject::tr(
"'%1-%2-%3' is not a valid date" ).arg( year ).arg( month ).arg( day ) );
1322 const QTime time( hours, minutes, std::floor( seconds ), ( seconds - std::floor( seconds ) ) * 1000 );
1323 if ( !time.isValid() )
1325 parent->
setEvalErrorString( QObject::tr(
"'%1-%2-%3' is not a valid time" ).arg( hours ).arg( minutes ).arg( seconds ) );
1328 return QVariant( QDateTime( date, time ) );
1333 const double years = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
1334 const double months = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
1335 const double weeks = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
1336 const double days = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
1337 const double hours = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
1338 const double minutes = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
1339 const double seconds = QgsExpressionUtils::getDoubleValue( values.at( 6 ), parent );
1341 return QVariant::fromValue(
QgsInterval( years, months, weeks, days, hours, minutes, seconds ) );
1346 for (
const QVariant &value : values )
1357 const QVariant val1 = values.at( 0 );
1358 const QVariant val2 = values.at( 1 );
1368 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1369 return QVariant(
str.toLower() );
1373 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1374 return QVariant(
str.toUpper() );
1378 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1379 QStringList elems =
str.split(
' ' );
1380 for (
int i = 0; i < elems.size(); i++ )
1382 if ( elems[i].size() > 1 )
1383 elems[i] = elems[i].at( 0 ).toUpper() + elems[i].mid( 1 ).toLower();
1385 return QVariant( elems.join( QLatin1Char(
' ' ) ) );
1390 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1391 return QVariant(
str.trimmed() );
1396 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1398 const QString characters = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1400 const QRegularExpression re( QStringLiteral(
"^([%1]*)" ).arg( QRegularExpression::escape( characters ) ) );
1401 str.replace( re, QString() );
1402 return QVariant(
str );
1407 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1409 const QString characters = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1411 const QRegularExpression re( QStringLiteral(
"([%1]*)$" ).arg( QRegularExpression::escape( characters ) ) );
1412 str.replace( re, QString() );
1413 return QVariant(
str );
1418 QString string1 = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1419 QString string2 = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1425 QString string1 = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1426 QString string2 = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1432 QString string1 = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1433 QString string2 = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1435 return ( dist < 0 ? QVariant() : QVariant(
QgsStringUtils::hammingDistance( string1, string2, true ) ) );
1440 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1446 QChar character = QChar( QgsExpressionUtils::getNativeIntValue( values.at( 0 ), parent ) );
1447 return QVariant( QString( character ) );
1452 QString value = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1454 if ( value.isEmpty() )
1459 int res = value.at( 0 ).unicode();
1460 return QVariant( res );
1465 if ( values.length() == 2 || values.length() == 3 )
1467 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1468 qlonglong wrap = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
1470 QString customdelimiter = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
1481 if ( values.at( 0 ).userType() == QMetaType::type(
"QgsGeometry" ) )
1484 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
1488 return QVariant( geom.
length() );
1492 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1493 return QVariant(
str.length() );
1498 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
1503 double totalLength = 0;
1506 if (
const QgsLineString *line = qgsgeometry_cast< const QgsLineString * >( *it ) )
1508 totalLength += line->length3D();
1512 std::unique_ptr< QgsLineString > segmentized( qgsgeometry_cast< const QgsCurve * >( *it )->curveToLine() );
1513 totalLength += segmentized->length3D();
1522 if ( values.count() == 2 && values.at( 1 ).type() == QVariant::Map )
1524 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1525 QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 1 ), parent );
1526 QVector< QPair< QString, QString > > mapItems;
1528 for ( QVariantMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it )
1530 mapItems.append( qMakePair( it.key(), it.value().toString() ) );
1534 std::sort( mapItems.begin(),
1536 [](
const QPair< QString, QString > &pair1,
1537 const QPair< QString, QString > &pair2 )
1539 return ( pair1.first.length() > pair2.first.length() );
1542 for (
auto it = mapItems.constBegin(); it != mapItems.constEnd(); ++it )
1544 str =
str.replace( it->first, it->second );
1547 return QVariant(
str );
1549 else if ( values.count() == 3 )
1551 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1552 QVariantList before;
1554 bool isSingleReplacement =
false;
1556 if ( !QgsExpressionUtils::isList( values.at( 1 ) ) && values.at( 2 ).type() != QVariant::StringList )
1558 before = QVariantList() << QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1562 before = QgsExpressionUtils::getListValue( values.at( 1 ), parent );
1565 if ( !QgsExpressionUtils::isList( values.at( 2 ) ) )
1567 after = QVariantList() << QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
1568 isSingleReplacement =
true;
1572 after = QgsExpressionUtils::getListValue( values.at( 2 ), parent );
1575 if ( !isSingleReplacement && before.length() != after.length() )
1577 parent->
setEvalErrorString( QObject::tr(
"Invalid pair of array, length not identical" ) );
1581 for (
int i = 0; i < before.length(); i++ )
1583 str =
str.replace( before.at( i ).toString(), after.at( isSingleReplacement ? 0 : i ).toString() );
1586 return QVariant(
str );
1590 parent->
setEvalErrorString( QObject::tr(
"Function replace requires 2 or 3 arguments" ) );
1597 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1598 QString regexp = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1599 QString after = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
1601 QRegularExpression re( regexp, QRegularExpression::UseUnicodePropertiesOption );
1602 if ( !re.isValid() )
1604 parent->
setEvalErrorString( QObject::tr(
"Invalid regular expression '%1': %2" ).arg( regexp, re.errorString() ) );
1607 return QVariant(
str.replace( re, after ) );
1612 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1613 QString regexp = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1615 QRegularExpression re( regexp, QRegularExpression::UseUnicodePropertiesOption );
1616 if ( !re.isValid() )
1618 parent->
setEvalErrorString( QObject::tr(
"Invalid regular expression '%1': %2" ).arg( regexp, re.errorString() ) );
1621 return QVariant( (
str.indexOf( re ) + 1 ) );
1626 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1627 QString regexp = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1628 QString empty = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
1630 QRegularExpression re( regexp, QRegularExpression::UseUnicodePropertiesOption );
1631 if ( !re.isValid() )
1633 parent->
setEvalErrorString( QObject::tr(
"Invalid regular expression '%1': %2" ).arg( regexp, re.errorString() ) );
1637 QRegularExpressionMatch matches = re.match(
str );
1638 if ( matches.hasMatch() )
1641 QStringList list = matches.capturedTexts();
1644 for ( QStringList::const_iterator it = ++list.constBegin(); it != list.constEnd(); ++it )
1646 array += ( !( *it ).isEmpty() ) ? *it : empty;
1649 return QVariant( array );
1659 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1660 QString regexp = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1662 QRegularExpression re( regexp, QRegularExpression::UseUnicodePropertiesOption );
1663 if ( !re.isValid() )
1665 parent->
setEvalErrorString( QObject::tr(
"Invalid regular expression '%1': %2" ).arg( regexp, re.errorString() ) );
1670 QRegularExpressionMatch match = re.match(
str );
1671 if ( match.hasMatch() )
1674 if ( match.lastCapturedIndex() > 0 )
1677 return QVariant( match.captured( 1 ) );
1682 return QVariant( match.captured( 0 ) );
1687 return QVariant(
"" );
1693 QString uuid = QUuid::createUuid().toString();
1694 if ( values.at( 0 ).toString().compare( QStringLiteral(
"WithoutBraces" ), Qt::CaseInsensitive ) == 0 )
1695 uuid = QUuid::createUuid().toString( QUuid::StringFormat::WithoutBraces );
1696 else if ( values.at( 0 ).toString().compare( QStringLiteral(
"Id128" ), Qt::CaseInsensitive ) == 0 )
1697 uuid = QUuid::createUuid().toString( QUuid::StringFormat::Id128 );
1703 if ( !values.at( 0 ).isValid() || !values.at( 1 ).isValid() )
1706 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1707 int from = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
1710 if ( values.at( 2 ).isValid() )
1711 len = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
1717 from =
str.size() + from;
1723 else if ( from > 0 )
1731 len =
str.size() + len - from;
1738 return QVariant(
str.mid( from, len ) );
1744 return QVariant(
static_cast< int >( f.
id() ) );
1749 const int bandNb = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
1750 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 2 ), parent );
1751 bool foundLayer =
false;
1752 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( values.at( 0 ), context, parent, [parent, bandNb, geom](
QgsMapLayer * mapLayer )
1754 QgsRasterLayer *layer = qobject_cast< QgsRasterLayer * >( mapLayer );
1755 if ( !layer || !layer->dataProvider() )
1757 parent->setEvalErrorString( QObject::tr(
"Function `raster_value` requires a valid raster layer." ) );
1761 if ( bandNb < 1 || bandNb > layer->bandCount() )
1763 parent->setEvalErrorString( QObject::tr(
"Function `raster_value` requires a valid raster band number." ) );
1769 parent->setEvalErrorString( QObject::tr(
"Function `raster_value` requires a valid point geometry." ) );
1777 if ( multiPoint.count() == 1 )
1779 point = multiPoint[0];
1788 double value = layer->dataProvider()->sample( point, bandNb );
1789 return std::isnan( value ) ? QVariant() : value;
1795 parent->
setEvalErrorString( QObject::tr(
"Function `raster_value` requires a valid raster layer." ) );
1806 const int bandNb = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
1807 const double value = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
1809 bool foundLayer =
false;
1810 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( values.at( 0 ), context, parent, [parent, bandNb, value](
QgsMapLayer * mapLayer )-> QVariant
1812 QgsRasterLayer *layer = qobject_cast< QgsRasterLayer *>( mapLayer );
1813 if ( !layer || !layer->dataProvider() )
1815 parent->setEvalErrorString( QObject::tr(
"Function `raster_attributes` requires a valid raster layer." ) );
1819 if ( bandNb < 1 || bandNb > layer->bandCount() )
1821 parent->setEvalErrorString( QObject::tr(
"Function `raster_attributes` requires a valid raster band number." ) );
1825 if ( std::isnan( value ) )
1827 parent->
setEvalErrorString( QObject::tr(
"Function `raster_attributes` requires a valid raster value." ) );
1831 if ( ! layer->dataProvider()->attributeTable( bandNb ) )
1836 const QVariantList data = layer->dataProvider()->attributeTable( bandNb )->row( value );
1837 if ( data.isEmpty() )
1843 const QList<QgsRasterAttributeTable::Field> fields { layer->dataProvider()->attributeTable( bandNb )->fields() };
1844 for (
int idx = 0; idx < static_cast<int>( fields.count( ) ) && idx < static_cast<int>( data.count() ); ++idx )
1847 if ( field.isColor() || field.isRamp() )
1851 result.insert( fields.at( idx ).name, data.at( idx ) );
1859 parent->
setEvalErrorString( QObject::tr(
"Function `raster_attributes` requires a valid raster layer." ) );
1880 if ( values.size() == 1 )
1882 attr = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
1885 else if ( values.size() == 2 )
1887 feature = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
1888 attr = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
1892 parent->
setEvalErrorString( QObject::tr(
"Function `attribute` requires one or two parameters. %n given.",
nullptr, values.length() ) );
1901 QString table { R
"html(
1907 <tr><td>%2</td></tr>
1911 if ( values.size() == 1 )
1913 dict = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
1917 parent->
setEvalErrorString( QObject::tr(
"Function `map_to_html_table` requires one parameter. %n given.",
nullptr, values.length() ) );
1921 if ( dict.isEmpty() )
1926 QStringList headers;
1929 for (
auto it = dict.cbegin(); it != dict.cend(); ++it )
1931 headers.push_back( it.key().toHtmlEscaped() );
1932 cells.push_back( it.value().toString( ).toHtmlEscaped() );
1935 return table.arg( headers.join( QLatin1String(
"</th><th>" ) ), cells.join( QLatin1String(
"</td><td>" ) ) );
1940 QString table { R
"html(
1945 if ( values.size() == 1 )
1947 dict = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
1951 parent->
setEvalErrorString( QObject::tr(
"Function `map_to_html_dl` requires one parameter. %n given.",
nullptr, values.length() ) );
1955 if ( dict.isEmpty() )
1962 for (
auto it = dict.cbegin(); it != dict.cend(); ++it )
1964 rows.append( QStringLiteral(
"<dt>%1</dt><dd>%2</dd>" ).arg( it.key().toHtmlEscaped(), it.value().toString().toHtmlEscaped() ) );
1967 return table.arg( rows );
1975 layer = context->
variable( QStringLiteral(
"layer" ) );
1980 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 0 ), parent );
1982 layer = node->
eval( parent, context );
1993 feature = QgsExpressionUtils::getFeature( values.at( 1 ), parent );
1997 const QString strength = QgsExpressionUtils::getStringValue( values.at( 2 ), parent ).toLower();
1998 if ( strength == QLatin1String(
"hard" ) )
2002 else if ( strength == QLatin1String(
"soft" ) )
2007 bool foundLayer =
false;
2008 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( layer, context, parent, [parent, feature, constraintStrength](
QgsMapLayer * mapLayer ) -> QVariant
2010 QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( mapLayer );
2013 parent->
setEvalErrorString( QObject::tr(
"No layer provided to conduct constraints checks" ) );
2019 for (
int i = 0; i < fields.
size(); i++ )
2034 parent->
setEvalErrorString( QObject::tr(
"No layer provided to conduct constraints checks" ) );
2046 layer = context->
variable( QStringLiteral(
"layer" ) );
2051 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
2053 layer = node->
eval( parent, context );
2064 feature = QgsExpressionUtils::getFeature( values.at( 2 ), parent );
2068 const QString strength = QgsExpressionUtils::getStringValue( values.at( 3 ), parent ).toLower();
2069 if ( strength == QLatin1String(
"hard" ) )
2073 else if ( strength == QLatin1String(
"soft" ) )
2078 const QString attributeName = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2080 bool foundLayer =
false;
2081 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( layer, context, parent, [parent, feature, attributeName, constraintStrength](
QgsMapLayer * mapLayer ) -> QVariant
2083 QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( mapLayer );
2090 if ( fieldIndex == -1 )
2092 parent->
setEvalErrorString( QObject::tr(
"The attribute name did not match any field for the given feature" ) );
2103 parent->
setEvalErrorString( QObject::tr(
"No layer provided to conduct constraints checks" ) );
2119 feature = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
2124 for (
int i = 0; i < fields.
count(); ++i )
2138 if ( values.isEmpty() )
2141 layer = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
2143 else if ( values.size() == 1 )
2145 layer = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
2146 feature = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
2148 else if ( values.size() == 2 )
2150 layer = QgsExpressionUtils::getVectorLayer( values.at( 0 ), context, parent );
2151 feature = QgsExpressionUtils::getFeature( values.at( 1 ), parent );
2155 parent->
setEvalErrorString( QObject::tr(
"Function `represent_attributes` requires no more than two parameters. %n given.",
nullptr, values.length() ) );
2162 parent->
setEvalErrorString( QObject::tr(
"Cannot use represent attributes function: layer could not be resolved." ) );
2168 parent->
setEvalErrorString( QObject::tr(
"Cannot use represent attributes function: feature could not be resolved." ) );
2174 for (
int fieldIndex = 0; fieldIndex < fields.
count(); ++fieldIndex )
2176 const QString fieldName { fields.
at( fieldIndex ).
name() };
2177 const QVariant attributeVal = feature.
attribute( fieldIndex );
2178 const QString cacheValueKey = QStringLiteral(
"repvalfcnval:%1:%2:%3" ).arg( layer->
id(), fieldName, attributeVal.toString() );
2181 result.insert( fieldName, context->
cachedValue( cacheValueKey ) );
2190 const QString cacheKey = QStringLiteral(
"repvalfcn:%1:%2" ).arg( layer->
id(), fieldName );
2202 QString value( fieldFormatter->
representValue( layer, fieldIndex, setup.
config(), cache, attributeVal ) );
2204 result.insert( fields.
at( fieldIndex ).
name(), value );
2220 bool evaluate =
true;
2224 if ( values.isEmpty() )
2227 layer = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
2229 else if ( values.size() == 1 )
2231 layer = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
2232 feature = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
2234 else if ( values.size() == 2 )
2236 layer = QgsExpressionUtils::getVectorLayer( values.at( 0 ), context, parent );
2237 feature = QgsExpressionUtils::getFeature( values.at( 1 ), parent );
2239 else if ( values.size() == 3 )
2241 layer = QgsExpressionUtils::getVectorLayer( values.at( 0 ), context, parent );
2242 feature = QgsExpressionUtils::getFeature( values.at( 1 ), parent );
2243 evaluate = values.value( 2 ).toBool();
2249 parent->
setEvalErrorString( QObject::tr(
"Function `maptip` requires no more than three parameters. %n given.",
nullptr, values.length() ) );
2253 parent->
setEvalErrorString( QObject::tr(
"Function `display` requires no more than three parameters. %n given.",
nullptr, values.length() ) );
2285 subContext.setFeature( feature );
2294 exp.prepare( &subContext );
2295 return exp.evaluate( &subContext ).toString();
2301 return fcnCoreFeatureMaptipDisplay( values, context, parent,
false );
2306 return fcnCoreFeatureMaptipDisplay( values, context, parent,
true );
2313 if ( values.isEmpty() )
2316 layer = context->
variable( QStringLiteral(
"layer" ) );
2318 else if ( values.size() == 1 )
2320 feature = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
2321 layer = context->
variable( QStringLiteral(
"layer" ) );
2323 else if ( values.size() == 2 )
2325 feature = QgsExpressionUtils::getFeature( values.at( 1 ), parent );
2326 layer = values.at( 0 );
2330 parent->
setEvalErrorString( QObject::tr(
"Function `is_selected` requires no more than two parameters. %n given.",
nullptr, values.length() ) );
2334 bool foundLayer =
false;
2335 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( layer, context, parent, [feature](
QgsMapLayer * mapLayer ) -> QVariant
2337 QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( mapLayer );
2338 if ( !layer || !feature.
isValid() )
2340 return QVariant( QVariant::Bool );
2346 return QVariant( QVariant::Bool );
2355 if ( values.isEmpty() )
2356 layer = context->
variable( QStringLiteral(
"layer" ) );
2357 else if ( values.count() == 1 )
2358 layer = values.at( 0 );
2361 parent->
setEvalErrorString( QObject::tr(
"Function `num_selected` requires no more than one parameter. %n given.",
nullptr, values.length() ) );
2365 bool foundLayer =
false;
2366 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( layer, context, parent, [](
QgsMapLayer * mapLayer ) -> QVariant
2368 QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( mapLayer );
2371 return QVariant( QVariant::LongLong );
2377 return QVariant( QVariant::LongLong );
2384 static QMap<QString, qlonglong> counterCache;
2385 QVariant functionResult;
2387 auto fetchAndIncrementFunc = [ values, parent, &functionResult ](
QgsMapLayer * mapLayer,
const QString & databaseArgument )
2391 const QgsVectorLayer *layer = qobject_cast< QgsVectorLayer *>( mapLayer );
2396 database = decodedUri.value( QStringLiteral(
"path" ) ).toString();
2397 if ( database.isEmpty() )
2399 parent->
setEvalErrorString( QObject::tr(
"Could not extract file path from layer `%1`." ).arg( layer->
name() ) );
2404 database = databaseArgument;
2407 const QString table = values.at( 1 ).toString();
2408 const QString idColumn = values.at( 2 ).toString();
2409 const QString filterAttribute = values.at( 3 ).toString();
2410 const QVariant filterValue = values.at( 4 ).toString();
2411 const QVariantMap defaultValues = values.at( 5 ).toMap();
2417 if ( sqliteDb.
open_v2( database, SQLITE_OPEN_READWRITE,
nullptr ) != SQLITE_OK )
2420 functionResult = QVariant();
2424 QString errorMessage;
2425 QString currentValSql;
2427 qlonglong nextId = 0;
2428 bool cachedMode =
false;
2429 bool valueRetrieved =
false;
2431 QString cacheString = QStringLiteral(
"%1:%2:%3:%4:%5" ).arg( database, table, idColumn, filterAttribute, filterValue.toString() );
2438 auto cachedCounter = counterCache.find( cacheString );
2440 if ( cachedCounter != counterCache.end() )
2442 qlonglong &cachedValue = cachedCounter.value();
2443 nextId = cachedValue;
2445 cachedValue = nextId;
2446 valueRetrieved =
true;
2451 if ( !cachedMode || !valueRetrieved )
2453 int result = SQLITE_ERROR;
2456 if ( !filterAttribute.isNull() )
2461 sqliteStatement = sqliteDb.
prepare( currentValSql, result );
2463 if ( result == SQLITE_OK )
2466 if ( sqliteStatement.
step() == SQLITE_ROW )
2472 if ( cachedMode && result == SQLITE_OK )
2474 counterCache.insert( cacheString, nextId );
2478 counterCache.remove( cacheString );
2481 valueRetrieved =
true;
2485 if ( valueRetrieved )
2494 if ( !filterAttribute.isNull() )
2500 for ( QVariantMap::const_iterator iter = defaultValues.constBegin(); iter != defaultValues.constEnd(); ++iter )
2503 vals << iter.value().toString();
2506 upsertSql += QLatin1String(
" (" ) + cols.join(
',' ) +
')';
2507 upsertSql += QLatin1String(
" VALUES " );
2508 upsertSql +=
'(' + vals.join(
',' ) +
')';
2510 int result = SQLITE_ERROR;
2514 if ( transaction->
executeSql( upsertSql, errorMessage ) )
2521 result = sqliteDb.
exec( upsertSql, errorMessage );
2523 if ( result == SQLITE_OK )
2525 functionResult = QVariant( nextId );
2530 parent->
setEvalErrorString( QStringLiteral(
"Could not increment value: SQLite error: \"%1\" (%2)." ).arg( errorMessage, QString::number( result ) ) );
2531 functionResult = QVariant();
2536 functionResult = QVariant();
2539 bool foundLayer =
false;
2540 QgsExpressionUtils::executeLambdaForMapLayer( values.at( 0 ), context, parent, [&fetchAndIncrementFunc](
QgsMapLayer * layer )
2542 fetchAndIncrementFunc( layer, QString() );
2546 const QString databasePath = values.at( 0 ).toString();
2549 fetchAndIncrementFunc(
nullptr, databasePath );
2553 return functionResult;
2559 for (
const QVariant &value : values )
2562 concat += QgsExpressionUtils::getStringValue( value, parent );
2569 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2570 return string.indexOf( QgsExpressionUtils::getStringValue( values.at( 1 ), parent ) ) + 1;
2575 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2576 int pos = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
2577 return string.right( pos );
2582 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2583 int pos = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
2584 return string.left( pos );
2589 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2590 int length = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
2591 QString fill = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
2592 return string.leftJustified( length, fill.at( 0 ),
true );
2597 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2598 int length = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
2599 QString fill = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
2600 return string.rightJustified( length, fill.at( 0 ),
true );
2605 if ( values.size() < 1 )
2607 parent->
setEvalErrorString( QObject::tr(
"Function format requires at least 1 argument" ) );
2611 QString
string = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2612 for (
int n = 1; n < values.length(); n++ )
2614 string =
string.arg( QgsExpressionUtils::getStringValue( values.at( n ), parent ) );
2622 return QVariant( QDateTime::currentDateTime() );
2627 QString format = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
2628 QString language = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
2629 if ( format.isEmpty() && !language.isEmpty() )
2631 parent->
setEvalErrorString( QObject::tr(
"A format is required to convert to Date when the language is specified" ) );
2632 return QVariant( QDate() );
2635 if ( format.isEmpty() && language.isEmpty() )
2636 return QVariant( QgsExpressionUtils::getDateValue( values.at( 0 ), parent ) );
2638 QString datestring = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2639 QLocale locale = QLocale();
2640 if ( !language.isEmpty() )
2642 locale = QLocale( language );
2645 QDate date = locale.toDate( datestring, format );
2646 if ( !date.isValid() )
2648 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to Date" ).arg( datestring ) );
2651 return QVariant( date );
2656 QString format = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
2657 QString language = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
2658 if ( format.isEmpty() && !language.isEmpty() )
2660 parent->
setEvalErrorString( QObject::tr(
"A format is required to convert to Time when the language is specified" ) );
2661 return QVariant( QTime() );
2664 if ( format.isEmpty() && language.isEmpty() )
2665 return QVariant( QgsExpressionUtils::getTimeValue( values.at( 0 ), parent ) );
2667 QString timestring = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
2668 QLocale locale = QLocale();
2669 if ( !language.isEmpty() )
2671 locale = QLocale( language );
2674 QTime time = locale.toTime( timestring, format );
2675 if ( !time.isValid() )
2677 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to Time" ).arg( timestring ) );
2680 return QVariant( time );
2685 return QVariant::fromValue( QgsExpressionUtils::getInterval( values.at( 0 ), parent ) );
2694 double value = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
2695 QString axis = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
2696 int precision = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
2698 QString formatString;
2699 if ( values.count() > 3 )
2700 formatString = QgsExpressionUtils::getStringValue( values.at( 3 ), parent );
2702 QgsCoordinateFormatter::FormatFlags flags = QgsCoordinateFormatter::FormatFlags();
2703 if ( formatString.compare( QLatin1String(
"suffix" ), Qt::CaseInsensitive ) == 0 )
2707 else if ( formatString.compare( QLatin1String(
"aligned" ), Qt::CaseInsensitive ) == 0 )
2711 else if ( ! formatString.isEmpty() )
2713 parent->
setEvalErrorString( QObject::tr(
"Invalid formatting parameter: '%1'. It must be empty, or 'suffix' or 'aligned'." ).arg( formatString ) );
2717 if ( axis.compare( QLatin1String(
"x" ), Qt::CaseInsensitive ) == 0 )
2721 else if ( axis.compare( QLatin1String(
"y" ), Qt::CaseInsensitive ) == 0 )
2727 parent->
setEvalErrorString( QObject::tr(
"Invalid axis name: '%1'. It must be either 'x' or 'y'." ).arg( axis ) );
2735 return floatToDegreeFormat( format, values, context, parent, node );
2742 value = QgsCoordinateUtils::dmsToDecimal( QgsExpressionUtils::getStringValue( values.at( 0 ), parent ), &ok );
2744 return ok ? QVariant( value ) : QVariant();
2750 return floatToDegreeFormat( format, values, context, parent, node );
2755 QDateTime d1 = QgsExpressionUtils::getDateTimeValue( values.at( 0 ), parent );
2756 QDateTime d2 = QgsExpressionUtils::getDateTimeValue( values.at( 1 ), parent );
2757 qint64 seconds = d2.secsTo( d1 );
2758 return QVariant::fromValue(
QgsInterval( seconds ) );
2763 if ( !values.at( 0 ).canConvert<QDate>() )
2766 QDate date = QgsExpressionUtils::getDateValue( values.at( 0 ), parent );
2767 if ( !date.isValid() )
2772 return date.dayOfWeek() % 7;
2777 QVariant value = values.at( 0 );
2778 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2781 return QVariant( inter.
days() );
2785 QDateTime d1 = QgsExpressionUtils::getDateTimeValue( value, parent );
2786 return QVariant( d1.date().day() );
2792 QVariant value = values.at( 0 );
2793 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2796 return QVariant( inter.
years() );
2800 QDateTime d1 = QgsExpressionUtils::getDateTimeValue( value, parent );
2801 return QVariant( d1.date().year() );
2807 QVariant value = values.at( 0 );
2808 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2811 return QVariant( inter.
months() );
2815 QDateTime d1 = QgsExpressionUtils::getDateTimeValue( value, parent );
2816 return QVariant( d1.date().month() );
2822 QVariant value = values.at( 0 );
2823 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2826 return QVariant( inter.
weeks() );
2830 QDateTime d1 = QgsExpressionUtils::getDateTimeValue( value, parent );
2831 return QVariant( d1.date().weekNumber() );
2837 QVariant value = values.at( 0 );
2838 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2841 return QVariant( inter.
hours() );
2845 QTime t1 = QgsExpressionUtils::getTimeValue( value, parent );
2846 return QVariant( t1.hour() );
2852 QVariant value = values.at( 0 );
2853 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2856 return QVariant( inter.
minutes() );
2860 QTime t1 = QgsExpressionUtils::getTimeValue( value, parent );
2861 return QVariant( t1.minute() );
2867 QVariant value = values.at( 0 );
2868 QgsInterval inter = QgsExpressionUtils::getInterval( value, parent,
false );
2871 return QVariant( inter.
seconds() );
2875 QTime t1 = QgsExpressionUtils::getTimeValue( value, parent );
2876 return QVariant( t1.second() );
2882 QDateTime dt = QgsExpressionUtils::getDateTimeValue( values.at( 0 ), parent );
2885 return QVariant( dt.toMSecsSinceEpoch() );
2895 long long millisecs_since_epoch = QgsExpressionUtils::getIntValue( values.at( 0 ), parent );
2897 return QVariant( QDateTime::fromMSecsSinceEpoch( millisecs_since_epoch ) );
2902 const QString filepath = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
2905 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"exif" ) ) );
2908 QString tag = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
2914 const QString filepath = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
2917 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"exif_geotag" ) ) );
2924#define ENSURE_GEOM_TYPE(f, g, geomtype) \
2925 if ( !(f).hasGeometry() ) \
2926 return QVariant(); \
2927 QgsGeometry g = (f).geometry(); \
2928 if ( (g).type() != (geomtype) ) \
2935 if ( g.isMultipart() )
2937 return g.asMultiPoint().at( 0 ).x();
2941 return g.asPoint().x();
2949 if ( g.isMultipart() )
2951 return g.asMultiPoint().at( 0 ).y();
2955 return g.asPoint().y();
2969 if ( g.isEmpty() || !abGeom->
is3D() )
2974 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( g.constGet() );
2980 if (
const QgsGeometryCollection *collection = qgsgeometry_cast< const QgsGeometryCollection * >( g.constGet() ) )
2982 if ( collection->numGeometries() > 0 )
2984 if (
const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( collection->geometryN( 0 ) ) )
2995 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3001 return QVariant( isValid );
3006 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3010 const QString methodString = QgsExpressionUtils::getStringValue( values.at( 1 ), parent ).trimmed();
3011#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<10
3016 if ( methodString.compare( QLatin1String(
"linework" ), Qt::CaseInsensitive ) == 0 )
3018 else if ( methodString.compare( QLatin1String(
"structure" ), Qt::CaseInsensitive ) == 0 )
3021 const bool keepCollapsed = values.value( 2 ).toBool();
3026 valid = geom.
makeValid( method, keepCollapsed );
3030 parent->
setEvalErrorString( QObject::tr(
"The make_valid parameters require a newer GEOS library version" ) );
3034 return QVariant::fromValue( valid );
3039 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3045 for (
int i = 0; i < multiGeom.size(); ++i )
3047 array += QVariant::fromValue( multiGeom.at( i ) );
3055 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3067 QVariant result( centroid.asPoint().
x() );
3073 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3085 QVariant result( centroid.asPoint().
y() );
3091 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3101 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3109 if ( collection->numGeometries() == 1 )
3111 if (
const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( collection->geometryN( 0 ) ) )
3122 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3132 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3140 if ( collection->numGeometries() == 1 )
3142 if (
const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( collection->geometryN( 0 ) ) )
3153 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3158 int idx = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
3185 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3202 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3219 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3224 bool ignoreClosing =
false;
3225 if ( values.length() > 1 )
3227 ignoreClosing = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
3237 bool skipLast =
false;
3238 if ( ignoreClosing && ring.count() > 2 && ring.first() == ring.last() )
3243 for (
int i = 0; i < ( skipLast ? ring.count() - 1 : ring.count() ); ++ i )
3255 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3266 for (
int i = 0; i < line->numPoints() - 1; ++i )
3270 << line->pointN( i )
3271 << line->pointN( i + 1 ) );
3282 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3292 if ( collection->numGeometries() == 1 )
3294 curvePolygon = qgsgeometry_cast< const QgsCurvePolygon * >( collection->geometryN( 0 ) );
3299 if ( !curvePolygon )
3303 qlonglong idx = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) - 1;
3309 QVariant result = curve ? QVariant::fromValue(
QgsGeometry( curve ) ) : QVariant();
3315 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3325 qlonglong idx = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) - 1;
3331 QVariant result = part ? QVariant::fromValue(
QgsGeometry( part ) ) : QVariant();
3337 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3346 return QVariant::fromValue(
QgsGeometry( boundary ) );
3351 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3360 return QVariant::fromValue( merged );
3365 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3369 const QgsGeometry geom2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
3374 if ( sharedPaths.
isNull() )
3377 return QVariant::fromValue( sharedPaths );
3383 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3388 double tolerance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3391 if ( simplified.
isNull() )
3399 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3404 double tolerance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3409 if ( simplified.
isNull() )
3417 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3422 int iterations = std::min( QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent ), 10 );
3423 double offset = std::clamp( QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent ), 0.0, 0.5 );
3424 double minLength = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
3425 double maxAngle = std::clamp( QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent ), 0.0, 180.0 );
3427 QgsGeometry smoothed = geom.
smooth(
static_cast<unsigned int>( iterations ), offset, minLength, maxAngle );
3436 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3441 const double wavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3442 const double amplitude = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3443 const bool strict = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
3454 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3459 const double minWavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3460 const double maxWavelength = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3461 const double minAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
3462 const double maxAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
3463 const long long seed = QgsExpressionUtils::getIntValue( values.at( 5 ), parent );
3466 minAmplitude, maxAmplitude, seed );
3475 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3480 const double wavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3481 const double amplitude = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3482 const bool strict = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
3493 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3498 const double minWavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3499 const double maxWavelength = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3500 const double minAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
3501 const double maxAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
3502 const long long seed = QgsExpressionUtils::getIntValue( values.at( 5 ), parent );
3505 minAmplitude, maxAmplitude, seed );
3514 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3519 const double wavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3520 const double amplitude = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3521 const bool strict = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
3532 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3537 const double minWavelength = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3538 const double maxWavelength = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3539 const double minAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
3540 const double maxAmplitude = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
3541 const long long seed = QgsExpressionUtils::getIntValue( values.at( 5 ), parent );
3544 minAmplitude, maxAmplitude, seed );
3553 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3558 const QVariantList pattern = QgsExpressionUtils::getListValue( values.at( 1 ), parent );
3559 QVector< double > dashPattern;
3560 dashPattern.reserve( pattern.size() );
3561 for (
const QVariant &value : std::as_const( pattern ) )
3564 double v = value.toDouble( &ok );
3571 parent->
setEvalErrorString( QStringLiteral(
"Dash pattern must be an array of numbers" ) );
3576 if ( dashPattern.size() % 2 != 0 )
3578 parent->
setEvalErrorString( QStringLiteral(
"Dash pattern must contain an even number of elements" ) );
3582 const QString startRuleString = QgsExpressionUtils::getStringValue( values.at( 2 ), parent ).trimmed();
3584 if ( startRuleString.compare( QLatin1String(
"no_rule" ), Qt::CaseInsensitive ) == 0 )
3586 else if ( startRuleString.compare( QLatin1String(
"full_dash" ), Qt::CaseInsensitive ) == 0 )
3588 else if ( startRuleString.compare( QLatin1String(
"half_dash" ), Qt::CaseInsensitive ) == 0 )
3590 else if ( startRuleString.compare( QLatin1String(
"full_gap" ), Qt::CaseInsensitive ) == 0 )
3592 else if ( startRuleString.compare( QLatin1String(
"half_gap" ), Qt::CaseInsensitive ) == 0 )
3596 parent->
setEvalErrorString( QStringLiteral(
"'%1' is not a valid dash pattern rule" ).arg( startRuleString ) );
3600 const QString endRuleString = QgsExpressionUtils::getStringValue( values.at( 3 ), parent ).trimmed();
3602 if ( endRuleString.compare( QLatin1String(
"no_rule" ), Qt::CaseInsensitive ) == 0 )
3604 else if ( endRuleString.compare( QLatin1String(
"full_dash" ), Qt::CaseInsensitive ) == 0 )
3606 else if ( endRuleString.compare( QLatin1String(
"half_dash" ), Qt::CaseInsensitive ) == 0 )
3608 else if ( endRuleString.compare( QLatin1String(
"full_gap" ), Qt::CaseInsensitive ) == 0 )
3610 else if ( endRuleString.compare( QLatin1String(
"half_gap" ), Qt::CaseInsensitive ) == 0 )
3614 parent->
setEvalErrorString( QStringLiteral(
"'%1' is not a valid dash pattern rule" ).arg( endRuleString ) );
3618 const QString adjustString = QgsExpressionUtils::getStringValue( values.at( 4 ), parent ).trimmed();
3620 if ( adjustString.compare( QLatin1String(
"both" ), Qt::CaseInsensitive ) == 0 )
3622 else if ( adjustString.compare( QLatin1String(
"dash" ), Qt::CaseInsensitive ) == 0 )
3624 else if ( adjustString.compare( QLatin1String(
"gap" ), Qt::CaseInsensitive ) == 0 )
3628 parent->
setEvalErrorString( QStringLiteral(
"'%1' is not a valid dash pattern size adjustment" ).arg( adjustString ) );
3632 const double patternOffset = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
3643 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3648 const long long count = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
3650 if ( densified.
isNull() )
3658 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3663 const double distance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3665 if ( densified.
isNull() )
3674 if ( values.size() == 1 && QgsExpressionUtils::isList( values.at( 0 ) ) )
3676 list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
3683 QVector< QgsGeometry > parts;
3684 parts.reserve( list.size() );
3685 for (
const QVariant &value : std::as_const( list ) )
3687 if ( value.userType() == QMetaType::type(
"QgsGeometry" ) )
3703 if ( values.count() < 2 || values.count() > 4 )
3705 parent->
setEvalErrorString( QObject::tr(
"Function make_point requires 2-4 arguments" ) );
3709 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
3710 double y = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3711 double z = values.count() >= 3 ? QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent ) : 0.0;
3712 double m = values.count() >= 4 ? QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent ) : 0.0;
3713 switch ( values.count() )
3727 double x = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
3728 double y = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3729 double m = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3735 if ( values.empty() )
3740 QVector<QgsPoint> points;
3741 points.reserve( values.count() );
3743 auto addPoint = [&points](
const QgsGeometry & geom )
3751 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3758 for (
const QVariant &value : values )
3760 if ( value.type() == QVariant::List )
3762 const QVariantList list = value.toList();
3763 for (
const QVariant &v : list )
3765 addPoint( QgsExpressionUtils::getGeometry( v, parent ) );
3770 addPoint( QgsExpressionUtils::getGeometry( value, parent ) );
3774 if ( points.count() < 2 )
3782 if ( values.count() < 1 )
3784 parent->
setEvalErrorString( QObject::tr(
"Function make_polygon requires an argument" ) );
3788 QgsGeometry outerRing = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3796 std::unique_ptr< QgsPolygon > polygon = std::make_unique< QgsPolygon >();
3798 const QgsCurve *exteriorRing = qgsgeometry_cast< QgsCurve * >( outerRing.
constGet() );
3805 exteriorRing = qgsgeometry_cast< QgsCurve * >( collection->
geometryN( 0 ) );
3810 if ( !exteriorRing )
3813 polygon->setExteriorRing( exteriorRing->
segmentize() );
3816 for (
int i = 1; i < values.count(); ++i )
3818 QgsGeometry ringGeom = QgsExpressionUtils::getGeometry( values.at( i ), parent );
3825 const QgsCurve *ring = qgsgeometry_cast< QgsCurve * >( ringGeom.
constGet() );
3832 ring = qgsgeometry_cast< QgsCurve * >( collection->
geometryN( 0 ) );
3840 polygon->addInteriorRing( ring->
segmentize() );
3843 return QVariant::fromValue(
QgsGeometry( std::move( polygon ) ) );
3848 std::unique_ptr<QgsTriangle> tr(
new QgsTriangle() );
3849 std::unique_ptr<QgsLineString> lineString(
new QgsLineString() );
3850 lineString->clear();
3852 for (
const QVariant &value : values )
3854 QgsGeometry geom = QgsExpressionUtils::getGeometry( value, parent );
3861 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3868 point = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
3876 lineString->addVertex( *point );
3879 tr->setExteriorRing( lineString.release() );
3881 return QVariant::fromValue(
QgsGeometry( tr.release() ) );
3886 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3893 double radius = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3894 int segment = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
3901 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3908 point = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
3916 return QVariant::fromValue(
QgsGeometry( circ.toPolygon(
static_cast<unsigned int>(
segment ) ) ) );
3921 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3928 double majorAxis = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
3929 double minorAxis = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
3930 double azimuth = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
3931 int segment = QgsExpressionUtils::getNativeIntValue( values.at( 4 ), parent );
3937 const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( geom.
constGet() );
3944 point = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
3951 QgsEllipse elp( *point, majorAxis, minorAxis, azimuth );
3952 return QVariant::fromValue(
QgsGeometry( elp.toPolygon(
static_cast<unsigned int>(
segment ) ) ) );
3958 QgsGeometry pt1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
3965 QgsGeometry pt2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
3972 unsigned int nbEdges =
static_cast<unsigned int>( QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) );
3975 parent->
setEvalErrorString( QObject::tr(
"Number of edges/sides must be greater than 2" ) );
3982 parent->
setEvalErrorString( QObject::tr(
"Option can be 0 (inscribed) or 1 (circumscribed)" ) );
3986 const QgsPoint *center = qgsgeometry_cast< const QgsPoint * >( pt1.
constGet() );
3993 center = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
4000 const QgsPoint *corner = qgsgeometry_cast< const QgsPoint * >( pt2.
constGet() );
4007 corner = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
4022 QgsGeometry pt1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4028 QgsGeometry pt2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4034 const QgsPoint *point1 = qgsgeometry_cast< const QgsPoint *>( pt1.
constGet() );
4035 const QgsPoint *point2 = qgsgeometry_cast< const QgsPoint *>( pt2.
constGet() );
4043 QgsGeometry pt1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4049 QgsGeometry pt2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4055 QgsGeometry pt3 = QgsExpressionUtils::getGeometry( values.at( 2 ), parent );
4064 parent->
setEvalErrorString( QObject::tr(
"Option can be 0 (distance) or 1 (projected)" ) );
4067 const QgsPoint *point1 = qgsgeometry_cast< const QgsPoint *>( pt1.
constGet() );
4068 const QgsPoint *point2 = qgsgeometry_cast< const QgsPoint *>( pt2.
constGet() );
4069 const QgsPoint *point3 = qgsgeometry_cast< const QgsPoint *>( pt3.
constGet() );
4088 return QVariant::fromValue( geom.
vertexAt( idx ) );
4096 const int idx = QgsExpressionUtils::getNativeIntValue( values.at( 0 ), parent );
4098 const QVariant v = pointAt( geom, idx, parent );
4101 return QVariant( v.value<
QgsPoint>().
x() );
4107 if ( values.at( 1 ).isNull() && !values.at( 0 ).isNull() )
4109 return fcnOldXat( values, f, parent, node );
4111 else if ( values.at( 0 ).isNull() && !values.at( 1 ).isNull() )
4113 return fcnOldXat( QVariantList() << values[1], f, parent, node );
4116 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4122 const int vertexNumber = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
4124 const QVariant v = pointAt( geom, vertexNumber, parent );
4126 return QVariant( v.value<
QgsPoint>().
x() );
4136 const int idx = QgsExpressionUtils::getNativeIntValue( values.at( 0 ), parent );
4138 const QVariant v = pointAt( geom, idx, parent );
4141 return QVariant( v.value<
QgsPoint>().
y() );
4147 if ( values.at( 1 ).isNull() && !values.at( 0 ).isNull() )
4149 return fcnOldYat( values, f, parent, node );
4151 else if ( values.at( 0 ).isNull() && !values.at( 1 ).isNull() )
4153 return fcnOldYat( QVariantList() << values[1], f, parent, node );
4156 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4162 const int vertexNumber = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
4164 const QVariant v = pointAt( geom, vertexNumber, parent );
4166 return QVariant( v.value<
QgsPoint>().
y() );
4173 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4179 const int vertexNumber = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
4181 const QVariant v = pointAt( geom, vertexNumber, parent );
4183 return QVariant( v.value<
QgsPoint>().
z() );
4190 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4196 const int vertexNumber = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
4198 const QVariant v = pointAt( geom, vertexNumber, parent );
4200 return QVariant( v.value<
QgsPoint>().
m() );
4219 return QVariant::fromValue( geom );
4227 QString wkt = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
4229 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4235 const QByteArray wkb = QgsExpressionUtils::getBinaryValue( values.at( 0 ), parent );
4241 return !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4246 QString gml = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
4253 ogcContext.
layer = mapLayerPtr.data();
4254 ogcContext.
transformContext = context->
variable( QStringLiteral(
"_project_transform_context" ) ).value<QgsCoordinateTransformContext>();
4258 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4271 return QVariant( area );
4281 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4286 return QVariant( geom.
area() );
4298 return QVariant( len );
4315 return QVariant( len );
4319 return f.
geometry().
isNull() ? QVariant( 0 ) : QVariant( f.geometry().constGet()->perimeter() );
4325 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4331 return QVariant( geom.
length() );
4336 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4337 return QVariant( geom.
isNull() ? 0 : geom.constGet()->nCoordinates() );
4342 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4351 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4360 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4375 curvePolygon = qgsgeometry_cast< const QgsCurvePolygon *>( collection->
geometryN( i ) );
4376 if ( !curvePolygon )
4379 return QVariant( curvePolygon->
isEmpty() ? 0 : curvePolygon->numInteriorRings() );
4388 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4395 return QVariant( curvePolygon->
ringCount() );
4397 bool foundPoly =
false;
4405 curvePolygon = qgsgeometry_cast< QgsCurvePolygon *>( collection->
geometryN( i ) );
4406 if ( !curvePolygon )
4417 return QVariant( ringCount );
4422 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4424 QVariant result = !geomBounds.
isNull() ? QVariant::fromValue( geomBounds ) : QVariant();
4430 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4436 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4442 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4451 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4457 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4463 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4469 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4475 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4483 double max = std::numeric_limits< double >::lowest();
4487 double z = ( *it ).z();
4493 if ( max == std::numeric_limits< double >::lowest() )
4494 return QVariant( QVariant::Double );
4496 return QVariant( max );
4501 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4509 double min = std::numeric_limits< double >::max();
4513 double z = ( *it ).z();
4519 if ( min == std::numeric_limits< double >::max() )
4520 return QVariant( QVariant::Double );
4522 return QVariant( min );
4527 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4535 double min = std::numeric_limits< double >::max();
4539 double m = ( *it ).m();
4545 if ( min == std::numeric_limits< double >::max() )
4546 return QVariant( QVariant::Double );
4548 return QVariant( min );
4553 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4561 double max = std::numeric_limits< double >::lowest();
4565 double m = ( *it ).m();
4571 if ( max == std::numeric_limits< double >::lowest() )
4572 return QVariant( QVariant::Double );
4574 return QVariant( max );
4579 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4580 const QgsCurve *curve = qgsgeometry_cast< const QgsCurve * >( geom.
constGet() );
4583 parent->
setEvalErrorString( QObject::tr(
"Function `sinuosity` requires a line geometry." ) );
4592 const QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4596 parent->
setEvalErrorString( QObject::tr(
"Function `straight_distance_2d` requires a line geometry or a multi line geometry with a single part." ) );
4605 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4610 parent->
setEvalErrorString( QObject::tr(
"Function `roundness` requires a polygon geometry or a multi polygon geometry with a single part." ) );
4621 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4625 std::unique_ptr< QgsAbstractGeometry > flipped( geom.
constGet()->
clone() );
4627 return QVariant::fromValue(
QgsGeometry( std::move( flipped ) ) );
4632 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4636 const QgsCurve *curve = qgsgeometry_cast< const QgsCurve * >( fGeom.
constGet() );
4643 curve = qgsgeometry_cast< const QgsCurve * >( collection->
geometryN( 0 ) );
4651 return QVariant::fromValue( curve->
isClosed() );
4656 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4669 std::unique_ptr< QgsLineString > closedLine( line->
clone() );
4670 closedLine->close();
4672 result = QVariant::fromValue(
QgsGeometry( std::move( closedLine ) ) );
4682 if (
const QgsLineString *line = qgsgeometry_cast<const QgsLineString * >( collection->
geometryN( i ) ) )
4684 std::unique_ptr< QgsLineString > closedLine( line->
clone() );
4685 closedLine->close();
4687 closed->addGeometry( closedLine.release() );
4690 result = QVariant::fromValue(
QgsGeometry( std::move( closed ) ) );
4698 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4702 return QVariant::fromValue( fGeom.
isEmpty() );
4708 return QVariant::fromValue(
true );
4710 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4711 return QVariant::fromValue( fGeom.
isNull() || fGeom.
isEmpty() );
4716 if ( values.length() < 2 || values.length() > 3 )
4719 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4720 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4727 if ( values.length() == 2 )
4730 QString result = engine->relate( sGeom.
constGet() );
4731 return QVariant::fromValue( result );
4736 QString pattern = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
4737 bool result = engine->relatePattern( sGeom.
constGet(), pattern );
4738 return QVariant::fromValue( result );
4744 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4745 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4750 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4751 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4752 return fGeom.
disjoint( sGeom ) ? TVL_True : TVL_False;
4756 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4757 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4758 return fGeom.
intersects( sGeom ) ? TVL_True : TVL_False;
4762 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4763 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4764 return fGeom.
touches( sGeom ) ? TVL_True : TVL_False;
4768 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4769 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4770 return fGeom.
crosses( sGeom ) ? TVL_True : TVL_False;
4774 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4775 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4776 return fGeom.
contains( sGeom ) ? TVL_True : TVL_False;
4780 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4781 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4782 return fGeom.
overlaps( sGeom ) ? TVL_True : TVL_False;
4786 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4787 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
4788 return fGeom.
within( sGeom ) ? TVL_True : TVL_False;
4793 const QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4794 const double dist = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4795 const int seg = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
4796 const QString endCapString = QgsExpressionUtils::getStringValue( values.at( 3 ), parent ).trimmed();
4797 const QString joinString = QgsExpressionUtils::getStringValue( values.at( 4 ), parent ).trimmed();
4798 const double miterLimit = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
4801 if ( endCapString.compare( QLatin1String(
"flat" ), Qt::CaseInsensitive ) == 0 )
4803 else if ( endCapString.compare( QLatin1String(
"square" ), Qt::CaseInsensitive ) == 0 )
4807 if ( joinString.compare( QLatin1String(
"miter" ), Qt::CaseInsensitive ) == 0 )
4809 else if ( joinString.compare( QLatin1String(
"bevel" ), Qt::CaseInsensitive ) == 0 )
4813 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4819 const QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4821 return !reoriented.
isNull() ? QVariant::fromValue( reoriented ) : QVariant();
4826 const QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4828 return !reoriented.
isNull() ? QVariant::fromValue( reoriented ) : QVariant();
4833 const QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4835 return !reoriented.
isNull() ? QVariant::fromValue( reoriented ) : QVariant();
4840 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4841 const QgsPoint *pt = qgsgeometry_cast<const QgsPoint *>( fGeom.
constGet() );
4848 pt = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
4855 parent->
setEvalErrorString( QObject::tr(
"Function `wedge_buffer` requires a point value for the center." ) );
4859 double azimuth = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4860 double width = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
4861 double outerRadius = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
4862 double innerRadius = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
4865 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4871 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4874 parent->
setEvalErrorString( QObject::tr(
"Function `tapered_buffer` requires a line geometry." ) );
4878 double startWidth = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4879 double endWidth = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
4880 int segments =
static_cast< int >( QgsExpressionUtils::getIntValue( values.at( 3 ), parent ) );
4883 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4889 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4892 parent->
setEvalErrorString( QObject::tr(
"Function `buffer_by_m` requires a line geometry." ) );
4896 int segments =
static_cast< int >( QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) );
4899 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4905 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4906 double dist = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4907 int segments = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
4908 const int joinInt = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
4909 if ( joinInt < 1 || joinInt > 3 )
4913 double miterLimit = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
4916 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4922 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4923 double dist = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4924 int segments = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
4926 const int joinInt = QgsExpressionUtils::getIntValue( values.at( 3 ), parent );
4927 if ( joinInt < 1 || joinInt > 3 )
4931 double miterLimit = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
4934 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4940 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4941 double distStart = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4942 double distEnd = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
4945 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
4951 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4952 double dx = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4953 double dy = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
4955 return QVariant::fromValue( fGeom );
4960 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
4961 const double rotation = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
4962 const QgsGeometry center = values.at( 2 ).
isValid() ? QgsExpressionUtils::getGeometry( values.at( 2 ), parent )
4964 const bool perPart = values.value( 3 ).toBool();
4971 std::unique_ptr< QgsGeometryCollection > collection( qgsgeometry_cast< QgsGeometryCollection * >( fGeom.
constGet()->
clone() ) );
4974 const QgsPointXY partCenter = ( *it )->boundingBox().center();
4975 QTransform t = QTransform::fromTranslate( partCenter.
x(), partCenter.
y() );
4976 t.rotate( -rotation );
4977 t.translate( -partCenter.
x(), -partCenter.
y() );
4978 ( *it )->transform( t );
4980 return QVariant::fromValue(
QgsGeometry( std::move( collection ) ) );
4992 parent->
setEvalErrorString( QObject::tr(
"Function 'rotate' requires a point value for the center" ) );
5000 fGeom.
rotate( rotation, pt );
5001 return QVariant::fromValue( fGeom );
5007 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5008 const double xScale = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5009 const double yScale = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5010 const QgsGeometry center = values.at( 3 ).isValid() ? QgsExpressionUtils::getGeometry( values.at( 3 ), parent )
5021 parent->
setEvalErrorString( QObject::tr(
"Function 'scale' requires a point value for the center" ) );
5029 QTransform t = QTransform::fromTranslate( pt.
x(), pt.
y() );
5030 t.scale( xScale, yScale );
5031 t.translate( -pt.
x(), -pt.
y() );
5033 return QVariant::fromValue( fGeom );
5038 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5044 const double deltaX = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5045 const double deltaY = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5047 const double rotationZ = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
5049 const double scaleX = QgsExpressionUtils::getDoubleValue( values.at( 4 ), parent );
5050 const double scaleY = QgsExpressionUtils::getDoubleValue( values.at( 5 ), parent );
5052 const double deltaZ = QgsExpressionUtils::getDoubleValue( values.at( 6 ), parent );
5053 const double deltaM = QgsExpressionUtils::getDoubleValue( values.at( 7 ), parent );
5054 const double scaleZ = QgsExpressionUtils::getDoubleValue( values.at( 8 ), parent );
5055 const double scaleM = QgsExpressionUtils::getDoubleValue( values.at( 9 ), parent );
5066 QTransform transform;
5067 transform.translate( deltaX, deltaY );
5068 transform.rotate( rotationZ );
5069 transform.scale( scaleX, scaleY );
5070 fGeom.
transform( transform, deltaZ, scaleZ, deltaM, scaleM );
5072 return QVariant::fromValue( fGeom );
5078 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5080 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5085 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5087 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5093 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5094 double tolerance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5096 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5102 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5104 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5108#if GEOS_VERSION_MAJOR>3 || ( GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR>=11 )
5113 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5114 const double targetPercent = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5115 const bool allowHoles = values.value( 2 ).toBool();
5117 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5130 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5132 if ( values.length() == 2 )
5133 segments = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5141 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5147 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5149 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5155 const QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5161 double area,
angle, width, height;
5174 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5175 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5177 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5183 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5190 const QgsCurve *curve = qgsgeometry_cast<const QgsCurve * >( fGeom.
constGet() );
5195 result = reversed ? QVariant::fromValue(
QgsGeometry( reversed ) ) : QVariant();
5203 if (
const QgsCurve *curve = qgsgeometry_cast<const QgsCurve * >( collection->
geometryN( i ) ) )
5205 reversed->addGeometry( curve->
reversed() );
5212 result = reversed ? QVariant::fromValue(
QgsGeometry( std::move( reversed ) ) ) : QVariant();
5219 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5230 curvePolygon = qgsgeometry_cast< const QgsCurvePolygon * >( collection->
geometryN( 0 ) );
5239 QVariant result = exterior ? QVariant::fromValue(
QgsGeometry( exterior ) ) : QVariant();
5245 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5246 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5247 return QVariant( fGeom.
distance( sGeom ) );
5252 QgsGeometry g1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5253 QgsGeometry g2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5256 if ( values.length() == 3 && values.at( 2 ).isValid() )
5258 double densify = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5259 densify = std::clamp( densify, 0.0, 1.0 );
5267 return res > -1 ? QVariant( res ) : QVariant();
5272 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5273 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5275 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5280 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5281 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5283 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5288 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5289 QgsGeometry sGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5291 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5297 if ( values.length() < 1 || values.length() > 2 )
5300 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5302 if ( values.length() == 2 )
5303 prec = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5304 QString wkt = fGeom.
asWkt( prec );
5305 return QVariant( wkt );
5310 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5311 return fGeom.
isNull() ? QVariant() : QVariant( fGeom.asWkb() );
5316 if ( values.length() != 2 )
5318 parent->
setEvalErrorString( QObject::tr(
"Function `azimuth` requires exactly two parameters. %n given.",
nullptr, values.length() ) );
5322 QgsGeometry fGeom1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5323 QgsGeometry fGeom2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5325 const QgsPoint *pt1 = qgsgeometry_cast<const QgsPoint *>( fGeom1.
constGet() );
5332 pt1 = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
5337 const QgsPoint *pt2 = qgsgeometry_cast<const QgsPoint *>( fGeom2.
constGet() );
5344 pt2 = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
5351 parent->
setEvalErrorString( QObject::tr(
"Function `azimuth` requires two points as arguments." ) );
5358 if ( pt1->
y() < pt2->
y() )
5360 else if ( pt1->
y() > pt2->
y() )
5368 if ( pt1->
x() < pt2->
x() )
5370 else if ( pt1->
x() > pt2->
x() )
5371 return M_PI + ( M_PI_2 );
5376 if ( pt1->
x() < pt2->
x() )
5378 if ( pt1->
y() < pt2->
y() )
5380 return std::atan( std::fabs( pt1->
x() - pt2->
x() ) / std::fabs( pt1->
y() - pt2->
y() ) );
5384 return std::atan( std::fabs( pt1->
y() - pt2->
y() ) / std::fabs( pt1->
x() - pt2->
x() ) )
5391 if ( pt1->
y() > pt2->
y() )
5393 return std::atan( std::fabs( pt1->
x() - pt2->
x() ) / std::fabs( pt1->
y() - pt2->
y() ) )
5398 return std::atan( std::fabs( pt1->
y() - pt2->
y() ) / std::fabs( pt1->
x() - pt2->
x() ) )
5399 + ( M_PI + ( M_PI_2 ) );
5406 const QgsGeometry geom1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5407 const QgsGeometry geom2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5408 QString sourceCrs = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
5409 QString ellipsoid = QgsExpressionUtils::getStringValue( values.at( 3 ), parent );
5413 parent->
setEvalErrorString( QObject::tr(
"Function `bearing` requires two valid point geometries." ) );
5421 parent->
setEvalErrorString( QObject::tr(
"Function `bearing` requires point geometries or multi point geometries with a single part." ) );
5430 if ( sourceCrs.isEmpty() )
5432 sourceCrs = context->
variable( QStringLiteral(
"layer_crs" ) ).toString();
5435 if ( ellipsoid.isEmpty() )
5437 ellipsoid = context->
variable( QStringLiteral(
"project_ellipsoid" ) ).toString();
5444 parent->
setEvalErrorString( QObject::tr(
"Function `bearing` requires a valid source CRS." ) );
5452 parent->
setEvalErrorString( QObject::tr(
"Function `bearing` requires a valid ellipsoid acronym or ellipsoid authority ID." ) );
5458 const double bearing = da.
bearing( point1, point2 );
5459 if ( std::isfinite( bearing ) )
5461 return std::fmod( bearing + 2 * M_PI, 2 * M_PI );
5474 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5478 parent->
setEvalErrorString( QStringLiteral(
"'project' requires a point geometry" ) );
5482 double distance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5483 double azimuth = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5484 double inclination = QgsExpressionUtils::getDoubleValue( values.at( 3 ), parent );
5487 QgsPoint newPoint = p->
project( distance, 180.0 * azimuth / M_PI, 180.0 * inclination / M_PI );
5494 QgsGeometry fGeom1 = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5495 QgsGeometry fGeom2 = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5497 const QgsPoint *pt1 = qgsgeometry_cast<const QgsPoint *>( fGeom1.
constGet() );
5504 pt1 = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
5508 const QgsPoint *pt2 = qgsgeometry_cast<const QgsPoint *>( fGeom2.
constGet() );
5515 pt2 = qgsgeometry_cast< const QgsPoint * >( collection->
geometryN( 0 ) );
5523 parent->
setEvalErrorString( QStringLiteral(
"Function 'inclination' requires two points as arguments." ) );
5533 if ( values.length() != 3 )
5536 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5537 double x = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5538 double y = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5542 QVariant result = geom.
constGet() ? QVariant::fromValue( geom ) : QVariant();
5548 if ( values.length() < 2 )
5551 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5554 return values.at( 0 );
5556 QString expString = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
5557 QVariant cachedExpression;
5562 if ( cachedExpression.isValid() )
5569 bool asc = values.value( 2 ).toBool();
5587 Q_ASSERT( collection );
5591 QgsExpressionSorter sorter( orderBy );
5593 QList<QgsFeature> partFeatures;
5594 partFeatures.reserve( collection->
partCount() );
5595 for (
int i = 0; i < collection->
partCount(); ++i )
5601 sorter.sortFeatures( partFeatures, unconstedContext );
5605 Q_ASSERT( orderedGeom );
5610 for (
const QgsFeature &feature : std::as_const( partFeatures ) )
5615 QVariant result = QVariant::fromValue(
QgsGeometry( orderedGeom ) );
5618 delete unconstedContext;
5625 QgsGeometry fromGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5626 QgsGeometry toGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5630 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5636 QgsGeometry fromGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5637 QgsGeometry toGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5641 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5647 QgsGeometry lineGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5648 double distance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5652 QVariant result = !geom.
isNull() ? QVariant::fromValue( geom ) : QVariant();
5658 QgsGeometry lineGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5661 parent->
setEvalErrorString( QObject::tr(
"line_substring requires a curve geometry input" ) );
5667 curve = qgsgeometry_cast< const QgsCurve * >( lineGeom.
constGet() );
5674 curve = qgsgeometry_cast< const QgsCurve * >( collection->
geometryN( 0 ) );
5681 double startDistance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5682 double endDistance = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5684 std::unique_ptr< QgsCurve > substring( curve->
curveSubstring( startDistance, endDistance ) );
5686 return !result.isNull() ? QVariant::fromValue( result ) : QVariant();
5691 QgsGeometry lineGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5692 double distance = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5699 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5700 int vertex = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5705 vertex = count + vertex;
5713 QgsGeometry geom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5714 int vertex = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5719 vertex = count + vertex;
5727 QgsGeometry lineGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
5728 QgsGeometry pointGeom = QgsExpressionUtils::getGeometry( values.at( 1 ), parent );
5732 return distance >= 0 ? distance : QVariant();
5737 if ( values.length() == 2 && values.at( 1 ).toInt() != 0 )
5739 double number = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
5740 return qgsRound( number, QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent ) );
5743 if ( values.length() >= 1 )
5745 double number = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
5746 return QVariant( qlonglong( std::round( number ) ) );
5761 const double value = QgsExpressionUtils::getDoubleValue( values.at( 0 ), parent );
5762 const int places = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5763 const QString language = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
5770 const bool omitGroupSeparator = values.value( 3 ).toBool();
5771 const bool trimTrailingZeros = values.value( 4 ).toBool();
5773 QLocale locale = !language.isEmpty() ? QLocale( language ) : QLocale();
5774 if ( !omitGroupSeparator )
5775 locale.setNumberOptions( locale.numberOptions() & ~QLocale::NumberOption::OmitGroupSeparator );
5777 locale.setNumberOptions( locale.numberOptions() | QLocale::NumberOption::OmitGroupSeparator );
5779 QString res = locale.toString( value,
'f', places );
5781 if ( trimTrailingZeros )
5783#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
5784 const QChar decimal = locale.decimalPoint();
5785 const QChar zeroDigit = locale.zeroDigit();
5787 const QChar decimal = locale.decimalPoint().at( 0 );
5788 const QChar zeroDigit = locale.zeroDigit().at( 0 );
5791 if ( res.contains( decimal ) )
5793 int trimPoint = res.length() - 1;
5795 while ( res.at( trimPoint ) == zeroDigit )
5798 if ( res.at( trimPoint ) == decimal )
5801 res.truncate( trimPoint + 1 );
5810 const QDateTime datetime = QgsExpressionUtils::getDateTimeValue( values.at( 0 ), parent );
5811 const QString format = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
5812 const QString language = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
5814 QLocale locale = !language.isEmpty() ? QLocale( language ) : QLocale();
5815 return locale.toString( datetime, format );
5821 int avg = ( color.red() + color.green() + color.blue() ) / 3;
5822 int alpha = color.alpha();
5824 color.setRgb( avg, avg, avg, alpha );
5833 double ratio = QgsExpressionUtils::getDoubleValue( values.at( 2 ), parent );
5838 else if ( ratio < 0 )
5843 int red =
static_cast<int>( color1.red() * ( 1 - ratio ) + color2.red() * ratio );
5844 int green =
static_cast<int>( color1.green() * ( 1 - ratio ) + color2.green() * ratio );
5845 int blue =
static_cast<int>( color1.blue() * ( 1 - ratio ) + color2.blue() * ratio );
5846 int alpha =
static_cast<int>( color1.alpha() * ( 1 - ratio ) + color2.alpha() * ratio );
5848 QColor newColor( red, green, blue, alpha );
5855 int red = QgsExpressionUtils::getNativeIntValue( values.at( 0 ), parent );
5856 int green = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5857 int blue = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
5858 QColor color = QColor( red, green, blue );
5859 if ( ! color.isValid() )
5861 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3' to color" ).arg( red ).arg( green ).arg( blue ) );
5862 color = QColor( 0, 0, 0 );
5865 return QStringLiteral(
"%1,%2,%3" ).arg( color.red() ).arg( color.green() ).arg( color.blue() );
5870 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 0 ), parent );
5871 QVariant value = node->
eval( parent, context );
5875 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
5877 value = node->
eval( parent, context );
5885 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 0 ), parent );
5887 QVariant value = node->
eval( parent, context );
5889 if ( value.toBool() )
5891 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
5893 value = node->
eval( parent, context );
5898 node = QgsExpressionUtils::getNode( values.at( 2 ), parent );
5900 value = node->
eval( parent, context );
5908 int red = QgsExpressionUtils::getNativeIntValue( values.at( 0 ), parent );
5909 int green = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
5910 int blue = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
5911 int alpha = QgsExpressionUtils::getNativeIntValue( values.at( 3 ), parent );
5912 QColor color = QColor( red, green, blue, alpha );
5913 if ( ! color.isValid() )
5915 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3:%4' to color" ).arg( red ).arg( green ).arg( blue ).arg( alpha ) );
5916 color = QColor( 0, 0, 0 );
5925 if ( values.at( 0 ).userType() == QMetaType::type(
"QgsGradientColorRamp" ) )
5927 expRamp = QgsExpressionUtils::getRamp( values.at( 0 ), parent );
5932 QString rampName = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
5936 parent->
setEvalErrorString( QObject::tr(
"\"%1\" is not a valid color ramp" ).arg( rampName ) );
5941 double value = QgsExpressionUtils::getDoubleValue( values.at( 1 ), parent );
5942 QColor color = ramp->
color( value );
5949 double hue = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 360.0;
5951 double saturation = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
5953 double lightness = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
5955 QColor color = QColor::fromHslF( hue, saturation, lightness );
5957 if ( ! color.isValid() )
5959 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3' to color" ).arg( hue ).arg( saturation ).arg( lightness ) );
5960 color = QColor( 0, 0, 0 );
5963 return QStringLiteral(
"%1,%2,%3" ).arg( color.red() ).arg( color.green() ).arg( color.blue() );
5969 double hue = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 360.0;
5971 double saturation = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
5973 double lightness = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
5975 double alpha = QgsExpressionUtils::getIntValue( values.at( 3 ), parent ) / 255.0;
5977 QColor color = QColor::fromHslF( hue, saturation, lightness, alpha );
5978 if ( ! color.isValid() )
5980 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3:%4' to color" ).arg( hue ).arg( saturation ).arg( lightness ).arg( alpha ) );
5981 color = QColor( 0, 0, 0 );
5989 double hue = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 360.0;
5991 double saturation = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
5993 double value = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
5995 QColor color = QColor::fromHsvF( hue, saturation, value );
5997 if ( ! color.isValid() )
5999 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3' to color" ).arg( hue ).arg( saturation ).arg( value ) );
6000 color = QColor( 0, 0, 0 );
6003 return QStringLiteral(
"%1,%2,%3" ).arg( color.red() ).arg( color.green() ).arg( color.blue() );
6009 double hue = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 360.0;
6011 double saturation = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
6013 double value = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
6015 double alpha = QgsExpressionUtils::getIntValue( values.at( 3 ), parent ) / 255.0;
6017 QColor color = QColor::fromHsvF( hue, saturation, value, alpha );
6018 if ( ! color.isValid() )
6020 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3:%4' to color" ).arg( hue ).arg( saturation ).arg( value ).arg( alpha ) );
6021 color = QColor( 0, 0, 0 );
6029 double cyan = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 100.0;
6031 double magenta = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
6033 double yellow = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
6035 double black = QgsExpressionUtils::getIntValue( values.at( 3 ), parent ) / 100.0;
6037 QColor color = QColor::fromCmykF( cyan, magenta, yellow, black );
6039 if ( ! color.isValid() )
6041 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3:%4' to color" ).arg( cyan ).arg( magenta ).arg( yellow ).arg( black ) );
6042 color = QColor( 0, 0, 0 );
6045 return QStringLiteral(
"%1,%2,%3" ).arg( color.red() ).arg( color.green() ).arg( color.blue() );
6051 double cyan = QgsExpressionUtils::getIntValue( values.at( 0 ), parent ) / 100.0;
6053 double magenta = QgsExpressionUtils::getIntValue( values.at( 1 ), parent ) / 100.0;
6055 double yellow = QgsExpressionUtils::getIntValue( values.at( 2 ), parent ) / 100.0;
6057 double black = QgsExpressionUtils::getIntValue( values.at( 3 ), parent ) / 100.0;
6059 double alpha = QgsExpressionUtils::getIntValue( values.at( 4 ), parent ) / 255.0;
6061 QColor color = QColor::fromCmykF( cyan, magenta, yellow, black, alpha );
6062 if ( ! color.isValid() )
6064 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1:%2:%3:%4:%5' to color" ).arg( cyan ).arg( magenta ).arg( yellow ).arg( black ).arg( alpha ) );
6065 color = QColor( 0, 0, 0 );
6073 if ( ! color.isValid() )
6075 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to color" ).arg( values.at( 0 ).toString() ) );
6079 QString part = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6080 if ( part.compare( QLatin1String(
"red" ), Qt::CaseInsensitive ) == 0 )
6082 else if ( part.compare( QLatin1String(
"green" ), Qt::CaseInsensitive ) == 0 )
6083 return color.green();
6084 else if ( part.compare( QLatin1String(
"blue" ), Qt::CaseInsensitive ) == 0 )
6085 return color.blue();
6086 else if ( part.compare( QLatin1String(
"alpha" ), Qt::CaseInsensitive ) == 0 )
6087 return color.alpha();
6088 else if ( part.compare( QLatin1String(
"hue" ), Qt::CaseInsensitive ) == 0 )
6089 return static_cast< double >( color.hsvHueF() * 360 );
6090 else if ( part.compare( QLatin1String(
"saturation" ), Qt::CaseInsensitive ) == 0 )
6091 return static_cast< double >( color.hsvSaturationF() * 100 );
6092 else if ( part.compare( QLatin1String(
"value" ), Qt::CaseInsensitive ) == 0 )
6093 return static_cast< double >( color.valueF() * 100 );
6094 else if ( part.compare( QLatin1String(
"hsl_hue" ), Qt::CaseInsensitive ) == 0 )
6095 return static_cast< double >( color.hslHueF() * 360 );
6096 else if ( part.compare( QLatin1String(
"hsl_saturation" ), Qt::CaseInsensitive ) == 0 )
6097 return static_cast< double >( color.hslSaturationF() * 100 );
6098 else if ( part.compare( QLatin1String(
"lightness" ), Qt::CaseInsensitive ) == 0 )
6099 return static_cast< double >( color.lightnessF() * 100 );
6100 else if ( part.compare( QLatin1String(
"cyan" ), Qt::CaseInsensitive ) == 0 )
6101 return static_cast< double >( color.cyanF() * 100 );
6102 else if ( part.compare( QLatin1String(
"magenta" ), Qt::CaseInsensitive ) == 0 )
6103 return static_cast< double >( color.magentaF() * 100 );
6104 else if ( part.compare( QLatin1String(
"yellow" ), Qt::CaseInsensitive ) == 0 )
6105 return static_cast< double >( color.yellowF() * 100 );
6106 else if ( part.compare( QLatin1String(
"black" ), Qt::CaseInsensitive ) == 0 )
6107 return static_cast< double >( color.blackF() * 100 );
6109 parent->
setEvalErrorString( QObject::tr(
"Unknown color component '%1'" ).arg( part ) );
6115 const QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
6118 parent->
setEvalErrorString( QObject::tr(
"A minimum of two colors is required to create a ramp" ) );
6122 QList< QColor > colors;
6124 for ( QVariantMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it )
6127 if ( !colors.last().isValid() )
6129 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to color" ).arg( it.value().toString() ) );
6133 double step = it.key().toDouble();
6134 if ( it == map.constBegin() )
6139 else if ( it == map.constEnd() )
6149 bool discrete = values.at( 1 ).toBool();
6151 if ( colors.empty() )
6154 return QVariant::fromValue(
QgsGradientColorRamp( colors.first(), colors.last(), discrete, stops ) );
6160 if ( ! color.isValid() )
6162 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to color" ).arg( values.at( 0 ).toString() ) );
6166 QString part = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6167 int value = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
6168 if ( part.compare( QLatin1String(
"red" ), Qt::CaseInsensitive ) == 0 )
6169 color.setRed( value );
6170 else if ( part.compare( QLatin1String(
"green" ), Qt::CaseInsensitive ) == 0 )
6171 color.setGreen( value );
6172 else if ( part.compare( QLatin1String(
"blue" ), Qt::CaseInsensitive ) == 0 )
6173 color.setBlue( value );
6174 else if ( part.compare( QLatin1String(
"alpha" ), Qt::CaseInsensitive ) == 0 )
6175 color.setAlpha( value );
6176 else if ( part.compare( QLatin1String(
"hue" ), Qt::CaseInsensitive ) == 0 )
6177 color.setHsv( value, color.hsvSaturation(), color.value(), color.alpha() );
6178 else if ( part.compare( QLatin1String(
"saturation" ), Qt::CaseInsensitive ) == 0 )
6179 color.setHsvF( color.hsvHueF(), value / 100.0, color.valueF(), color.alphaF() );
6180 else if ( part.compare( QLatin1String(
"value" ), Qt::CaseInsensitive ) == 0 )
6181 color.setHsvF( color.hsvHueF(), color.hsvSaturationF(), value / 100.0, color.alphaF() );
6182 else if ( part.compare( QLatin1String(
"hsl_hue" ), Qt::CaseInsensitive ) == 0 )
6183 color.setHsl( value, color.hslSaturation(), color.lightness(), color.alpha() );
6184 else if ( part.compare( QLatin1String(
"hsl_saturation" ), Qt::CaseInsensitive ) == 0 )
6185 color.setHslF( color.hslHueF(), value / 100.0, color.lightnessF(), color.alphaF() );
6186 else if ( part.compare( QLatin1String(
"lightness" ), Qt::CaseInsensitive ) == 0 )
6187 color.setHslF( color.hslHueF(), color.hslSaturationF(), value / 100.0, color.alphaF() );
6188 else if ( part.compare( QLatin1String(
"cyan" ), Qt::CaseInsensitive ) == 0 )
6189 color.setCmykF( value / 100.0, color.magentaF(), color.yellowF(), color.blackF(), color.alphaF() );
6190 else if ( part.compare( QLatin1String(
"magenta" ), Qt::CaseInsensitive ) == 0 )
6191 color.setCmykF( color.cyanF(), value / 100.0, color.yellowF(), color.blackF(), color.alphaF() );
6192 else if ( part.compare( QLatin1String(
"yellow" ), Qt::CaseInsensitive ) == 0 )
6193 color.setCmykF( color.cyanF(), color.magentaF(), value / 100.0, color.blackF(), color.alphaF() );
6194 else if ( part.compare( QLatin1String(
"black" ), Qt::CaseInsensitive ) == 0 )
6195 color.setCmykF( color.cyanF(), color.magentaF(), color.yellowF(), value / 100.0, color.alphaF() );
6198 parent->
setEvalErrorString( QObject::tr(
"Unknown color component '%1'" ).arg( part ) );
6207 if ( ! color.isValid() )
6209 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to color" ).arg( values.at( 0 ).toString() ) );
6213 color = color.darker( QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent ) );
6221 if ( ! color.isValid() )
6223 parent->
setEvalErrorString( QObject::tr(
"Cannot convert '%1' to color" ).arg( values.at( 0 ).toString() ) );
6227 color = color.lighter( QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent ) );
6234 QgsFeature feat = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
6237 return QVariant::fromValue( geom );
6243 const QgsFeature feat = QgsExpressionUtils::getFeature( values.at( 0 ), parent );
6251 QgsGeometry fGeom = QgsExpressionUtils::getGeometry( values.at( 0 ), parent );
6252 QString sAuthId = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6253 QString dAuthId = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
6257 return QVariant::fromValue( fGeom );
6260 return QVariant::fromValue( fGeom );
6269 return QVariant::fromValue( fGeom );
6282 bool foundLayer =
false;
6283 std::unique_ptr<QgsVectorLayerFeatureSource> featureSource = QgsExpressionUtils::getFeatureSource( values.at( 0 ), context, parent, foundLayer );
6286 if ( !featureSource || !foundLayer )
6291 const QgsFeatureId fid = QgsExpressionUtils::getIntValue( values.at( 1 ), parent );
6304 result = QVariant::fromValue( fet );
6312 bool foundLayer =
false;
6313 std::unique_ptr<QgsVectorLayerFeatureSource> featureSource = QgsExpressionUtils::getFeatureSource( values.at( 0 ), context, parent, foundLayer );
6316 if ( !featureSource || !foundLayer )
6321 QString cacheValueKey;
6322 if ( values.at( 1 ).type() == QVariant::Map )
6324 QVariantMap attributeMap = QgsExpressionUtils::getMapValue( values.at( 1 ), parent );
6326 QMap <QString, QVariant>::const_iterator i = attributeMap.constBegin();
6327 QString filterString;
6328 for ( ; i != attributeMap.constEnd(); ++i )
6330 if ( !filterString.isEmpty() )
6332 filterString.append(
" AND " );
6336 cacheValueKey = QStringLiteral(
"getfeature:%1:%2" ).arg( featureSource->id(), filterString );
6345 QString attribute = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6346 int attributeId = featureSource->fields().lookupField( attribute );
6347 if ( attributeId == -1 )
6352 const QVariant &attVal = values.at( 2 );
6354 cacheValueKey = QStringLiteral(
"getfeature:%1:%2:%3" ).arg( featureSource->id(), QString::number( attributeId ), attVal.toString() );
6377 res = QVariant::fromValue( fet );
6392 if ( !values.isEmpty() )
6395 if ( col && ( values.size() == 1 || !values.at( 1 ).isValid() ) )
6396 fieldName = col->
name();
6397 else if ( values.size() == 2 )
6398 fieldName = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6401 QVariant value = values.at( 0 );
6406 if ( fieldIndex == -1 )
6408 parent->
setEvalErrorString( QCoreApplication::translate(
"expression",
"%1: Field not found %2" ).arg( QStringLiteral(
"represent_value" ), fieldName ) );
6414 QgsVectorLayer *layer = QgsExpressionUtils::getVectorLayer( context->
variable( QStringLiteral(
"layer" ) ), context, parent );
6417 const QString cacheValueKey = QStringLiteral(
"repvalfcnval:%1:%2:%3" ).arg( layer ? layer->id() : QStringLiteral(
"[None]" ), fieldName, value.toString() );
6426 const QString cacheKey = QStringLiteral(
"repvalfcn:%1:%2" ).arg( layer ? layer->id() : QStringLiteral(
"[None]" ), fieldName );
6437 result =
formatter->representValue( layer, fieldIndex, setup.
config(), cache, value );
6444 parent->
setEvalErrorString( QCoreApplication::translate(
"expression",
"%1: function cannot be evaluated without a context." ).arg( QStringLiteral(
"represent_value" ), fieldName ) );
6452 const QVariant data = values.at( 0 );
6453 const QMimeDatabase db;
6454 return db.mimeTypeForData( data.toByteArray() ).name();
6459 const QString layerProperty = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
6461 bool foundLayer =
false;
6462 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( values.at( 0 ), context, parent, [layerProperty](
QgsMapLayer * layer )-> QVariant
6468 if ( QString::compare( layerProperty, QStringLiteral(
"name" ), Qt::CaseInsensitive ) == 0 )
6469 return layer->name();
6470 else if ( QString::compare( layerProperty, QStringLiteral(
"id" ), Qt::CaseInsensitive ) == 0 )
6472 else if ( QString::compare( layerProperty, QStringLiteral(
"title" ), Qt::CaseInsensitive ) == 0 )
6473 return !layer->metadata().title().isEmpty() ? layer->metadata().title() : layer->title();
6474 else if ( QString::compare( layerProperty, QStringLiteral(
"abstract" ), Qt::CaseInsensitive ) == 0 )
6475 return !layer->metadata().abstract().isEmpty() ? layer->metadata().abstract() : layer->abstract();
6476 else if ( QString::compare( layerProperty, QStringLiteral(
"keywords" ), Qt::CaseInsensitive ) == 0 )
6478 QStringList keywords;
6479 const QgsAbstractMetadataBase::KeywordMap keywordMap = layer->metadata().keywords();
6480 for ( auto it = keywordMap.constBegin(); it != keywordMap.constEnd(); ++it )
6482 keywords.append( it.value() );
6484 if ( !keywords.isEmpty() )
6486 return layer->keywordList();
6488 else if ( QString::compare( layerProperty, QStringLiteral(
"data_url" ), Qt::CaseInsensitive ) == 0 )
6490 else if ( QString::compare( layerProperty, QStringLiteral(
"attribution" ), Qt::CaseInsensitive ) == 0 )
6494 else if ( QString::compare( layerProperty, QStringLiteral(
"attribution_url" ), Qt::CaseInsensitive ) == 0 )
6496 else if ( QString::compare( layerProperty, QStringLiteral(
"source" ), Qt::CaseInsensitive ) == 0 )
6498 else if ( QString::compare( layerProperty, QStringLiteral(
"min_scale" ), Qt::CaseInsensitive ) == 0 )
6500 else if ( QString::compare( layerProperty, QStringLiteral(
"max_scale" ), Qt::CaseInsensitive ) == 0 )
6502 else if ( QString::compare( layerProperty, QStringLiteral(
"is_editable" ), Qt::CaseInsensitive ) == 0 )
6504 else if ( QString::compare( layerProperty, QStringLiteral(
"crs" ), Qt::CaseInsensitive ) == 0 )
6506 else if ( QString::compare( layerProperty, QStringLiteral(
"crs_definition" ), Qt::CaseInsensitive ) == 0 )
6508 else if ( QString::compare( layerProperty, QStringLiteral(
"crs_description" ), Qt::CaseInsensitive ) == 0 )
6510 else if ( QString::compare( layerProperty, QStringLiteral(
"crs_ellipsoid" ), Qt::CaseInsensitive ) == 0 )
6512 else if ( QString::compare( layerProperty, QStringLiteral(
"extent" ), Qt::CaseInsensitive ) == 0 )
6515 QVariant result = QVariant::fromValue( extentGeom );
6518 else if ( QString::compare( layerProperty, QStringLiteral(
"distance_units" ), Qt::CaseInsensitive ) == 0 )
6520 else if ( QString::compare( layerProperty, QStringLiteral(
"path" ), Qt::CaseInsensitive ) == 0 )
6523 return decodedUri.value( QStringLiteral(
"path" ) );
6525 else if ( QString::compare( layerProperty, QStringLiteral(
"type" ), Qt::CaseInsensitive ) == 0 )
6527 switch ( layer->
type() )
6530 return QCoreApplication::translate(
"expressions",
"Vector" );
6532 return QCoreApplication::translate(
"expressions",
"Raster" );
6534 return QCoreApplication::translate(
"expressions",
"Mesh" );
6536 return QCoreApplication::translate(
"expressions",
"Vector Tile" );
6538 return QCoreApplication::translate(
"expressions",
"Plugin" );
6540 return QCoreApplication::translate(
"expressions",
"Annotation" );
6542 return QCoreApplication::translate(
"expressions",
"Point Cloud" );
6544 return QCoreApplication::translate(
"expressions",
"Group" );
6546 return QCoreApplication::translate(
"expressions",
"Tiled Scene" );
6552 QgsVectorLayer *vLayer = qobject_cast< QgsVectorLayer * >( layer );
6555 if ( QString::compare( layerProperty, QStringLiteral(
"storage_type" ), Qt::CaseInsensitive ) == 0 )
6557 else if ( QString::compare( layerProperty, QStringLiteral(
"geometry_type" ), Qt::CaseInsensitive ) == 0 )
6559 else if ( QString::compare( layerProperty, QStringLiteral(
"feature_count" ), Qt::CaseInsensitive ) == 0 )
6575 const QString uriPart = values.at( 1 ).toString();
6577 bool foundLayer =
false;
6579 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( values.at( 0 ), context, parent, [parent, uriPart](
QgsMapLayer * layer )-> QVariant
6581 if ( !layer->dataProvider() )
6583 parent->setEvalErrorString( QObject::tr(
"Layer %1 has invalid data provider" ).arg( layer->name() ) );
6589 if ( !uriPart.isNull() )
6591 return decodedUri.value( uriPart );
6601 parent->
setEvalErrorString( QObject::tr(
"Function `decode_uri` requires a valid layer." ) );
6612 const int band = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
6613 const QString layerProperty = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
6615 bool foundLayer =
false;
6616 const QVariant res = QgsExpressionUtils::runMapLayerFunctionThreadSafe( values.at( 0 ), context, parent, [parent, band, layerProperty](
QgsMapLayer * layer )-> QVariant
6618 QgsRasterLayer *rl = qobject_cast< QgsRasterLayer * >( layer );
6622 if ( band < 1 || band > rl->bandCount() )
6624 parent->setEvalErrorString( QObject::tr(
"Invalid band number %1 for layer" ).arg( band ) );
6630 if ( QString::compare( layerProperty, QStringLiteral(
"avg" ), Qt::CaseInsensitive ) == 0 )
6632 else if ( QString::compare( layerProperty, QStringLiteral(
"stdev" ), Qt::CaseInsensitive ) == 0 )
6634 else if ( QString::compare( layerProperty, QStringLiteral(
"min" ), Qt::CaseInsensitive ) == 0 )
6636 else if ( QString::compare( layerProperty, QStringLiteral(
"max" ), Qt::CaseInsensitive ) == 0 )
6638 else if ( QString::compare( layerProperty, QStringLiteral(
"range" ), Qt::CaseInsensitive ) == 0 )
6640 else if ( QString::compare( layerProperty, QStringLiteral(
"sum" ), Qt::CaseInsensitive ) == 0 )
6644 parent->
setEvalErrorString( QObject::tr(
"Invalid raster statistic: '%1'" ).arg( layerProperty ) );
6672 parent->
setEvalErrorString( QObject::tr(
"Function `raster_statistic` requires a valid raster layer." ) );
6689 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6690 bool ascending = values.value( 1 ).toBool();
6691 std::sort( list.begin(), list.end(), [ascending]( QVariant a, QVariant b ) ->
bool { return ( !ascending ? qgsVariantLessThan( b, a ) : qgsVariantLessThan( a, b ) ); } );
6697 return QgsExpressionUtils::getListValue( values.at( 0 ), parent ).length();
6702 return QVariant( QgsExpressionUtils::getListValue( values.at( 0 ), parent ).contains( values.at( 1 ) ) );
6707 return QVariant( QgsExpressionUtils::getListValue( values.at( 0 ), parent ).count( values.at( 1 ) ) );
6712 QVariantList listA = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6713 QVariantList listB = QgsExpressionUtils::getListValue( values.at( 1 ), parent );
6715 for (
const auto &item : listB )
6717 if ( listA.contains( item ) )
6721 return QVariant( match == listB.count() );
6726 return QgsExpressionUtils::getListValue( values.at( 0 ), parent ).indexOf( values.at( 1 ) );
6731 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6732 const int pos = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
6733 if ( pos < list.length() && pos >= 0 )
return list.at( pos );
6734 else if ( pos < 0 && ( list.length() + pos ) >= 0 )
6735 return list.at( list.length() + pos );
6741 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6742 return list.value( 0 );
6747 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6748 return list.value( list.size() - 1 );
6753 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6754 return list.isEmpty() ? QVariant() : *std::min_element( list.constBegin(), list.constEnd(), []( QVariant a, QVariant b ) -> bool { return (
qgsVariantLessThan( a, b ) ); } );
6759 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6760 return list.isEmpty() ? QVariant() : *std::max_element( list.constBegin(), list.constEnd(), []( QVariant a, QVariant b ) -> bool { return (
qgsVariantLessThan( a, b ) ); } );
6765 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6768 for (
const QVariant &item : list )
6770 switch ( item.userType() )
6772 case QMetaType::Int:
6773 case QMetaType::UInt:
6774 case QMetaType::LongLong:
6775 case QMetaType::ULongLong:
6776 case QMetaType::Float:
6777 case QMetaType::Double:
6778 total += item.toDouble();
6783 return i == 0 ? QVariant() : total / i;
6788 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6789 QVariantList numbers;
6790 for (
const auto &item : list )
6792 switch ( item.userType() )
6794 case QMetaType::Int:
6795 case QMetaType::UInt:
6796 case QMetaType::LongLong:
6797 case QMetaType::ULongLong:
6798 case QMetaType::Float:
6799 case QMetaType::Double:
6800 numbers.append( item );
6804 std::sort( numbers.begin(), numbers.end(), []( QVariant a, QVariant b ) ->
bool { return ( qgsVariantLessThan( a, b ) ); } );
6805 const int count = numbers.count();
6810 else if ( count % 2 )
6812 return numbers.at( count / 2 );
6816 return ( numbers.at( count / 2 - 1 ).toDouble() + numbers.at( count / 2 ).toDouble() ) / 2;
6822 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6825 for (
const QVariant &item : list )
6827 switch ( item.userType() )
6829 case QMetaType::Int:
6830 case QMetaType::UInt:
6831 case QMetaType::LongLong:
6832 case QMetaType::ULongLong:
6833 case QMetaType::Float:
6834 case QMetaType::Double:
6835 total += item.toDouble();
6840 return i == 0 ? QVariant() : total;
6843static QVariant convertToSameType(
const QVariant &value, QVariant::Type type )
6845 QVariant result = value;
6846 result.convert(
static_cast<int>( type ) );
6852 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6853 QHash< QVariant, int > hash;
6854 for (
const auto &item : list )
6858 const QList< int > occurrences = hash.values();
6859 if ( occurrences.empty() )
6860 return QVariantList();
6862 const int maxValue = *std::max_element( occurrences.constBegin(), occurrences.constEnd() );
6864 const QString option = values.at( 1 ).toString();
6865 if ( option.compare( QLatin1String(
"all" ), Qt::CaseInsensitive ) == 0 )
6867 return convertToSameType( hash.keys( maxValue ), values.at( 0 ).type() );
6869 else if ( option.compare( QLatin1String(
"any" ), Qt::CaseInsensitive ) == 0 )
6871 if ( hash.isEmpty() )
6874 return QVariant( hash.key( maxValue ) );
6876 else if ( option.compare( QLatin1String(
"median" ), Qt::CaseInsensitive ) == 0 )
6878 return fcnArrayMedian( QVariantList() << convertToSameType( hash.keys( maxValue ), values.at( 0 ).type() ), context, parent, node );
6880 else if ( option.compare( QLatin1String(
"real_majority" ), Qt::CaseInsensitive ) == 0 )
6882 if ( maxValue * 2 <= list.size() )
6885 return QVariant( hash.key( maxValue ) );
6896 const QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6897 QHash< QVariant, int > hash;
6898 for (
const auto &item : list )
6902 const QList< int > occurrences = hash.values();
6903 if ( occurrences.empty() )
6904 return QVariantList();
6906 const int minValue = *std::min_element( occurrences.constBegin(), occurrences.constEnd() );
6908 const QString option = values.at( 1 ).toString();
6909 if ( option.compare( QLatin1String(
"all" ), Qt::CaseInsensitive ) == 0 )
6911 return convertToSameType( hash.keys( minValue ), values.at( 0 ).type() );
6913 else if ( option.compare( QLatin1String(
"any" ), Qt::CaseInsensitive ) == 0 )
6915 if ( hash.isEmpty() )
6918 return QVariant( hash.key( minValue ) );
6920 else if ( option.compare( QLatin1String(
"median" ), Qt::CaseInsensitive ) == 0 )
6922 return fcnArrayMedian( QVariantList() << convertToSameType( hash.keys( minValue ), values.at( 0 ).type() ), context, parent, node );
6924 else if ( option.compare( QLatin1String(
"real_minority" ), Qt::CaseInsensitive ) == 0 )
6926 if ( hash.isEmpty() )
6930 const int maxValue = *std::max_element( occurrences.constBegin(), occurrences.constEnd() );
6931 if ( maxValue * 2 > list.size() )
6932 hash.remove( hash.key( maxValue ) );
6934 return convertToSameType( hash.keys(), values.at( 0 ).type() );
6945 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6946 list.append( values.at( 1 ) );
6947 return convertToSameType( list, values.at( 0 ).type() );
6952 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6953 list.prepend( values.at( 1 ) );
6954 return convertToSameType( list, values.at( 0 ).type() );
6959 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6960 list.insert( QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent ), values.at( 2 ) );
6961 return convertToSameType( list, values.at( 0 ).type() );
6966 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6967 int position = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
6969 position = position + list.length();
6970 if ( position >= 0 && position < list.length() )
6971 list.removeAt( position );
6972 return convertToSameType( list, values.at( 0 ).type() );
6980 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
6982 const QVariant toRemove = values.at( 1 );
6985 list.erase( std::remove_if( list.begin(), list.end(), [](
const QVariant & element )
6987 return QgsVariantUtils::isNull( element );
6992 list.removeAll( toRemove );
6994 return convertToSameType( list, values.at( 0 ).type() );
6999 if ( values.count() == 2 && values.at( 1 ).type() == QVariant::Map )
7001 QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 1 ), parent );
7003 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7004 for ( QVariantMap::const_iterator it = map.constBegin(); it != map.constEnd(); ++it )
7006 int index = list.indexOf( it.key() );
7007 while ( index >= 0 )
7009 list.replace( index, it.value() );
7010 index = list.indexOf( it.key() );
7014 return convertToSameType( list, values.at( 0 ).type() );
7016 else if ( values.count() == 3 )
7018 QVariantList before;
7020 bool isSingleReplacement =
false;
7022 if ( !QgsExpressionUtils::isList( values.at( 1 ) ) && values.at( 2 ).type() != QVariant::StringList )
7024 before = QVariantList() << values.at( 1 );
7028 before = QgsExpressionUtils::getListValue( values.at( 1 ), parent );
7031 if ( !QgsExpressionUtils::isList( values.at( 2 ) ) )
7033 after = QVariantList() << values.at( 2 );
7034 isSingleReplacement =
true;
7038 after = QgsExpressionUtils::getListValue( values.at( 2 ), parent );
7041 if ( !isSingleReplacement && before.length() != after.length() )
7043 parent->
setEvalErrorString( QObject::tr(
"Invalid pair of array, length not identical" ) );
7047 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7048 for (
int i = 0; i < before.length(); i++ )
7050 int index = list.indexOf( before.at( i ) );
7051 while ( index >= 0 )
7053 list.replace( index, after.at( isSingleReplacement ? 0 : i ) );
7054 index = list.indexOf( before.at( i ) );
7058 return convertToSameType( list, values.at( 0 ).type() );
7062 parent->
setEvalErrorString( QObject::tr(
"Function array_replace requires 2 or 3 arguments" ) );
7069 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7070 QVariantList list_new;
7072 for (
const QVariant &cur :
QgsExpressionUtils::getListValue( values.at( 1 ), parent ) )
7074 while ( list.removeOne( cur ) )
7076 list_new.append( cur );
7080 list_new.append( list );
7082 return convertToSameType( list_new, values.at( 0 ).type() );
7088 for (
const QVariant &cur : values )
7090 list += QgsExpressionUtils::getListValue( cur, parent );
7092 return convertToSameType( list, values.at( 0 ).type() );
7097 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7098 int start_pos = QgsExpressionUtils::getNativeIntValue( values.at( 1 ), parent );
7099 const int end_pos = QgsExpressionUtils::getNativeIntValue( values.at( 2 ), parent );
7100 int slice_length = 0;
7102 if ( start_pos < 0 )
7104 start_pos = list.length() + start_pos;
7108 slice_length = end_pos - start_pos + 1;
7112 slice_length = list.length() + end_pos - start_pos + 1;
7115 if ( slice_length < 0 )
7119 list = list.mid( start_pos, slice_length );
7125 QVariantList list = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7126 std::reverse( list.begin(), list.end() );
7132 const QVariantList array1 = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7133 const QVariantList array2 = QgsExpressionUtils::getListValue( values.at( 1 ), parent );
7134 for (
const QVariant &cur : array2 )
7136 if ( array1.contains( cur ) )
7137 return QVariant(
true );
7139 return QVariant(
false );
7144 QVariantList array = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7146 QVariantList distinct;
7148 for ( QVariantList::const_iterator it = array.constBegin(); it != array.constEnd(); ++it )
7150 if ( !distinct.contains( *it ) )
7152 distinct += ( *it );
7161 QVariantList array = QgsExpressionUtils::getListValue( values.at( 0 ), parent );
7162 QString delimiter = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
7163 QString empty = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
7167 for ( QVariantList::const_iterator it = array.constBegin(); it != array.constEnd(); ++it )
7169 str += ( !( *it ).toString().isEmpty() ) ? ( *it ).toString() : empty;
7170 if ( it != ( array.constEnd() - 1 ) )
7176 return QVariant(
str );
7181 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
7182 QString delimiter = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
7183 QString empty = QgsExpressionUtils::getStringValue( values.at( 2 ), parent );
7185 QStringList list =
str.split( delimiter );
7188 for ( QStringList::const_iterator it = list.constBegin(); it != list.constEnd(); ++it )
7190 array += ( !( *it ).isEmpty() ) ? *it : empty;
7198 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
7199 QJsonDocument document = QJsonDocument::fromJson(
str.toUtf8() );
7200 if ( document.isNull() )
7203 return document.toVariant();
7209 QJsonDocument document = QJsonDocument::fromVariant( values.at( 0 ) );
7210 return QString( document.toJson( QJsonDocument::Compact ) );
7215 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
7216 if (
str.isEmpty() )
7217 return QVariantMap();
7225 QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
7232 for (
int i = 0; i + 1 < values.length(); i += 2 )
7234 result.insert( QgsExpressionUtils::getStringValue( values.at( i ), parent ), values.at( i + 1 ) );
7241 const QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
7242 const QString prefix = QgsExpressionUtils::getStringValue( values.at( 1 ), parent );
7243 QVariantMap resultMap;
7245 for (
auto it = map.cbegin(); it != map.cend(); it++ )
7247 resultMap.insert( QString( it.key() ).prepend( prefix ), it.value() );
7255 return QgsExpressionUtils::getMapValue( values.at( 0 ), parent ).value( values.at( 1 ).toString() );
7260 return QgsExpressionUtils::getMapValue( values.at( 0 ), parent ).contains( values.at( 1 ).toString() );
7265 QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
7266 map.remove( values.at( 1 ).toString() );
7272 QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
7273 map.insert( values.at( 1 ).toString(), values.at( 2 ) );
7280 for (
const QVariant &cur : values )
7282 const QVariantMap curMap = QgsExpressionUtils::getMapValue( cur, parent );
7283 for ( QVariantMap::const_iterator it = curMap.constBegin(); it != curMap.constEnd(); ++it )
7284 result.insert( it.key(), it.value() );
7291 return QStringList( QgsExpressionUtils::getMapValue( values.at( 0 ), parent ).keys() );
7296 return QgsExpressionUtils::getMapValue( values.at( 0 ), parent ).values();
7301 const QString envVarName = values.at( 0 ).toString();
7302 if ( !QProcessEnvironment::systemEnvironment().contains( envVarName ) )
7305 return QProcessEnvironment::systemEnvironment().value( envVarName );
7310 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7313 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"base_file_name" ) ) );
7316 return QFileInfo( file ).completeBaseName();
7321 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7324 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"file_suffix" ) ) );
7327 return QFileInfo( file ).completeSuffix();
7332 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7335 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"file_exists" ) ) );
7338 return QFileInfo::exists( file );
7343 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7346 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"file_name" ) ) );
7349 return QFileInfo( file ).fileName();
7354 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7357 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"is_file" ) ) );
7360 return QFileInfo( file ).isFile();
7365 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7368 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"is_directory" ) ) );
7371 return QFileInfo( file ).isDir();
7376 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7379 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"file_path" ) ) );
7382 return QDir::toNativeSeparators( QFileInfo( file ).path() );
7387 const QString file = QgsExpressionUtils::getFilePathValue( values.at( 0 ), context, parent );
7390 parent->
setEvalErrorString( QObject::tr(
"Function `%1` requires a value which represents a possible file path" ).arg( QLatin1String(
"file_size" ) ) );
7393 return QFileInfo( file ).size();
7396static QVariant fcnHash(
const QString &
str,
const QCryptographicHash::Algorithm
algorithm )
7398 return QString( QCryptographicHash::hash(
str.toUtf8(),
algorithm ).toHex() );
7404 QString
str = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
7405 QString method = QgsExpressionUtils::getStringValue( values.at( 1 ), parent ).toLower();
7407 if ( method == QLatin1String(
"md4" ) )
7409 hash = fcnHash(
str, QCryptographicHash::Md4 );
7411 else if ( method == QLatin1String(
"md5" ) )
7413 hash = fcnHash(
str, QCryptographicHash::Md5 );
7415 else if ( method == QLatin1String(
"sha1" ) )
7417 hash = fcnHash(
str, QCryptographicHash::Sha1 );
7419 else if ( method == QLatin1String(
"sha224" ) )
7421 hash = fcnHash(
str, QCryptographicHash::Sha224 );
7423 else if ( method == QLatin1String(
"sha256" ) )
7425 hash = fcnHash(
str, QCryptographicHash::Sha256 );
7427 else if ( method == QLatin1String(
"sha384" ) )
7429 hash = fcnHash(
str, QCryptographicHash::Sha384 );
7431 else if ( method == QLatin1String(
"sha512" ) )
7433 hash = fcnHash(
str, QCryptographicHash::Sha512 );
7435 else if ( method == QLatin1String(
"sha3_224" ) )
7437 hash = fcnHash(
str, QCryptographicHash::Sha3_224 );
7439 else if ( method == QLatin1String(
"sha3_256" ) )
7441 hash = fcnHash(
str, QCryptographicHash::Sha3_256 );
7443 else if ( method == QLatin1String(
"sha3_384" ) )
7445 hash = fcnHash(
str, QCryptographicHash::Sha3_384 );
7447 else if ( method == QLatin1String(
"sha3_512" ) )
7449 hash = fcnHash(
str, QCryptographicHash::Sha3_512 );
7451 else if ( method == QLatin1String(
"keccak_224" ) )
7453 hash = fcnHash(
str, QCryptographicHash::Keccak_224 );
7455 else if ( method == QLatin1String(
"keccak_256" ) )
7457 hash = fcnHash(
str, QCryptographicHash::Keccak_256 );
7459 else if ( method == QLatin1String(
"keccak_384" ) )
7461 hash = fcnHash(
str, QCryptographicHash::Keccak_384 );
7463 else if ( method == QLatin1String(
"keccak_512" ) )
7465 hash = fcnHash(
str, QCryptographicHash::Keccak_512 );
7469 parent->
setEvalErrorString( QObject::tr(
"Hash method %1 is not available on this system." ).arg(
str ) );
7476 return fcnHash( QgsExpressionUtils::getStringValue( values.at( 0 ), parent ), QCryptographicHash::Md5 );
7481 return fcnHash( QgsExpressionUtils::getStringValue( values.at( 0 ), parent ), QCryptographicHash::Sha256 );
7486 const QByteArray input = values.at( 0 ).toByteArray();
7487 return QVariant( QString( input.toBase64() ) );
7492 const QVariantMap map = QgsExpressionUtils::getMapValue( values.at( 0 ), parent );
7494 for (
auto it = map.cbegin(); it != map.cend(); it++ )
7496 query.addQueryItem( it.key(), it.value().toString() );
7498 return query.toString( QUrl::ComponentFormattingOption::FullyEncoded );
7503 const QString value = QgsExpressionUtils::getStringValue( values.at( 0 ), parent );
7504 const QByteArray base64 = value.toLocal8Bit();
7505 const QByteArray decoded = QByteArray::fromBase64( base64 );
7506 return QVariant( decoded );
7511static QVariant executeGeomOverlay(
const QVariantList &values,
const QgsExpressionContext *context,
QgsExpression *parent,
const RelationFunction &relationFunction,
bool invert =
false,
double bboxGrow = 0,
bool isNearestFunc =
false,
bool isIntersectsFunc =
false )
7514 const QVariant sourceLayerRef = context->
variable( QStringLiteral(
"layer" ) );
7517 QgsVectorLayer *sourceLayer = QgsExpressionUtils::getVectorLayer( sourceLayerRef, context, parent );
7526 QgsExpressionNode *node = QgsExpressionUtils::getNode( values.at( 0 ), parent );
7529 const bool layerCanBeCached = node->
isStatic( parent, context );
7530 QVariant targetLayerValue = node->
eval( parent, context );
7534 node = QgsExpressionUtils::getNode( values.at( 1 ), parent );
7536 QString subExpString = node->dump();
7538 bool testOnly = ( subExpString ==
"NULL" );
7541 QgsVectorLayer *targetLayer = QgsExpressionUtils::getVectorLayer( targetLayerValue, context, parent );
7545 parent->
setEvalErrorString( QObject::tr(
"Layer '%1' could not be loaded." ).arg( targetLayerValue.toString() ) );
7550 node = QgsExpressionUtils::getNode( values.at( 2 ), parent );
7552 QString filterString = node->dump();
7553 if ( filterString !=
"NULL" )
7555 request.setFilterExpression( filterString );
7559 node = QgsExpressionUtils::getNode( values.at( 3 ), parent );
7561 QVariant limitValue = node->eval( parent, context );
7563 qlonglong limit = QgsExpressionUtils::getIntValue( limitValue, parent );
7566 double max_distance = 0;
7567 if ( isNearestFunc )
7569 node = QgsExpressionUtils::getNode( values.at( 4 ), parent );
7571 QVariant distanceValue = node->eval( parent, context );
7573 max_distance = QgsExpressionUtils::getDoubleValue( distanceValue, parent );
7577 node = QgsExpressionUtils::getNode( values.at( isNearestFunc ? 5 : 4 ), parent );
7579 QVariant cacheValue = node->eval( parent, context );
7581 bool cacheEnabled = cacheValue.toBool();
7587 double minOverlap { -1 };
7588 double minInscribedCircleRadius { -1 };
7589 bool returnDetails =
false;
7590 bool sortByMeasure =
false;
7591 bool sortAscending =
false;
7592 bool requireMeasures =
false;
7593 bool overlapOrRadiusFilter =
false;
7594 if ( isIntersectsFunc )
7597 node = QgsExpressionUtils::getNode( values.at( 5 ), parent );
7599 const QVariant minOverlapValue = node->eval( parent, context );
7601 minOverlap = QgsExpressionUtils::getDoubleValue( minOverlapValue, parent );
7602 node = QgsExpressionUtils::getNode( values.at( 6 ), parent );
7604 const QVariant minInscribedCircleRadiusValue = node->eval( parent, context );
7606 minInscribedCircleRadius = QgsExpressionUtils::getDoubleValue( minInscribedCircleRadiusValue, parent );
7607 node = QgsExpressionUtils::getNode( values.at( 7 ), parent );
7609 returnDetails = !testOnly && node->eval( parent, context ).toBool();
7610 node = QgsExpressionUtils::getNode( values.at( 8 ), parent );
7612 const QString sorting { node->eval( parent, context ).toString().toLower() };
7613 sortByMeasure = !testOnly && ( sorting.startsWith(
"asc" ) || sorting.startsWith(
"des" ) );
7614 sortAscending = sorting.startsWith(
"asc" );
7615 requireMeasures = sortByMeasure || returnDetails;
7616 overlapOrRadiusFilter = minInscribedCircleRadius != -1 || minOverlap != -1;
7623 if ( sourceLayer && targetLayer->crs() != sourceLayer->crs() )
7626 request.setDestinationCrs( sourceLayer->crs(), TransformContext );
7629 bool sameLayers = ( sourceLayer && sourceLayer->id() == targetLayer->id() );
7632 if ( bboxGrow != 0 )
7634 intDomain.
grow( bboxGrow );
7637 const QString cacheBase { QStringLiteral(
"%1:%2:%3" ).arg( targetLayer->id(), subExpString, filterString ) };
7643 QList<QgsFeature> features;
7644 if ( isNearestFunc || ( layerCanBeCached && cacheEnabled ) )
7648 const QString cacheLayer { QStringLiteral(
"ovrlaylyr:%1" ).arg( cacheBase ) };
7649 const QString cacheIndex { QStringLiteral(
"ovrlayidx:%1" ).arg( cacheBase ) };
7653 cachedTarget = targetLayer->
materialize( request );
7654 if ( layerCanBeCached )
7655 context->
setCachedValue( cacheLayer, QVariant::fromValue( cachedTarget ) );
7665 if ( layerCanBeCached )
7666 context->
setCachedValue( cacheIndex, QVariant::fromValue( spatialIndex ) );
7673 QList<QgsFeatureId> fidsList;
7674 if ( isNearestFunc )
7676 fidsList = spatialIndex.
nearestNeighbor( geometry, sameLayers ? limit + 1 : limit, max_distance );
7680 fidsList = spatialIndex.
intersects( intDomain );
7683 QListIterator<QgsFeatureId> i( fidsList );
7684 while ( i.hasNext() )
7687 if ( sameLayers && feat.
id() == fId2 )
7689 features.append( cachedTarget->
getFeature( fId2 ) );
7697 request.setFilterRect( intDomain );
7702 if ( sameLayers && feat.
id() == feat2.
id() )
7704 features.append( feat2 );
7712 const QString expCacheKey { QStringLiteral(
"exp:%1" ).arg( cacheBase ) };
7713 const QString ctxCacheKey { QStringLiteral(
"ctx:%1" ).arg( cacheBase ) };
7719 subExpression.
prepare( &subContext );
7732 auto testLinestring = [ = ](
const QgsGeometry intersection,
double & overlapValue ) ->
bool
7734 bool testResult {
false };
7736 QVector<double> overlapValues;
7739 const QgsCurve *geom = qgsgeometry_cast< const QgsCurve * >( *it );
7741 if ( minOverlap != -1 || requireMeasures )
7743 overlapValue = geom->
length();
7744 overlapValues.append( overlapValue );
7745 if ( minOverlap != -1 )
7747 if ( overlapValue >= minOverlap )
7759 if ( ! overlapValues.isEmpty() )
7761 overlapValue = *std::max_element( overlapValues.cbegin(), overlapValues.cend() );
7768 auto testPolygon = [ = ](
const QgsGeometry intersection,
double & radiusValue,
double & overlapValue ) ->
bool
7771 bool testResult {
false };
7773 QVector<double> overlapValues;
7774 QVector<double> radiusValues;
7777 const QgsCurvePolygon *geom = qgsgeometry_cast< const QgsCurvePolygon * >( *it );
7779 if ( minOverlap != -1 || requireMeasures )
7781 overlapValue = geom->
area();
7782 overlapValues.append( geom->
area() );
7783 if ( minOverlap != - 1 )
7785 if ( overlapValue >= minOverlap )
7797 if ( minInscribedCircleRadius != -1 || requireMeasures )
7800 const double width = bbox.
width();
7801 const double height = bbox.
height();
7802 const double size = width > height ? width : height;
7803 const double tolerance = size / 100.0;
7805 testResult = radiusValue >= minInscribedCircleRadius;
7806 radiusValues.append( radiusValues );
7811 if ( !radiusValues.isEmpty() )
7813 radiusValue = *std::max_element( radiusValues.cbegin(), radiusValues.cend() );
7816 if ( ! overlapValues.isEmpty() )
7818 overlapValue = *std::max_element( overlapValues.cbegin(), overlapValues.cend() );
7828 QVariantList results;
7830 QListIterator<QgsFeature> i( features );
7831 while ( i.hasNext() && ( sortByMeasure || limit == -1 || foundCount < limit ) )
7837 if ( ! relationFunction || ( geometry.*relationFunction )( feat2.
geometry() ) )
7840 double overlapValue = -1;
7841 double radiusValue = -1;
7843 if ( isIntersectsFunc && ( requireMeasures || overlapOrRadiusFilter ) )
7850 switch ( intersection.
type() )
7857 bool testResult { testPolygon( intersection, radiusValue, overlapValue ) };
7859 if ( ! testResult && overlapOrRadiusFilter )
7872 if ( minInscribedCircleRadius != -1 )
7878 const bool testResult { testLinestring( intersection, overlapValue ) };
7880 if ( ! testResult && overlapOrRadiusFilter )
7893 if ( minInscribedCircleRadius != -1 )
7898 bool testResult {
false };
7899 if ( minOverlap != -1 || requireMeasures )
7919 testResult = testLinestring( feat2.
geometry(), overlapValue );
7924 testResult = testPolygon( feat2.
geometry(), radiusValue, overlapValue );
7930 if ( ! testResult && overlapOrRadiusFilter )
7958 const QVariant expResult = subExpression.
evaluate( &subContext );
7960 if ( requireMeasures )
7962 QVariantMap resultRecord;
7963 resultRecord.insert( QStringLiteral(
"id" ), feat2.
id() );
7964 resultRecord.insert( QStringLiteral(
"result" ), expResult );
7966 resultRecord.insert( QStringLiteral(
"overlap" ), overlapValue );
7968 if ( radiusValue != -1 )
7970 resultRecord.insert( QStringLiteral(
"radius" ), radiusValue );
7972 results.append( resultRecord );
7976 results.append( expResult );
7982 results.append( feat2.
id() );
7996 if ( requireMeasures )
7998 if ( sortByMeasure )
8000 std::sort( results.begin(), results.end(), [ sortAscending ](
const QVariant & recordA,
const QVariant & recordB ) ->
bool
8002 return sortAscending ?
8003 recordB.toMap().value( QStringLiteral(
"overlap" ) ).toDouble() > recordA.toMap().value( QStringLiteral(
"overlap" ) ).toDouble()
8004 : recordA.toMap().value( QStringLiteral(
"overlap" ) ).toDouble() > recordB.toMap().value( QStringLiteral(
"overlap" ) ).toDouble();
8008 if ( limit > 0 && results.size() > limit )
8010 results.erase( results.begin() + limit );
8013 if ( ! returnDetails )
8015 QVariantList expResults;
8016 for (
auto it = results.constBegin(); it != results.constEnd(); ++it )
8018 expResults.append( it->toMap().value( QStringLiteral(
"result" ) ) );
8028 QVariantList disjoint_results;
8037 if ( !results.contains( feat2.
id() ) )
8040 disjoint_results.append( subExpression.
evaluate( &subContext ) );
8043 return disjoint_results;
8086 return executeGeomOverlay( values, context, parent,
nullptr,
false, 0,
true );
8095 QMutexLocker locker( &sFunctionsMutex );
8097 QList<QgsExpressionFunction *> &functions = *sFunctions();
8099 if ( functions.isEmpty() )
8137 functions << randFunc;
8141 functions << randfFunc;
8144 <<
new QgsStaticExpressionFunction( QStringLiteral(
"max" ), -1, fcnMax, QStringLiteral(
"Math" ), QString(),
false, QSet<QString>(),
false, QStringList(),
true )
8145 <<
new QgsStaticExpressionFunction( QStringLiteral(
"min" ), -1, fcnMin, QStringLiteral(
"Math" ), QString(),
false, QSet<QString>(),
false, QStringList(),
true )
8152 <<
new QgsStaticExpressionFunction( QStringLiteral(
"pi" ), 0, fcnPi, QStringLiteral(
"Math" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"$pi" ) )
8156 <<
new QgsStaticExpressionFunction( QStringLiteral(
"to_datetime" ),
QgsExpressionFunction::ParameterList() <<
QgsExpressionFunction::Parameter( QStringLiteral(
"value" ) ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"format" ),
true, QVariant() ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"language" ),
true, QVariant() ), fcnToDateTime, QStringList() << QStringLiteral(
"Conversions" ) << QStringLiteral(
"Date and Time" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"todatetime" ) )
8157 <<
new QgsStaticExpressionFunction( QStringLiteral(
"to_date" ),
QgsExpressionFunction::ParameterList() <<
QgsExpressionFunction::Parameter( QStringLiteral(
"value" ) ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"format" ),
true, QVariant() ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"language" ),
true, QVariant() ), fcnToDate, QStringList() << QStringLiteral(
"Conversions" ) << QStringLiteral(
"Date and Time" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"todate" ) )
8158 <<
new QgsStaticExpressionFunction( QStringLiteral(
"to_time" ),
QgsExpressionFunction::ParameterList() <<
QgsExpressionFunction::Parameter( QStringLiteral(
"value" ) ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"format" ),
true, QVariant() ) <<
QgsExpressionFunction::Parameter( QStringLiteral(
"language" ),
true, QVariant() ), fcnToTime, QStringList() << QStringLiteral(
"Conversions" ) << QStringLiteral(
"Date and Time" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"totime" ) )
8163 <<
new QgsStaticExpressionFunction( QStringLiteral(
"coalesce" ), -1, fcnCoalesce, QStringLiteral(
"Conditionals" ), QString(),
false, QSet<QString>(),
false, QStringList(),
true )
8177 QStringLiteral(
"Aggregates" ),
8186 if ( !node->
args() )
8189 QSet<QString> referencedVars;
8201 return referencedVars.contains( QStringLiteral(
"parent" ) ) || referencedVars.contains( QString() );
8210 if ( !node->
args() )
8211 return QSet<QString>();
8213 QSet<QString> referencedCols;
8214 QSet<QString> referencedVars;
8229 if ( referencedVars.contains( QStringLiteral(
"parent" ) ) || referencedVars.contains( QString() ) )
8232 return referencedCols;
8245 <<
new QgsStaticExpressionFunction( QStringLiteral(
"count" ), aggParams, fcnAggregateCount, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8246 <<
new QgsStaticExpressionFunction( QStringLiteral(
"count_distinct" ), aggParams, fcnAggregateCountDistinct, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8247 <<
new QgsStaticExpressionFunction( QStringLiteral(
"count_missing" ), aggParams, fcnAggregateCountMissing, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8248 <<
new QgsStaticExpressionFunction( QStringLiteral(
"minimum" ), aggParams, fcnAggregateMin, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8249 <<
new QgsStaticExpressionFunction( QStringLiteral(
"maximum" ), aggParams, fcnAggregateMax, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8250 <<
new QgsStaticExpressionFunction( QStringLiteral(
"sum" ), aggParams, fcnAggregateSum, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8251 <<
new QgsStaticExpressionFunction( QStringLiteral(
"mean" ), aggParams, fcnAggregateMean, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8252 <<
new QgsStaticExpressionFunction( QStringLiteral(
"median" ), aggParams, fcnAggregateMedian, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8253 <<
new QgsStaticExpressionFunction( QStringLiteral(
"stdev" ), aggParams, fcnAggregateStdev, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8254 <<
new QgsStaticExpressionFunction( QStringLiteral(
"range" ), aggParams, fcnAggregateRange, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8255 <<
new QgsStaticExpressionFunction( QStringLiteral(
"minority" ), aggParams, fcnAggregateMinority, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8256 <<
new QgsStaticExpressionFunction( QStringLiteral(
"majority" ), aggParams, fcnAggregateMajority, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8257 <<
new QgsStaticExpressionFunction( QStringLiteral(
"q1" ), aggParams, fcnAggregateQ1, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8258 <<
new QgsStaticExpressionFunction( QStringLiteral(
"q3" ), aggParams, fcnAggregateQ3, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8259 <<
new QgsStaticExpressionFunction( QStringLiteral(
"iqr" ), aggParams, fcnAggregateIQR, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8260 <<
new QgsStaticExpressionFunction( QStringLiteral(
"min_length" ), aggParams, fcnAggregateMinLength, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8261 <<
new QgsStaticExpressionFunction( QStringLiteral(
"max_length" ), aggParams, fcnAggregateMaxLength, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8262 <<
new QgsStaticExpressionFunction( QStringLiteral(
"collect" ), aggParams, fcnAggregateCollectGeometry, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8263 <<
new QgsStaticExpressionFunction( QStringLiteral(
"concatenate" ), aggParamsConcat, fcnAggregateStringConcat, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8264 <<
new QgsStaticExpressionFunction( QStringLiteral(
"concatenate_unique" ), aggParamsConcat, fcnAggregateStringConcatUnique, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8265 <<
new QgsStaticExpressionFunction( QStringLiteral(
"array_agg" ), aggParamsArray, fcnAggregateArray, QStringLiteral(
"Aggregates" ), QString(),
false, QSet<QString>(), true )
8270 <<
new QgsStaticExpressionFunction( QStringLiteral(
"now" ), 0, fcnNow, QStringLiteral(
"Date and Time" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"$now" ) )
8273 fcnAge, QStringLiteral(
"Date and Time" ) )
8287 fcnMakeDate, QStringLiteral(
"Date and Time" ) )
8291 fcnMakeTime, QStringLiteral(
"Date and Time" ) )
8298 fcnMakeDateTime, QStringLiteral(
"Date and Time" ) )
8306 fcnMakeInterval, QStringLiteral(
"Date and Time" ) )
8331 false, QSet< QString >(),
false, QStringList(), true )
8332 <<
new QgsStaticExpressionFunction( QStringLiteral(
"concat" ), -1, fcnConcat, QStringLiteral(
"String" ), QString(),
false, QSet<QString>(),
false, QStringList(), true )
8350 fcnColorMixRgb, QStringLiteral(
"Color" ) )
8354 fcnColorRgb, QStringLiteral(
"Color" ) )
8359 fncColorRgba, QStringLiteral(
"Color" ) )
8365 fcnCreateRamp, QStringLiteral(
"Color" ) )
8369 fcnColorHsl, QStringLiteral(
"Color" ) )
8374 fncColorHsla, QStringLiteral(
"Color" ) )
8378 fcnColorHsv, QStringLiteral(
"Color" ) )
8383 fncColorHsva, QStringLiteral(
"Color" ) )
8388 fcnColorCmyk, QStringLiteral(
"Color" ) )
8394 fncColorCmyka, QStringLiteral(
"Color" ) )
8397 fncColorPart, QStringLiteral(
"Color" ) )
8400 fncDarker, QStringLiteral(
"Color" ) )
8403 fncLighter, QStringLiteral(
"Color" ) )
8408 fcnBaseFileName, QStringLiteral(
"Files and Paths" ) )
8410 fcnFileSuffix, QStringLiteral(
"Files and Paths" ) )
8412 fcnFileExists, QStringLiteral(
"Files and Paths" ) )
8414 fcnFileName, QStringLiteral(
"Files and Paths" ) )
8416 fcnPathIsFile, QStringLiteral(
"Files and Paths" ) )
8418 fcnPathIsDir, QStringLiteral(
"Files and Paths" ) )
8420 fcnFilePath, QStringLiteral(
"Files and Paths" ) )
8422 fcnFileSize, QStringLiteral(
"Files and Paths" ) )
8425 fcnExif, QStringLiteral(
"Files and Paths" ) )
8427 fcnExifGeoTag, QStringLiteral(
"GeometryGroup" ) )
8431 fcnGenericHash, QStringLiteral(
"Conversions" ) )
8433 fcnHashMd5, QStringLiteral(
"Conversions" ) )
8435 fcnHashSha256, QStringLiteral(
"Conversions" ) )
8439 fcnToBase64, QStringLiteral(
"Conversions" ) )
8441 fcnFromBase64, QStringLiteral(
"Conversions" ) )
8447 geomFunc->setIsStatic(
false );
8448 functions << geomFunc;
8452 functions << areaFunc;
8458 functions << lengthFunc;
8462 functions << perimeterFunc;
8468 fcnRoundness, QStringLiteral(
"GeometryGroup" ) );
8482 QMap< QString, QgsExpressionFunction::FcnEval > geometry_overlay_definitions
8484 { QStringLiteral(
"overlay_intersects" ), fcnGeomOverlayIntersects },
8485 { QStringLiteral(
"overlay_contains" ), fcnGeomOverlayContains },
8486 { QStringLiteral(
"overlay_crosses" ), fcnGeomOverlayCrosses },
8487 { QStringLiteral(
"overlay_equals" ), fcnGeomOverlayEquals },
8488 { QStringLiteral(
"overlay_touches" ), fcnGeomOverlayTouches },
8489 { QStringLiteral(
"overlay_disjoint" ), fcnGeomOverlayDisjoint },
8490 { QStringLiteral(
"overlay_within" ), fcnGeomOverlayWithin },
8492 QMapIterator< QString, QgsExpressionFunction::FcnEval > i( geometry_overlay_definitions );
8493 while ( i.hasNext() )
8510 functions << fcnGeomOverlayFunc;
8523 functions << fcnGeomOverlayNearestFunc;
8536 fcnNodesToPoints, QStringLiteral(
"GeometryGroup" ) )
8538 <<
new QgsStaticExpressionFunction( QStringLiteral(
"collect_geometries" ), -1, fcnCollectGeometries, QStringLiteral(
"GeometryGroup" ) )
8543 fcnMakePointM, QStringLiteral(
"GeometryGroup" ) )
8549 fcnMakeTriangle, QStringLiteral(
"GeometryGroup" ) )
8554 fcnMakeCircle, QStringLiteral(
"GeometryGroup" ) )
8561 fcnMakeEllipse, QStringLiteral(
"GeometryGroup" ) )
8567 fcnMakeRegularPolygon, QStringLiteral(
"GeometryGroup" ) )
8571 fcnMakeSquare, QStringLiteral(
"GeometryGroup" ) )
8577 fcnMakeRectangleFrom3Points, QStringLiteral(
"GeometryGroup" ) )
8581#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<10
8587 }, fcnGeomMakeValid, QStringLiteral(
"GeometryGroup" ) );
8596 functions << xAtFunc;
8601 functions << yAtFunc;
8617 fcnDisjoint, QStringLiteral(
"GeometryGroup" ) )
8620 fcnIntersects, QStringLiteral(
"GeometryGroup" ) )
8623 fcnTouches, QStringLiteral(
"GeometryGroup" ) )
8626 fcnCrosses, QStringLiteral(
"GeometryGroup" ) )
8629 fcnContains, QStringLiteral(
"GeometryGroup" ) )
8632 fcnOverlaps, QStringLiteral(
"GeometryGroup" ) )
8635 fcnWithin, QStringLiteral(
"GeometryGroup" ) )
8639 fcnTranslate, QStringLiteral(
"GeometryGroup" ) )
8644 fcnRotate, QStringLiteral(
"GeometryGroup" ) )
8649 fcnScale, QStringLiteral(
"GeometryGroup" ) )
8660 fcnAffineTransform, QStringLiteral(
"GeometryGroup" ) )
8667 fcnBuffer, QStringLiteral(
"GeometryGroup" ) )
8669 fcnForceRHR, QStringLiteral(
"GeometryGroup" ) )
8671 fcnForcePolygonCW, QStringLiteral(
"GeometryGroup" ) )
8673 fcnForcePolygonCCW, QStringLiteral(
"GeometryGroup" ) )
8683 , fcnTaperedBuffer, QStringLiteral(
"GeometryGroup" ) )
8686 , fcnBufferByM, QStringLiteral(
"GeometryGroup" ) )
8692 fcnOffsetCurve, QStringLiteral(
"GeometryGroup" ) )
8698 fcnSingleSidedBuffer, QStringLiteral(
"GeometryGroup" ) )
8702 fcnExtend, QStringLiteral(
"GeometryGroup" ) )
8711 fcnInteriorRingN, QStringLiteral(
"GeometryGroup" ) )
8714 fcnGeometryN, QStringLiteral(
"GeometryGroup" ) )
8721 }, fcnSharedPaths, QStringLiteral(
"GeometryGroup" ) )
8735 }, fcnTriangularWave, QStringLiteral(
"GeometryGroup" ) )
8744 }, fcnTriangularWaveRandomized, QStringLiteral(
"GeometryGroup" ) )
8751 }, fcnSquareWave, QStringLiteral(
"GeometryGroup" ) )
8760 }, fcnSquareWaveRandomized, QStringLiteral(
"GeometryGroup" ) )
8767 }, fcnRoundWave, QStringLiteral(
"GeometryGroup" ) )
8776 }, fcnRoundWaveRandomized, QStringLiteral(
"GeometryGroup" ) )
8785 }, fcnApplyDashPattern, QStringLiteral(
"GeometryGroup" ) )
8790 }, fcnDensifyByCount, QStringLiteral(
"GeometryGroup" ) )
8795 }, fcnDensifyByDistance, QStringLiteral(
"GeometryGroup" ) )
8807#
if GEOS_VERSION_MAJOR>3 || ( GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR>=11 )
8814 fcnOrientedBBox, QStringLiteral(
"GeometryGroup" ) )
8817 fcnMainAngle, QStringLiteral(
"GeometryGroup" ) )
8821 fcnMinimalCircle, QStringLiteral(
"GeometryGroup" ) )
8824 fcnDifference, QStringLiteral(
"GeometryGroup" ) )
8827 fcnDistance, QStringLiteral(
"GeometryGroup" ) )
8830 fcnHausdorffDistance, QStringLiteral(
"GeometryGroup" ) )
8833 fcnIntersection, QStringLiteral(
"GeometryGroup" ) )
8836 fcnSymDifference, QStringLiteral(
"GeometryGroup" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"symDifference" ) )
8839 fcnCombine, QStringLiteral(
"GeometryGroup" ) )
8842 fcnCombine, QStringLiteral(
"GeometryGroup" ) )
8845 fcnGeomToWKT, QStringLiteral(
"GeometryGroup" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"geomToWKT" ) )
8847 fcnGeomToWKB, QStringLiteral(
"GeometryGroup" ), QString(),
false, QSet<QString>(),
false )
8852 fcnTransformGeometry, QStringLiteral(
"GeometryGroup" ) )
8856 fcnExtrude, QStringLiteral(
"GeometryGroup" ), QString() )
8858 fcnGeomIsMultipart, QStringLiteral(
"GeometryGroup" ) )
8860 fcnZMax, QStringLiteral(
"GeometryGroup" ) )
8862 fcnZMin, QStringLiteral(
"GeometryGroup" ) )
8864 fcnMMax, QStringLiteral(
"GeometryGroup" ) )
8866 fcnMMin, QStringLiteral(
"GeometryGroup" ) )
8868 fcnSinuosity, QStringLiteral(
"GeometryGroup" ) )
8870 fcnStraightDistance2d, QStringLiteral(
"GeometryGroup" ) );
8876 fcnOrderParts, QStringLiteral(
"GeometryGroup" ), QString() );
8881 const QList< QgsExpressionNode *> argList = node->
args()->list();
8884 if ( !argNode->isStatic( parent, context ) )
8892 QString expString = argNode->
eval( parent, context ).toString();
8896 if ( e.rootNode() && e.rootNode()->isStatic( parent, context ) )
8908 QString
expression = argNode->
eval( parent, context ).toString();
8910 e.prepare( context );
8916 functions << orderPartsFunc;
8921 fcnClosestPoint, QStringLiteral(
"GeometryGroup" ) )
8924 fcnShortestLine, QStringLiteral(
"GeometryGroup" ) )
8943 functions << idFunc;
8947 functions << currentFeatureFunc;
8949 QgsStaticExpressionFunction *uuidFunc =
new QgsStaticExpressionFunction( QStringLiteral(
"uuid" ),
QgsExpressionFunction::ParameterList() <<
QgsExpressionFunction::Parameter( QStringLiteral(
"format" ),
true, QStringLiteral(
"WithBraces" ) ), fcnUuid, QStringLiteral(
"Record and Attributes" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"$uuid" ) );
8951 functions << uuidFunc;
8958 fcnGetFeature, QStringLiteral(
"Record and Attributes" ), QString(),
false, QSet<QString>(),
false, QStringList() << QStringLiteral(
"QgsExpressionUtils::getFeature" ) )
8961 fcnGetFeatureById, QStringLiteral(
"Record and Attributes" ), QString(),
false, QSet<QString>(),
false );
8966 functions << attributesFunc;
8970 functions << representAttributesFunc;
8978 functions << validateFeature;
8987 functions << validateAttribute;
8990 QStringLiteral(
"maptip" ),
8993 QStringLiteral(
"Record and Attributes" ),
8999 functions << maptipFunc;
9002 QStringLiteral(
"display_expression" ),
9004 fcnFeatureDisplayExpression,
9005 QStringLiteral(
"Record and Attributes" ),
9011 functions << displayFunc;
9014 QStringLiteral(
"is_selected" ),
9017 QStringLiteral(
"Record and Attributes" ),
9023 functions << isSelectedFunc;
9027 QStringLiteral(
"num_selected" ),
9030 QStringLiteral(
"Record and Attributes" ),
9038 QStringLiteral(
"sqlite_fetch_and_increment" ),
9046 fcnSqliteFetchAndIncrement,
9047 QStringLiteral(
"Record and Attributes" )
9065 parent->
setEvalErrorString( tr(
"If represent_value is called with 1 parameter, it must be an attribute." ) );
9075 parent->
setEvalErrorString( tr(
"represent_value must be called with exactly 1 or 2 parameters." ) );
9081 functions << representValueFunc;
9087 fcnGetLayerProperty, QStringLiteral(
"Map Layers" ) )
9092 fcnDecodeUri, QStringLiteral(
"Map Layers" ) )
9096 fcnMimeType, QStringLiteral(
"General" ) )
9113 QgsExpressionNode *argNode = node->args()->at( 0 );
9115 if ( !argNode->isStatic( parent, context ) )
9118 const QString varName = argNode->eval( parent, context ).toString();
9119 if ( varName == QLatin1String(
"feature" ) || varName == QLatin1String(
"id" ) || varName == QLatin1String(
"geometry" ) )
9122 const QgsExpressionContextScope *scope = context->activeScopeForVariable( varName );
9123 return scope ? scope->isStatic( varName ) : false;
9131 if ( node && node->
args()->
count() > 0 )
9136 if ( literal->value() == QLatin1String(
"geometry" ) || literal->value() == QLatin1String(
"feature" ) )
9155 QgsExpressionNode *argNode = node->args()->at( 0 );
9157 if ( argNode->isStatic( parent, context ) )
9159 QString expString = argNode->eval( parent, context ).toString();
9161 QgsExpression e( expString );
9163 if ( e.rootNode() && e.rootNode()->isStatic( parent, context ) )
9171 functions << evalFunc;
9177 const QList< QgsExpressionNode *> argList = node->
args()->list();
9180 if ( !argNode->
isStatic( parent, context ) )
9192 functions << attributeFunc;
9203 <<
new QgsStaticExpressionFunction( QStringLiteral(
"array" ), -1, fcnArray, QStringLiteral(
"Arrays" ), QString(),
false, QSet<QString>(),
false, QStringList(),
true )
9252 fcnMapPrefixKeys, QStringLiteral(
"Maps" ) )
9254 fcnMapToHtmlTable, QStringLiteral(
"Maps" ) )
9256 fcnMapToHtmlDefinitionList, QStringLiteral(
"Maps" ) )
9258 fcnToFormUrlEncode, QStringLiteral(
"Maps" ) )
9267 *sOwnedFunctions() << func;
9268 *sBuiltinFunctions() << func->name();
9269 sBuiltinFunctions()->append( func->aliases() );
9283 QMutexLocker locker( &sFunctionsMutex );
9284 sFunctions()->append( function );
9285 if ( transferOwnership )
9286 sOwnedFunctions()->append( function );
9301 QMutexLocker locker( &sFunctionsMutex );
9302 sFunctions()->removeAt( fnIdx );
9303 sFunctionIndexMap.clear();
9311 qDeleteAll( *sOwnedFunctions() );
9312 sOwnedFunctions()->clear();
9317 if ( sBuiltinFunctions()->isEmpty() )
9321 return *sBuiltinFunctions();
9329 QStringLiteral(
"Arrays" ) )
9340 if ( args->
count() < 2 )
9343 if ( args->
at( 0 )->
isStatic( parent, context ) && args->
at( 1 )->
isStatic( parent, context ) )
9353 QVariantList result;
9355 if ( args->
count() < 2 )
9359 QVariantList array = args->
at( 0 )->
eval( parent, context ).toList();
9362 std::unique_ptr< QgsExpressionContext > tempContext;
9365 tempContext = std::make_unique< QgsExpressionContext >();
9366 subContext = tempContext.get();
9373 for ( QVariantList::const_iterator it = array.constBegin(); it != array.constEnd(); ++it, ++i )
9377 result << args->
at( 1 )->
eval( parent, subContext );
9402 if ( args->
count() < 2 )
9406 args->
at( 0 )->
prepare( parent, context );
9410 subContext = *context;
9417 args->
at( 1 )->
prepare( parent, &subContext );
9427 QStringLiteral(
"Arrays" ) )
9438 if ( args->
count() < 2 )
9441 if ( args->
at( 0 )->
isStatic( parent, context ) && args->
at( 1 )->
isStatic( parent, context ) )
9451 QVariantList result;
9453 if ( args->
count() < 2 )
9457 const QVariantList array = args->
at( 0 )->
eval( parent, context ).toList();
9460 std::unique_ptr< QgsExpressionContext > tempContext;
9463 tempContext = std::make_unique< QgsExpressionContext >();
9464 subContext = tempContext.get();
9471 if ( args->
count() >= 3 )
9473 const QVariant limitVar = args->
at( 2 )->
eval( parent, context );
9475 if ( QgsExpressionUtils::isIntSafe( limitVar ) )
9477 limit = limitVar.toInt();
9485 for (
const QVariant &value : array )
9488 if ( args->
at( 1 )->
eval( parent, subContext ).toBool() )
9492 if ( limit > 0 && limit == result.size() )
9519 if ( args->
count() < 2 )
9523 args->
at( 0 )->
prepare( parent, context );
9527 subContext = *context;
9533 args->
at( 1 )->
prepare( parent, &subContext );
9542 QStringLiteral(
"General" ) )
9553 if ( args->
count() < 3 )
9557 if ( args->
at( 0 )->
isStatic( parent, context ) && args->
at( 1 )->
isStatic( parent, context ) )
9559 QVariant
name = args->
at( 0 )->
eval( parent, context );
9560 QVariant value = args->
at( 1 )->
eval( parent, context );
9563 appendTemporaryVariable( context,
name.toString(), value );
9564 if ( args->
at( 2 )->
isStatic( parent, context ) )
9566 popTemporaryVariable( context );
9577 if ( args->
count() < 3 )
9581 QVariant
name = args->
at( 0 )->
eval( parent, context );
9582 QVariant value = args->
at( 1 )->
eval( parent, context );
9585 std::unique_ptr< QgsExpressionContext > tempContext;
9586 if ( !updatedContext )
9588 tempContext = std::make_unique< QgsExpressionContext >();
9589 updatedContext = tempContext.get();
9592 appendTemporaryVariable( updatedContext,
name.toString(), value );
9593 result = args->
at( 2 )->
eval( parent, updatedContext );
9596 popTemporaryVariable( updatedContext );
9617 if ( args->
count() < 3 )
9622 QVariant value = args->
at( 1 )->
prepare( parent, context );
9625 std::unique_ptr< QgsExpressionContext > tempContext;
9626 if ( !updatedContext )
9628 tempContext = std::make_unique< QgsExpressionContext >();
9629 updatedContext = tempContext.get();
9632 appendTemporaryVariable( updatedContext,
name.toString(), value );
9633 args->
at( 2 )->
prepare( parent, updatedContext );
9636 popTemporaryVariable( updatedContext );
9641void QgsWithVariableExpressionFunction::popTemporaryVariable(
const QgsExpressionContext *context )
const
9647void QgsWithVariableExpressionFunction::appendTemporaryVariable(
const QgsExpressionContext *context,
const QString &name,
const QVariant &value )
const
@ Left
Buffer to left of line.
DashPatternSizeAdjustment
Dash pattern size adjustment options.
@ ScaleDashOnly
Only dash lengths are adjusted.
@ ScaleBothDashAndGap
Both the dash and gap lengths are adjusted equally.
@ ScaleGapOnly
Only gap lengths are adjusted.
@ Success
Operation succeeded.
@ NoGeometry
Geometry is not required. It may still be returned if e.g. required for a filter condition.
JoinStyle
Join styles for buffers.
@ Bevel
Use beveled joins.
@ Round
Use rounded joins.
@ Miter
Use mitered joins.
RasterBandStatistic
Available raster band statistics.
@ StdDev
Standard deviation.
@ NoStatistic
No statistic.
@ Group
Composite group layer. Added in QGIS 3.24.
@ Plugin
Plugin based layer.
@ TiledScene
Tiled scene layer. Added in QGIS 3.34.
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
@ Mesh
Mesh layer. Added in QGIS 3.2.
@ PointCloud
Point cloud layer. Added in QGIS 3.18.
EndCapStyle
End cap styles for buffers.
@ Flat
Flat cap (in line with start/end of line)
@ Square
Square cap (extends past start/end of line by buffer distance)
Aggregate
Available aggregates to calculate.
@ StringMinimumLength
Minimum length of string (string fields only)
@ FirstQuartile
First quartile (numeric fields only)
@ Mean
Mean of values (numeric fields only)
@ Median
Median of values (numeric fields only)
@ StringMaximumLength
Maximum length of string (string fields only)
@ Range
Range of values (max - min) (numeric and datetime fields only)
@ StringConcatenateUnique
Concatenate unique values with a joining string (string fields only). Specify the delimiter using set...
@ Minority
Minority of values.
@ CountMissing
Number of missing (null) values.
@ ArrayAggregate
Create an array of values.
@ Majority
Majority of values.
@ StDevSample
Sample standard deviation of values (numeric fields only)
@ ThirdQuartile
Third quartile (numeric fields only)
@ CountDistinct
Number of distinct values.
@ StringConcatenate
Concatenate values with a joining string (string fields only). Specify the delimiter using setDelimit...
@ GeometryCollect
Create a multipart geometry from aggregated geometries.
@ InterQuartileRange
Inter quartile range (IQR) (numeric fields only)
DashPatternLineEndingRule
Dash pattern line ending rules.
@ HalfDash
Start or finish the pattern with a half length dash.
@ HalfGap
Start or finish the pattern with a half length gap.
@ FullGap
Start or finish the pattern with a full gap.
@ FullDash
Start or finish the pattern with a full dash.
MakeValidMethod
Algorithms to use when repairing invalid geometries.
@ Linework
Combines all rings into a set of noded lines and then extracts valid polygons from that linework.
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Abstract base class for all geometries.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
virtual QgsAbstractGeometry * boundary() const =0
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
virtual const QgsAbstractGeometry * simplifiedTypeRef() const
Returns a reference to the simplest lossless representation of this geometry, e.g.
bool isMeasure() const
Returns true if the geometry contains m values.
virtual QgsRectangle boundingBox() const
Returns the minimal bounding box for the geometry.
bool is3D() const
Returns true if the geometry is 3D and contains a z-value.
virtual int nCoordinates() const
Returns the number of nodes contained in the geometry.
virtual QgsPoint vertexAt(QgsVertexId id) const =0
Returns the point corresponding to a specified vertex id.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
Qgis::WkbType wkbType() const
Returns the WKB type of the geometry.
part_iterator parts_end()
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry.
virtual double length() const
Returns the planar, 2-dimensional length of the geometry.
virtual QgsCoordinateSequence coordinateSequence() const =0
Retrieves the sequence of geometries, rings and nodes.
virtual int partCount() const =0
Returns count of parts contained in the geometry.
part_iterator parts_begin()
Returns STL-style iterator pointing to the first part of the geometry.
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
static Qgis::Aggregate stringToAggregate(const QString &string, bool *ok=nullptr)
Converts a string to a aggregate type.
static QgsFieldFormatterRegistry * fieldFormatterRegistry()
Gets the registry of available field formatters.
Handles the array_filter(array, expression) expression function.
QVariant func(const QVariantList &values, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Returns result of evaluating the function.
bool prepare(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
This will be called during the prepare step() of an expression if it is not static.
bool isStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
Will be called during prepare to determine if the function is static.
QVariant run(QgsExpressionNode::NodeList *args, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Evaluates the function, first evaluating all required arguments before passing them to the function's...
QgsArrayFilterExpressionFunction()
Handles the array loopingarray_Foreach(array, expression) expression function.
QVariant func(const QVariantList &values, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Returns result of evaluating the function.
QgsArrayForeachExpressionFunction()
bool isStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
Will be called during prepare to determine if the function is static.
QVariant run(QgsExpressionNode::NodeList *args, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Evaluates the function, first evaluating all required arguments before passing them to the function's...
bool prepare(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
This will be called during the prepare step() of an expression if it is not static.
Abstract base class for color ramps.
virtual QColor color(double value) const =0
Returns the color corresponding to a specified value.
This class represents a coordinate reference system (CRS).
static QgsCoordinateReferenceSystem fromOgcWmsCrs(const QString &ogcCrs)
Creates a CRS from a given OGC WMS-format Coordinate Reference System string.
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
QString toProj() const
Returns a Proj string representation of this CRS.
QString ellipsoidAcronym() const
Returns the ellipsoid acronym for the ellipsoid used by the CRS.
Qgis::DistanceUnit mapUnits
Contains information about the context in which a coordinate transform is executed.
Custom exception class for Coordinate Reference System related exceptions.
Curve polygon geometry type.
int numInteriorRings() const
Returns the number of interior rings contained with the curve polygon.
const QgsCurve * exteriorRing() const
Returns the curve polygon's exterior ring.
bool isEmpty() const override
Returns true if the geometry is empty.
const QgsCurve * interiorRing(int i) const
Retrieves an interior ring from the curve polygon.
double area() const override
Returns the planar, 2-dimensional area of the geometry.
double roundness() const
Returns the roundness of the curve polygon.
int ringCount(int part=0) const override
Returns the number of rings of which this geometry is built.
Abstract base class for curved geometry type.
double sinuosity() const
Returns the curve sinuosity, which is the ratio of the curve length() to curve straightDistance2d().
QgsCurve * segmentize(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const override
Returns a geometry without curves.
virtual QgsCurve * curveSubstring(double startDistance, double endDistance) const =0
Returns a new curve representing a substring of this curve.
virtual bool isClosed() const
Returns true if the curve is closed.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
double straightDistance2d() const
Returns the straight distance of the curve, i.e.
virtual QgsCurve * reversed() const =0
Returns a reversed copy of the curve, where the direction of the curve has been flipped.
virtual QString dataSourceUri(bool expandAuthConfig=false) const
Gets the data source specification.
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
double measureArea(const QgsGeometry &geometry) const
Measures the area of a geometry.
double convertLengthMeasurement(double length, Qgis::DistanceUnit toUnits) const
Takes a length measurement calculated by this QgsDistanceArea object and converts it to a different d...
double measurePerimeter(const QgsGeometry &geometry) const
Measures the perimeter of a polygon geometry.
double measureLength(const QgsGeometry &geometry) const
Measures the length of a geometry.
double bearing(const QgsPointXY &p1, const QgsPointXY &p2) const
Computes the bearing (in radians) between two points.
void setSourceCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets source spatial reference system crs.
bool setEllipsoid(const QString &ellipsoid)
Sets the ellipsoid by its acronym.
double convertAreaMeasurement(double area, Qgis::AreaUnit toUnits) const
Takes an area measurement calculated by this QgsDistanceArea object and converts it to a different ar...
Single scope for storing variables and functions for use within a QgsExpressionContext.
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
bool isStatic(const QString &name) const
Tests whether the variable with the specified name is static and can be cached.
void setVariable(const QString &name, const QVariant &value, bool isStatic=false)
Convenience method for setting a variable in the context scope by name name and value.
static void registerContextFunctions()
Registers all known core functions provided by QgsExpressionContextScope objects.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
void setCachedValue(const QString &key, const QVariant &value) const
Sets a value to cache within the expression context.
QgsGeometry geometry() const
Convenience function for retrieving the geometry for the context, if set.
QgsFeature feature() const
Convenience function for retrieving the feature for the context, if set.
QgsExpressionContextScope * activeScopeForVariable(const QString &name)
Returns the currently active scope from the context for a specified variable name.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
QgsFeedback * feedback() const
Returns the feedback object that can be queried regularly by the expression to check if evaluation sh...
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
bool hasGeometry() const
Returns true if the context has a geometry associated with it.
bool hasCachedValue(const QString &key) const
Returns true if the expression context contains a cached value with a matching key.
QVariant variable(const QString &name) const
Fetches a matching variable from the context.
QVariant cachedValue(const QString &key) const
Returns the matching cached value, if set.
bool hasFeature() const
Returns true if the context has a feature associated with it.
QgsFields fields() const
Convenience function for retrieving the fields for the context, if set.
Represents a single parameter passed to a function.
A abstract base class for defining QgsExpression functions.
QList< QgsExpressionFunction::Parameter > ParameterList
List of parameters, used for function definition.
bool operator==(const QgsExpressionFunction &other) const
virtual bool isDeprecated() const
Returns true if the function is deprecated and should not be presented as a valid option to users in ...
virtual bool isStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const
Will be called during prepare to determine if the function is static.
virtual QStringList aliases() const
Returns a list of possible aliases for the function.
bool lazyEval() const
true if this function should use lazy evaluation.
static bool allParamsStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context)
This will return true if all the params for the provided function node are static within the constrai...
QString name() const
The name of the function.
virtual QVariant run(QgsExpressionNode::NodeList *args, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node)
Evaluates the function, first evaluating all required arguments before passing them to the function's...
virtual QVariant func(const QVariantList &values, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node)=0
Returns result of evaluating the function.
virtual QSet< QString > referencedColumns(const QgsExpressionNodeFunction *node) const
Returns a set of field names which are required for this function.
virtual bool handlesNull() const
Returns true if the function handles NULL values in arguments by itself, and the default NULL value h...
virtual bool prepare(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const
This will be called during the prepare step() of an expression if it is not static.
virtual bool usesGeometry(const QgsExpressionNodeFunction *node) const
Does this function use a geometry object.
An expression node which takes it value from a feature's field.
QString name() const
The name of the column.
An expression node for expression functions.
QgsExpressionNode::NodeList * args() const
Returns a list of arguments specified for the function.
An expression node for literal values.
A list of expression nodes.
QList< QgsExpressionNode * > list()
Gets a list of all the nodes.
QgsExpressionNode * at(int i)
Gets the node at position i in the list.
int count() const
Returns the number of nodes in the list.
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.
QVariant eval(QgsExpression *parent, const QgsExpressionContext *context)
Evaluate this node with the given context and parent.
virtual bool isStatic(QgsExpression *parent, const QgsExpressionContext *context) const =0
Returns true if this node can be evaluated for a static value.
bool prepare(QgsExpression *parent, const QgsExpressionContext *context)
Prepare this node for evaluation.
virtual QSet< QString > referencedColumns() const =0
Abstract virtual method which returns a list of columns required to evaluate this node.
virtual QSet< QString > referencedVariables() const =0
Returns a set of all variables which are used in this expression.
A set of expression-related functions.
Class for parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
static const QList< QgsExpressionFunction * > & Functions()
QString expression() const
Returns the original, unmodified expression string.
static void cleanRegisteredFunctions()
Deletes all registered functions whose ownership have been transferred to the expression engine.
Qgis::DistanceUnit distanceUnits() const
Returns the desired distance units for calculations involving geomCalculator(), e....
static bool registerFunction(QgsExpressionFunction *function, bool transferOwnership=false)
Registers a function to the expression engine.
static int functionIndex(const QString &name)
Returns index of the function in Functions array.
static const QStringList & BuiltinFunctions()
static QString createFieldEqualityExpression(const QString &fieldName, const QVariant &value, QVariant::Type fieldType=QVariant::Type::Invalid)
Create an expression allowing to evaluate if a field is equal to a value.
static QString replaceExpressionText(const QString &action, const QgsExpressionContext *context, const QgsDistanceArea *distanceArea=nullptr)
This function replaces each expression between [% and %] in the string with the result of its evaluat...
static PRIVATE QString helpText(QString name)
Returns the help text for a specified function.
static bool unregisterFunction(const QString &name)
Unregisters a function from the expression engine.
Qgis::AreaUnit areaUnits() const
Returns the desired areal units for calculations involving geomCalculator(), e.g.,...
void setEvalErrorString(const QString &str)
Sets evaluation error (used internally by evaluation functions)
bool hasEvalError() const
Returns true if an error occurred when evaluating last input.
bool needsGeometry() const
Returns true if the expression uses feature geometry for some computation.
QVariant evaluate()
Evaluate the feature and return the result.
QgsDistanceArea * geomCalculator()
Returns calculator used for distance and area calculations (used by $length, $area and $perimeter fun...
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
The OrderByClause class represents an order by clause for a QgsFeatureRequest.
Represents a list of OrderByClauses, with the most important first and the least important last.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & setLimit(long long limit)
Set the maximum number of features to request.
QgsFeatureRequest & setRequestMayBeNested(bool requestMayBeNested)
In case this request may be run nested within another already running iteration on the same connectio...
QgsFeatureRequest & setTimeout(int timeout)
Sets the timeout (in milliseconds) for the maximum time we should wait during feature requests before...
static const QString ALL_ATTRIBUTES
A special attribute that if set matches all attributes.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
void setFeedback(QgsFeedback *feedback)
Attach a feedback object that can be queried regularly by the iterator to check if it should be cance...
QgsFeatureRequest & setFilterFid(QgsFeatureId fid)
Sets the feature ID that should be fetched.
QgsVectorLayer * materialize(const QgsFeatureRequest &request, QgsFeedback *feedback=nullptr)
Materializes a request (query) made against this feature source, by running it over the source and re...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
bool isValid() const
Returns the validity of this feature.
QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
ConstraintStrength
Strength of constraints.
@ ConstraintStrengthNotSet
Constraint is not set.
@ ConstraintStrengthSoft
User is warned if constraint is violated but feature can still be accepted.
@ ConstraintStrengthHard
Constraint must be honored before feature can be accepted.
QgsEditorWidgetSetup editorWidgetSetup() const
Gets the editor widget setup for the field.
Container of fields for a vector layer.
int indexFromName(const QString &fieldName) const
Gets the field index from the field name.
int count() const
Returns number of items.
int size() const
Returns number of items.
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
virtual bool removeGeometry(int nr)
Removes a geometry from the collection.
QgsGeometryCollection * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
int partCount() const override
Returns count of parts contained in the geometry.
int numGeometries() const
Returns the number of geometries within the collection.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
static QVector< QgsLineString * > extractLineStrings(const QgsAbstractGeometry *geom)
Returns list of linestrings extracted from the passed geometry.
A geometry is the spatial representation of a feature.
double hausdorffDistanceDensify(const QgsGeometry &geom, double densifyFraction) const
Returns the Hausdorff distance between this geometry and geom.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Returns a copy of the geometry which has been densified by adding the specified number of extra nodes...
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
double lineLocatePoint(const QgsGeometry &point) const
Returns a distance representing the location along this linestring of the closest point on this lines...
QgsGeometry difference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points making up this geometry that do not make up other.
double length() const
Returns the planar, 2-dimensional length of geometry.
QgsGeometry offsetCurve(double distance, int segments, Qgis::JoinStyle joinStyle, double miterLimit) const
Returns an offset line at a given distance and side from an input line.
QgsGeometry densifyByDistance(double distance) const
Densifies the geometry by adding regularly placed extra nodes inside each segment so that the maximum...
QgsGeometry poleOfInaccessibility(double precision, double *distanceToBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
QgsAbstractGeometry::const_part_iterator const_parts_begin() const
Returns STL-style const iterator pointing to the first part of the geometry.
QgsGeometry squareWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs square waves along the boundary of the geometry, with the specified wavelength and amplitu...
QgsGeometry triangularWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs triangular waves along the boundary of the geometry, with the specified wavelength and amp...
bool vertexIdFromVertexNr(int number, QgsVertexId &id) const
Calculates the vertex ID from a vertex number.
QgsGeometry pointOnSurface() const
Returns a point guaranteed to lie on the surface of a geometry.
bool touches(const QgsGeometry &geometry) const
Returns true if the geometry touches another geometry.
QgsGeometry applyDashPattern(const QVector< double > &pattern, Qgis::DashPatternLineEndingRule startRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternLineEndingRule endRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternSizeAdjustment adjustment=Qgis::DashPatternSizeAdjustment::ScaleBothDashAndGap, double patternOffset=0) const
Applies a dash pattern to a geometry, returning a MultiLineString geometry which is the input geometr...
QgsGeometry roundWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs rounded (sine-like) waves along the boundary of the geometry, with the specified wavelengt...
QgsGeometry nearestPoint(const QgsGeometry &other) const
Returns the nearest (closest) point on this geometry to another geometry.
static QgsGeometry collectGeometry(const QVector< QgsGeometry > &geometries)
Creates a new multipart geometry from a list of QgsGeometry objects.
QgsGeometry makeValid(Qgis::MakeValidMethod method=Qgis::MakeValidMethod::Linework, bool keepCollapsed=false) const
Attempts to make an invalid geometry valid without losing vertices.
QString lastError() const
Returns an error string referring to the last error encountered either when this geometry was created...
QgsGeometry combine(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing all the points in this geometry and other (a union geometry operation...
QgsGeometry variableWidthBufferByM(int segments) const
Calculates a variable width buffer for a (multi)linestring geometry, where the width at each node is ...
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false)
Transforms this geometry as described by the coordinate transform ct.
QgsMultiPointXY asMultiPoint() const
Returns the contents of the geometry as a multi-point.
QgsPoint vertexAt(int atVertex) const
Returns coordinates of a vertex.
bool disjoint(const QgsGeometry &geometry) const
Returns true if the geometry is disjoint of another geometry.
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
QgsGeometry roundWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized rounded (sine-like) waves along the boundary of the geometry,...
double distance(const QgsGeometry &geom) const
Returns the minimum distance between this geometry and another geometry.
QgsGeometry interpolate(double distance) const
Returns an interpolated point on the geometry at the specified distance.
QgsGeometry extrude(double x, double y)
Returns an extruded version of this geometry.
QgsGeometry singleSidedBuffer(double distance, int segments, Qgis::BufferSide side, Qgis::JoinStyle joinStyle=Qgis::JoinStyle::Round, double miterLimit=2.0) const
Returns a single sided buffer for a (multi)line geometry.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static QgsGeometry fromWkt(const QString &wkt)
Creates a new geometry from a WKT string.
bool contains(const QgsPointXY *p) const
Returns true if the geometry contains the point p.
QgsGeometry forceRHR() const
Forces geometries to respect the Right-Hand-Rule, in which the area that is bounded by a polygon is t...
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
bool isGeosValid(Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const
Checks validity of the geometry using GEOS.
QgsGeometry taperedBuffer(double startWidth, double endWidth, int segments) const
Calculates a variable width buffer ("tapered buffer") for a (multi)curve geometry.
bool within(const QgsGeometry &geometry) const
Returns true if the geometry is completely within another geometry.
QgsGeometry orientedMinimumBoundingBox(double &area, double &angle, double &width, double &height) const
Returns the oriented minimum bounding box for the geometry, which is the smallest (by area) rotated r...
double area() const
Returns the planar, 2-dimensional area of the geometry.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
QgsGeometry centroid() const
Returns the center of mass of a geometry.
bool crosses(const QgsGeometry &geometry) const
Returns true if the geometry crosses another geometry.
double hausdorffDistance(const QgsGeometry &geom) const
Returns the Hausdorff distance between this geometry and geom.
QgsGeometry concaveHull(double targetPercent, bool allowHoles=false) const
Returns a possibly concave polygon that contains all the points in the geometry.
QgsGeometry convexHull() const
Returns the smallest convex polygon that contains all the points in the geometry.
QgsGeometry sharedPaths(const QgsGeometry &other) const
Find paths shared between the two given lineal geometries (this and other).
void fromWkb(unsigned char *wkb, int length)
Set the geometry, feeding in the buffer containing OGC Well-Known Binary and the buffer's length.
QgsGeometry intersection(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points shared by this geometry and other.
QgsGeometry symDifference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Returns a geometry representing the points making up this geometry that do not make up other.
QgsGeometry minimalEnclosingCircle(QgsPointXY ¢er, double &radius, unsigned int segments=36) const
Returns the minimal enclosing circle for the geometry.
QgsGeometry mergeLines() const
Merges any connected lines in a LineString/MultiLineString geometry and converts them to single line ...
QgsGeometry buffer(double distance, int segments) const
Returns a buffer region around this geometry having the given width and with a specified number of se...
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
double distanceToVertex(int vertex) const
Returns the distance along this geometry from its first vertex to the specified vertex.
QgsAbstractGeometry::const_part_iterator const_parts_end() const
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry.
QgsAbstractGeometry::vertex_iterator vertices_begin() const
Returns STL-style iterator pointing to the first vertex of the geometry.
QgsGeometry forcePolygonClockwise() const
Forces geometries to respect the exterior ring is clockwise, interior rings are counter-clockwise con...
static QgsGeometry createWedgeBuffer(const QgsPoint ¢er, double azimuth, double angularWidth, double outerRadius, double innerRadius=0)
Creates a wedge shaped buffer from a center point.
QgsGeometry extendLine(double startDistance, double endDistance) const
Extends a (multi)line geometry by extrapolating out the start or end of the line by a specified dista...
QgsGeometry triangularWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized triangular waves along the boundary of the geometry, with the specified wavelen...
QgsGeometry squareWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized square waves along the boundary of the geometry, with the specified wavelength ...
QgsGeometry simplify(double tolerance) const
Returns a simplified version of this geometry using a specified tolerance value.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
Qgis::GeometryOperationResult rotate(double rotation, const QgsPointXY ¢er)
Rotate this geometry around the Z axis.
Qgis::GeometryOperationResult translate(double dx, double dy, double dz=0.0, double dm=0.0)
Translates this geometry by dx, dy, dz and dm.
double interpolateAngle(double distance) const
Returns the angle parallel to the linestring or polygon boundary at the specified distance along the ...
double angleAtVertex(int vertex) const
Returns the bisector angle for this geometry at the specified vertex.
QgsGeometry smooth(unsigned int iterations=1, double offset=0.25, double minimumDistance=-1.0, double maxAngle=180.0) const
Smooths a geometry by rounding off corners using the Chaikin algorithm.
QgsGeometry forcePolygonCounterClockwise() const
Forces geometries to respect the exterior ring is counter-clockwise, interior rings are clockwise con...
QString asWkt(int precision=17) const
Exports the geometry to WKT.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
bool intersects(const QgsRectangle &rectangle) const
Returns true if this geometry exactly intersects with a rectangle.
QgsAbstractGeometry::vertex_iterator vertices_end() const
Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry.
bool overlaps(const QgsGeometry &geometry) const
Returns true if the geometry overlaps another geometry.
QgsGeometry shortestLine(const QgsGeometry &other) const
Returns the shortest line joining this geometry to another geometry.
Does vector analysis using the geos library and handles import, export, exception handling*.
std::unique_ptr< QgsAbstractGeometry > maximumInscribedCircle(double tolerance, QString *errorMsg=nullptr) const
Returns the maximum inscribed circle.
Gradient color ramp, which smoothly interpolates between two colors and also supports optional extra ...
Represents a color stop within a QgsGradientColorRamp color ramp.
A representation of the interval between two datetime values.
bool isValid() const
Returns true if the interval is valid.
double days() const
Returns the interval duration in days.
double weeks() const
Returns the interval duration in weeks.
double months() const
Returns the interval duration in months (based on a 30 day month).
double seconds() const
Returns the interval duration in seconds.
double years() const
Returns the interval duration in years (based on an average year length)
double hours() const
Returns the interval duration in hours.
double minutes() const
Returns the interval duration in minutes.
Line string geometry type, with support for z-dimension and m-values.
QgsLineString * clone() const override
Clones the geometry by performing a deep copy.
Base class for all map layer types.
virtual QgsRectangle extent() const
Returns the extent of the layer.
QString source() const
Returns the source for the layer.
QString providerType() const
Returns the provider type (provider key) for this layer.
QgsCoordinateReferenceSystem crs
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
QgsLayerMetadata metadata
QString publicSource(bool hidePassword=false) const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
virtual bool isEditable() const
Returns true if the layer can be edited.
QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
double minimumScale() const
Returns the minimum map scale (i.e.
virtual Q_INVOKABLE QgsDataProvider * dataProvider()
Returns the layer's data provider, it may be nullptr.
double maximumScale() const
Returns the maximum map scale (i.e.
Implementation of GeometrySimplifier using the "MapToPixel" algorithm.
@ Visvalingam
The simplification gives each point in a line an importance weighting, so that least important points...
@ SimplifyGeometry
The geometries can be simplified using the current map2pixel context state.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
Multi line string geometry collection.
bool addGeometry(QgsAbstractGeometry *g) override
Adds a geometry and takes ownership. Returns true in case of success.
Multi point geometry collection.
bool addGeometry(QgsAbstractGeometry *g) override
Adds a geometry and takes ownership. Returns true in case of success.
Custom exception class which is raised when an operation is not supported.
static QgsGeometry geometryFromGML(const QString &xmlString, const QgsOgcUtils::Context &context=QgsOgcUtils::Context())
Static method that creates geometry from GML.
A class to represent a 2D point.
bool isEmpty() const
Returns true if the geometry is empty.
Point geometry type, with support for z-dimension and m-values.
double inclination(const QgsPoint &other) const
Calculates Cartesian inclination between this point and other one (starting from zenith = 0 to nadir ...
bool isValid(QString &error, Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const override
Checks validity of the geometry, and returns true if the geometry is valid.
QgsPoint project(double distance, double azimuth, double inclination=90.0) const
Returns a new point which corresponds to this point projected by a specified distance with specified ...
QgsRelationManager * relationManager
static QgsProject * instance()
Returns the QgsProject singleton instance.
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
Quadrilateral geometry type.
static QgsQuadrilateral squareFromDiagonal(const QgsPoint &p1, const QgsPoint &p2)
Construct a QgsQuadrilateral as a square from a diagonal.
QgsPolygon * toPolygon(bool force2D=false) const
Returns the quadrilateral as a new polygon.
static QgsQuadrilateral rectangleFrom3Points(const QgsPoint &p1, const QgsPoint &p2, const QgsPoint &p3, ConstructionOption mode)
Construct a QgsQuadrilateral as a Rectangle from 3 points.
ConstructionOption
A quadrilateral can be constructed from 3 points where the second distance can be determined by the t...
@ Distance
Second distance is equal to the distance between 2nd and 3rd point.
@ Projected
Second distance is equal to the distance of the perpendicular projection of the 3rd point on the segm...
The Field class represents a Raster Attribute Table field, including its name, usage and type.
The RasterBandStats struct is a container for statistics about a single raster band.
double mean
The mean cell value for the band. NO_DATA values are excluded.
double stdDev
The standard deviation of the cell values.
double minimumValue
The minimum cell value in the raster band.
double sum
The sum of all cells in the band. NO_DATA values are excluded.
double maximumValue
The maximum cell value in the raster band.
double range
The range is the distance between min & max.
A rectangle specified with double values.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double width() const
Returns the width of the rectangle.
double xMaximum() const
Returns the x maximum value (right side of rectangle).
double yMaximum() const
Returns the y maximum value (top side of rectangle).
QgsPointXY center() const
Returns the center point of the rectangle.
void grow(double delta)
Grows the rectangle in place by the specified amount.
double height() const
Returns the height of the rectangle.
Regular Polygon geometry type.
ConstructionOption
A regular polygon can be constructed inscribed in a circle or circumscribed about a circle.
@ CircumscribedCircle
Circumscribed about a circle (the radius is the distance from the center to the midpoints of the side...
@ InscribedCircle
Inscribed in a circle (the radius is the distance between the center and vertices)
QgsPolygon * toPolygon() const
Returns as a polygon.
QList< QgsRelation > relationsByName(const QString &name) const
Returns a list of relations with matching names.
Q_INVOKABLE QgsRelation relation(const QString &id) const
Gets access to a relation by its id.
QgsVectorLayer * referencedLayer
QgsVectorLayer * referencingLayer
QString getRelatedFeaturesFilter(const QgsFeature &feature) const
Returns a filter expression which returns all the features on the referencing (child) layer which hav...
A spatial index for QgsFeature objects.
@ FlagStoreFeatureGeometries
Indicates that the spatial index should also store feature geometries. This requires more memory,...
QList< QgsFeatureId > nearestNeighbor(const QgsPointXY &point, int neighbors=1, double maxDistance=0) const
Returns nearest neighbors to a point.
QList< QgsFeatureId > intersects(const QgsRectangle &rectangle) const
Returns a list of features with a bounding box which intersects the specified rectangle.
static QString quotedIdentifier(const QString &identifier)
Returns a properly quoted version of identifier.
static QString quotedValue(const QVariant &value)
Returns a properly quoted and escaped version of value for use in SQL strings.
c++ helper class for defining QgsExpression functions.
bool prepare(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
This will be called during the prepare step() of an expression if it is not static.
void setIsStaticFunction(const std::function< bool(const QgsExpressionNodeFunction *, QgsExpression *, const QgsExpressionContext *) > &isStatic)
Set a function that will be called in the prepare step to determine if the function is static or not.
QStringList aliases() const override
Returns a list of possible aliases for the function.
void setPrepareFunction(const std::function< bool(const QgsExpressionNodeFunction *, QgsExpression *, const QgsExpressionContext *)> &prepareFunc)
Set a function that will be called in the prepare step to determine if the function is static or not.
void setUsesGeometryFunction(const std::function< bool(const QgsExpressionNodeFunction *node)> &usesGeometry)
Set a function that will be called when determining if the function requires feature geometry or not.
bool isStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
Will be called during prepare to determine if the function is static.
void setIsStatic(bool isStatic)
Tag this function as either static or not static.
QgsStaticExpressionFunction(const QString &fnname, int params, FcnEval fcn, const QString &group, const QString &helpText=QString(), bool usesGeometry=false, const QSet< QString > &referencedColumns=QSet< QString >(), bool lazyEval=false, const QStringList &aliases=QStringList(), bool handlesNull=false)
Static function for evaluation against a QgsExpressionContext, using an unnamed list of parameter val...
QSet< QString > referencedColumns(const QgsExpressionNodeFunction *node) const override
Returns a set of field names which are required for this function.
bool usesGeometry(const QgsExpressionNodeFunction *node) const override
Does this function use a geometry object.
Utility functions for working with strings.
static int hammingDistance(const QString &string1, const QString &string2, bool caseSensitive=false)
Returns the Hamming distance between two strings.
static QString soundex(const QString &string)
Returns the Soundex representation of a string.
static int levenshteinDistance(const QString &string1, const QString &string2, bool caseSensitive=false)
Returns the Levenshtein edit distance between two strings.
static QString longestCommonSubstring(const QString &string1, const QString &string2, bool caseSensitive=false)
Returns the longest common substring between two strings.
static QString wordWrap(const QString &string, int length, bool useMaxLineLength=true, const QString &customDelimiter=QString())
Automatically wraps a string by inserting new line characters at appropriate locations in the string.
const QgsColorRamp * colorRampRef(const QString &name) const
Returns a const pointer to a symbol (doesn't create new instance)
static QgsStyle * defaultStyle(bool initialize=true)
Returns the default application-wide style.
static QColor decodeColor(const QString &str)
static QString encodeColor(const QColor &color)
static bool runOnMainThread(const Func &func, QgsFeedback *feedback=nullptr)
Guarantees that func is executed on the main thread.
This class allows including a set of layers in a database-side transaction, provided the layer data p...
virtual bool executeSql(const QString &sql, QString &error, bool isDirty=false, const QString &name=QString())=0
Execute the sql string.
static Q_INVOKABLE QString encodeUnit(Qgis::DistanceUnit unit)
Encodes a distance unit to a string.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
virtual QgsTransaction * transaction() const
Returns the transaction this data provider is included in, if any.
static bool validateAttribute(const QgsVectorLayer *layer, const QgsFeature &feature, int attributeIndex, QStringList &errors, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthNotSet, QgsFieldConstraints::ConstraintOrigin origin=QgsFieldConstraints::ConstraintOriginNotSet)
Tests a feature attribute value to check whether it passes all constraints which are present on the c...
Represents a vector layer which manages a vector based data sets.
long long featureCount(const QString &legendKey) const
Number of features rendered with specified legend key.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
QVariant aggregate(Qgis::Aggregate aggregate, const QString &fieldOrExpression, const QgsAggregateCalculator::AggregateParameters ¶meters=QgsAggregateCalculator::AggregateParameters(), QgsExpressionContext *context=nullptr, bool *ok=nullptr, QgsFeatureIds *fids=nullptr, QgsFeedback *feedback=nullptr, QString *error=nullptr) const
Calculates an aggregated value from the layer's features.
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
Q_INVOKABLE const QgsFeatureIds & selectedFeatureIds() const
Returns a list of the selected features IDs in this layer.
QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
QString displayExpression
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
QgsEditorWidgetSetup editorWidgetSetup(int index) const
The editor widget setup defines which QgsFieldFormatter and editor widget will be used for the field ...
QgsFeature getFeature(QgsFeatureId fid) const
Queries the layer for the feature with the given id.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
Handles the with_variable(name, value, node) expression function.
bool isStatic(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
Will be called during prepare to determine if the function is static.
QgsWithVariableExpressionFunction()
QVariant run(QgsExpressionNode::NodeList *args, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Evaluates the function, first evaluating all required arguments before passing them to the function's...
QVariant func(const QVariantList &values, const QgsExpressionContext *context, QgsExpression *parent, const QgsExpressionNodeFunction *node) override
Returns result of evaluating the function.
bool prepare(const QgsExpressionNodeFunction *node, QgsExpression *parent, const QgsExpressionContext *context) const override
This will be called during the prepare step() of an expression if it is not static.
static QString geometryDisplayString(Qgis::GeometryType type)
Returns a display string for a geometry type.
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
QString errorMessage() const
Returns the most recent error message encountered by the database.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
int exec(const QString &sql, QString &errorMessage) const
Executes the sql command in the database.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
int step()
Steps to the next record in the statement, returning the sqlite3 result code.
qlonglong columnAsInt64(int column) const
Gets column value from the current statement row as a long long integer (64 bits).
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
CORE_EXPORT QString build(const QVariantMap &map)
Build a hstore-formatted string from a QVariantMap.
CORE_EXPORT QVariantMap parse(const QString &string)
Returns a QVariantMap object containing the key and values from a hstore-formatted string.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into allowing algorithms to be written in pure substantial changes are required in order to port existing x Processing algorithms for QGIS x The most significant changes are outlined not GeoAlgorithm For algorithms which operate on features one by consider subclassing the QgsProcessingFeatureBasedAlgorithm class This class allows much of the boilerplate code for looping over features from a vector layer to be bypassed and instead requires implementation of a processFeature method Ensure that your algorithm(or algorithm 's parent class) implements the new pure virtual createInstance(self) call
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
uint qHash(const QVariant &variant)
Hash for QVariant.
bool qgsVariantLessThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is less than the second.
#define Q_NOWARN_DEPRECATED_POP
#define Q_NOWARN_DEPRECATED_PUSH
double qgsRound(double number, int places)
Returns a double number, rounded (as close as possible) to the specified number of places.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
QVector< QgsRingSequence > QgsCoordinateSequence
QVector< QgsPointSequence > QgsRingSequence
QVector< QgsPoint > QgsPointSequence
QList< QgsGradientStop > QgsGradientStopsList
List of gradient stops.
Q_DECLARE_METATYPE(QgsDatabaseQueryLogEntry)
Q_GLOBAL_STATIC(QReadWriteLock, sDefinitionCacheLock)
QList< QgsExpressionFunction * > ExpressionFunctionList
#define ENSURE_GEOM_TYPE(f, g, geomtype)
QVariant fcnRampColor(const QVariantList &values, const QgsExpressionContext *, QgsExpression *parent, const QgsExpressionNodeFunction *)
bool(QgsGeometry::* RelationFunction)(const QgsGeometry &geometry) const
#define ENSURE_NO_EVAL_ERROR
#define FEAT_FROM_CONTEXT(c, f)
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
QVector< QgsPointXY > QgsMultiPointXY
A collection of QgsPoints that share a common collection of attributes.
QPointer< QgsMapLayer > QgsWeakMapLayerPointer
Weak pointer for QgsMapLayer.
QLineF segment(int index, QRectF rect, double radius)
A bundle of parameters controlling aggregate calculation.
QString filter
Optional filter for calculating aggregate over a subset of features, or an empty string to use all fe...
QString delimiter
Delimiter to use for joining values with the StringConcatenate aggregate.
QgsFeatureRequest::OrderBy orderBy
Optional order by clauses.
Single variable definition for use within a QgsExpressionContextScope.
The Context struct stores the current layer and coordinate transform context.
const QgsMapLayer * layer
QgsCoordinateTransformContext transformContext
Utility class for identifying a unique vertex within a geometry.