20 , mParentLayerParameterName( parentLayerParameterName )
36 if ( !input.isValid() )
39 if ( input.userType() != QMetaType::Type::QVariantList )
42 const QVariantList inputList = input.toList();
43 for (
const QVariant &inputItem : inputList )
45 if ( inputItem.userType() != QMetaType::Type::QVariantMap )
48 const QVariantMap inputItemMap = inputItem.toMap();
50 if ( !inputItemMap.contains(
"name" ) )
52 if ( !inputItemMap.contains(
"type" ) )
54 if ( !inputItemMap.contains(
"expression" ) )
72 QString code = QStringLiteral(
"QgsProcessingParameterFieldMapping('%1', %2" )
74 if ( !mParentLayerParameterName.isEmpty() )
78 code += QLatin1String(
", optional=True" );
89 map.insert( QStringLiteral(
"parent_layer" ), mParentLayerParameterName );
96 mParentLayerParameterName = map.value( QStringLiteral(
"parent_layer" ) ).toString();
103 if ( !mParentLayerParameterName.isEmpty() )
104 depends << mParentLayerParameterName;
110 return mParentLayerParameterName;
115 mParentLayerParameterName =
name;
@ Optional
Parameter is optional.
Contains information about the context in which a processing algorithm is executed.
Base class for the definition of processing parameters.
Qgis::ProcessingParameterFlags mFlags
Parameter flags.
QString description() const
Returns the description for the parameter.
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.
A parameter for "field mapping" configurations, which consist of a definition of desired output field...
QgsProcessingParameterFieldMapping(const QString &name, const QString &description=QString(), const QString &parentLayerParameterName=QString(), bool optional=false)
Constructor for QgsProcessingParameterFieldMapping.
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...
QString asPythonString(QgsProcessing::PythonOutputType outputType=QgsProcessing::PythonOutputType::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.
void setParentLayerParameterName(const QString &name)
Sets the name of the parent layer parameter.
QString parentLayerParameterName() const
Returns the name of the parent layer parameter, or an empty string if this is not set.
bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const override
Checks whether the specified input value is acceptable for the parameter.
static QString typeName()
Returns the type name for the parameter class.
QStringList dependsOnOtherParameters() const override
Returns a list of other parameter names on which this parameter is dependent (e.g.
QgsProcessingParameterDefinition * clone() const override
Creates a clone of the parameter definition.
QVariantMap toVariantMap() const override
Saves this parameter to a QVariantMap.
QString type() const override
Unique parameter type name.
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.