37 if ( !input.isValid() )
40 if ( qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( input ) ) )
45 if ( input.type() == QVariant::String )
47 if ( input.toString().isEmpty() )
56 else if ( input.type() == QVariant::List )
58 if ( input.toList().isEmpty() )
61 const QVariantList layerList = input.toList();
62 for (
const QVariant &variantLayer : layerList )
64 if ( qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( variantLayer ) ) )
67 if ( variantLayer.type() == QVariant::String )
76 else if ( variantLayer.type() == QVariant::Map )
78 const QVariantMap layerMap = variantLayer.toMap();
80 if ( !layerMap.contains( QStringLiteral(
"layer" ) ) && !layerMap.contains( QStringLiteral(
"attributeIndex" ) ) )
95 if ( layerMap.value( QStringLiteral(
"attributeIndex" ) ).toInt() >= vectorLayer->
fields().
count() )
105 else if ( input.type() == QVariant::StringList )
107 const auto constToStringList = input.toStringList();
108 if ( constToStringList.isEmpty() )
114 for (
const QString &v : constToStringList )
128 const QList<QgsDxfExport::DxfLayer> layers =
parameterAsLayers( value, context );
131 QStringList layerDefParts;
133 if ( layer.layerOutputAttributeIndex() >= -1 )
136 const QString layerDef = QStringLiteral(
"{%1}" ).arg( layerDefParts.join(
',' ) );
139 return parts.join(
',' ).prepend(
'[' ).append(
']' );
144 switch ( outputType )
148 QString code = QStringLiteral(
"QgsProcessingParameterDxfLayers('%1', %2)" )
158 QList<QgsDxfExport::DxfLayer> layers;
160 if (
QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layersVariant ) ) )
165 if ( layersVariant.type() == QVariant::String )
168 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
170 else if ( layersVariant.type() == QVariant::List )
172 const QVariantList layersVariantList = layersVariant.toList();
173 for (
const QVariant &layerItem : layersVariantList )
175 if ( layerItem.type() == QVariant::Map )
177 const QVariantMap layerVariantMap = layerItem.toMap();
180 else if ( layerItem.type() == QVariant::String )
183 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
187 else if ( layersVariant.type() == QVariant::StringList )
189 const auto layersStringList = layersVariant.toStringList();
190 for (
const QString &layerItem : layersStringList )
193 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
202 const QVariant layerVariant = layerVariantMap[ QStringLiteral(
"layer" ) ];
205 if ( ( inputLayer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layerVariant ) ) ) )
218 QgsDxfExport::DxfLayer dxfLayer( inputLayer, layerVariantMap[ QStringLiteral(
"attributeIndex" ) ].toInt() );
225 if ( !layer.
layer() )
228 vm[ QStringLiteral(
"layer" )] = layer.
layer()->
id();
int count() const
Returns number of items.
Base class for all map layer types.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
Contains information about the context in which a processing algorithm is executed.
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.
QString name() const
Returns the name of the parameter.
static QVariantMap layerAsVariantMap(const QgsDxfExport::DxfLayer &layer)
Converts a single input layer to QVariant representation (a QVariantMap)
QgsProcessingParameterDefinition * clone() const override
Creates a clone of the parameter definition.
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...
QgsProcessingParameterDxfLayers(const QString &name, const QString &description=QString())
Constructor for QgsProcessingParameterDxfLayers.
QString type() const override
Unique parameter type name.
bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const override
Checks whether the specified input value is acceptable for the parameter.
static QgsDxfExport::DxfLayer variantMapAsLayer(const QVariantMap &layerVariantMap, QgsProcessingContext &context)
Converts a QVariant value (a QVariantMap) to a single input layer.
static QString typeName()
Returns the type name for the parameter class.
static QList< QgsDxfExport::DxfLayer > parameterAsLayers(const QVariant &layersVariant, QgsProcessingContext &context)
Converts a QVariant value (a QVariantList) to a list of input layers.
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...
static QString stringToPythonLiteral(const QString &string)
Converts a string to a Python string literal.
static QString normalizeLayerSource(const QString &source)
Normalizes a layer source string for safe comparison across different operating system environments.
static QString variantToPythonLiteral(const QVariant &value)
Converts a variant to a Python literal.
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProcessingContext &context, bool allowLoadingNewLayers=true, QgsProcessingUtils::LayerHint typeHint=QgsProcessingUtils::LayerHint::UnknownType)
Interprets a string as a map layer within the supplied context.
PythonOutputType
Available Python output types.
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.
Represents a vector layer which manages a vector based data sets.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
@ VectorLayer
Vector layer.
Layers and optional attribute index to split into multiple layers using attribute value as layer name...
QgsVectorLayer * layer() const
Returns the layer.
int layerOutputAttributeIndex() const
Returns the attribute index used to split into multiple layers.