23 , mParentLayerParameterName( parentLayerParameterName )
39 if ( !input.isValid() )
42 if ( input.type() != QVariant::List )
45 const QVariantList inputList = input.toList();
46 for (
const QVariant &inputItem : inputList )
48 if ( inputItem.type() != QVariant::Map )
51 const QVariantMap inputItemMap = inputItem.toMap();
53 if ( !inputItemMap.contains(
"name" ) )
55 if ( !inputItemMap.contains(
"type" ) )
57 if ( !inputItemMap.contains(
"input" ) )
59 if ( !inputItemMap.contains(
"aggregate" ) )
77 QString code = QStringLiteral(
"QgsProcessingParameterAggregate('%1', '%2'" ).arg(
name(),
description() );
78 if ( !mParentLayerParameterName.isEmpty() )
82 code += QLatin1String(
", optional=True" );
93 map.insert( QStringLiteral(
"parent_layer" ), mParentLayerParameterName );
100 mParentLayerParameterName = map.value( QStringLiteral(
"parent_layer" ) ).toString();
107 if ( !mParentLayerParameterName.isEmpty() )
108 depends << mParentLayerParameterName;
114 return mParentLayerParameterName;
119 mParentLayerParameterName =
name;
Contains information about the context in which a processing algorithm is executed.
bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const override
Checks whether the specified input value is acceptable for the parameter.
QStringList dependsOnOtherParameters() const override
Returns a list of other parameter names on which this parameter is dependent (e.g.
QString type() const override
Unique parameter type name.
static QString typeName()
Returns the type name for the parameter class.
void setParentLayerParameterName(const QString &name)
Sets the name of the parent layer parameter.
QgsProcessingParameterDefinition * clone() const override
Creates a clone of the parameter definition.
QString parentLayerParameterName() const
Returns the name of the parent layer parameter, or an empty string if this is not set.
QVariantMap toVariantMap() const override
Saves this parameter to a QVariantMap.
QString valueAsPythonString(const QVariant &value, QgsProcessingContext &context) const override
Returns a string version of the parameter input value, which is suitable for use as an input paramete...
QgsProcessingParameterAggregate(const QString &name, const QString &description=QString(), const QString &parentLayerParameterName=QString(), bool optional=false)
Constructor for QgsProcessingParameterAggregate.
QString asPythonString(QgsProcessing::PythonOutputType outputType=QgsProcessing::PythonQgsProcessingAlgorithmSubclass) const override
Returns the parameter definition as a Python command which can be used within a Python Processing scr...
bool fromVariantMap(const QVariantMap &map) override
Restores this parameter to a QVariantMap.
Base class for the definition of processing parameters.
Flags mFlags
Parameter flags.
QString description() const
Returns the description for the parameter.
@ FlagOptional
Parameter is optional.
virtual QVariantMap toVariantMap() const
Saves this parameter to a QVariantMap.
QString name() const
Returns the name of the parameter.
virtual bool fromVariantMap(const QVariantMap &map)
Restores this parameter to a QVariantMap.
static QString stringToPythonLiteral(const QString &string)
Converts a string to a Python string literal.
static QString variantToPythonLiteral(const QVariant &value)
Converts a variant to a Python literal.
PythonOutputType
Available Python output types.
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.