22using namespace Qt::StringLiterals;
41 if ( !input.isValid() )
51 if ( input.userType() == QMetaType::Type::QString )
53 if ( input.toString().isEmpty() )
62 else if ( input.userType() == QMetaType::Type::QVariantList )
64 if ( input.toList().isEmpty() )
67 const QVariantList layerList = input.toList();
68 for (
const QVariant &variantLayer : layerList )
79 if ( variantLayer.userType() == QMetaType::Type::QString )
88 else if ( variantLayer.userType() == QMetaType::Type::QVariantMap )
90 const QVariantMap layerMap = variantLayer.toMap();
92 if ( !layerMap.contains( u
"layer"_s ) &&
93 !layerMap.contains( u
"attributeIndex"_s ) &&
94 !layerMap.contains( u
"overriddenLayerName"_s ) &&
95 !layerMap.contains( u
"buildDataDefinedBlocks"_s ) &&
96 !layerMap.contains( u
"dataDefinedBlocksMaximumNumberOfClasses"_s ) )
103 if ( !vectorLayer || !vectorLayer->
isSpatial() )
106 if ( layerMap.value( u
"attributeIndex"_s ).toInt() >= vectorLayer->
fields().
count() )
116 else if ( input.userType() == QMetaType::Type::QStringList )
118 const auto constToStringList = input.toStringList();
119 if ( constToStringList.isEmpty() )
125 for (
const QString &v : constToStringList )
145 const QList<QgsDxfExport::DxfLayer> layers =
parameterAsLayers( value, context );
148 QStringList layerDefParts;
151 if ( layer.layerOutputAttributeIndex() >= -1 )
160 const QString layerDef = u
"{%1}"_s.arg( layerDefParts.join(
',' ) );
163 return parts.join(
',' ).prepend(
'[' ).append(
']' );
168 switch ( outputType )
172 QString code = u
"QgsProcessingParameterDxfLayers('%1', %2)"_s
192 QList<QgsDxfExport::DxfLayer> layers;
194 if (
QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layersVariant ) ) )
199 if ( layersVariant.userType() == QMetaType::Type::QString )
202 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
204 else if ( layersVariant.userType() == QMetaType::Type::QVariantList )
206 const QVariantList layersVariantList = layersVariant.toList();
207 for (
const QVariant &layerItem : layersVariantList )
209 if ( layerItem.userType() == QMetaType::Type::QVariantMap )
211 const QVariantMap layerVariantMap = layerItem.toMap();
214 else if ( layerItem.userType() == QMetaType::Type::QString )
217 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
221 else if ( layersVariant.userType() == QMetaType::Type::QStringList )
223 const auto layersStringList = layersVariant.toStringList();
224 for (
const QString &layerItem : layersStringList )
227 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
236 const QVariant layerVariant = layerVariantMap[ u
"layer"_s ];
239 if ( ( inputLayer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layerVariant ) ) ) )
253 layerVariantMap[ u
"attributeIndex"_s ].toInt(),
254 layerVariantMap[ u
"buildDataDefinedBlocks"_s ].toBool(),
255 layerVariantMap[ u
"dataDefinedBlocksMaximumNumberOfClasses"_s ].toInt(),
256 layerVariantMap[ u
"overriddenLayerName"_s ].toString() );
263 if ( !layer.
layer() )
266 vm[ u
"layer"_s] = layer.
layer()->
id();
@ Optional
Parameter is optional.
Base class for all map layer types.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
Contains information about the context in which a processing algorithm is executed.
QString valueAsStringPrivate(const QVariant &value, QgsProcessingContext &context, bool &ok, ValueAsStringFlags flags) const
Internal method for evaluating values as string.
Qgis::ProcessingParameterFlags mFlags
Parameter flags.
@ AllowMapLayerValues
Enable map layer value handling.
QString description() const
Returns the description for the parameter.
QgsProcessingParameterDefinition(const QString &name, const QString &description=QString(), const QVariant &defaultValue=QVariant(), bool optional=false, const QString &help=QString())
Constructor for QgsProcessingParameterDefinition.
QString name() const
Returns the name of the parameter.
QVariant valueAsJsonObjectPrivate(const QVariant &value, QgsProcessingContext &context, ValueAsStringFlags flags) const
Internal method for evaluating values as JSON objects.
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...
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...
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.
QString valueAsString(const QVariant &value, QgsProcessingContext &context, bool &ok) const override
Returns a string version of the parameter input value (if possible).
static QList< QgsDxfExport::DxfLayer > parameterAsLayers(const QVariant &layersVariant, QgsProcessingContext &context)
Converts a QVariant value (a QVariantList) to a list of input layers.
QVariant valueAsJsonObject(const QVariant &value, QgsProcessingContext &context) const override
Returns a version of the parameter input value, which is suitable for use in a JSON object.
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, QgsProcessing::LayerOptionsFlags flags=QgsProcessing::LayerOptionsFlags())
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 dataset.
bool isSpatial() const final
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
Layers and optional attribute index to split into multiple layers using attribute value as layer name...
QString overriddenName() const
Returns the overridden layer name to be used in the exported DXF.
bool buildDataDefinedBlocks() const
Flag if data defined point block symbols should be created.
QgsVectorLayer * layer() const
Returns the layer.
int dataDefinedBlocksMaximumNumberOfClasses() const
Returns the maximum number of data defined symbol classes for which blocks are created.
int layerOutputAttributeIndex() const
Returns the attribute index used to split into multiple layers.