Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprocessingparametervectortilewriterlayers.cpp 3 : : --------------------- 4 : : Date : April 2020 5 : : Copyright : (C) 2020 by Martin Dobias 6 : : Email : wonder dot sk at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsprocessingparametervectortilewriterlayers.h" 17 : : 18 : : #include "qgsvectorlayer.h" 19 : : 20 : : 21 : 0 : QgsProcessingParameterVectorTileWriterLayers::QgsProcessingParameterVectorTileWriterLayers( const QString &name, const QString &description ) 22 : 0 : : QgsProcessingParameterDefinition( name, description, QVariant(), false ) 23 : 0 : { 24 : 0 : } 25 : : 26 : 0 : QgsProcessingParameterDefinition *QgsProcessingParameterVectorTileWriterLayers::clone() const 27 : : { 28 : 0 : return new QgsProcessingParameterVectorTileWriterLayers( *this ); 29 : 0 : } 30 : : 31 : 0 : QString QgsProcessingParameterVectorTileWriterLayers::type() const 32 : : { 33 : 0 : return typeName(); 34 : : } 35 : : 36 : 0 : bool QgsProcessingParameterVectorTileWriterLayers::checkValueIsAcceptable( const QVariant &input, QgsProcessingContext *context ) const 37 : : { 38 : 0 : if ( !input.isValid() ) 39 : 0 : return mFlags & FlagOptional; 40 : : 41 : 0 : if ( input.type() != QVariant::List ) 42 : 0 : return false; 43 : : 44 : 0 : const QVariantList inputList = input.toList(); 45 : 0 : for ( const QVariant &inputItem : inputList ) 46 : : { 47 : 0 : if ( inputItem.type() != QVariant::Map ) 48 : 0 : return false; 49 : 0 : QVariantMap inputItemMap = inputItem.toMap(); 50 : : 51 : : // "layer" is required - pointing to a vector layer 52 : 0 : if ( !inputItemMap.contains( "layer" ) ) 53 : 0 : return false; 54 : : 55 : 0 : QVariant inputItemLayer = inputItemMap["layer"]; 56 : : 57 : 0 : if ( qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( inputItemLayer ) ) ) 58 : 0 : continue; 59 : : 60 : 0 : if ( !context ) 61 : 0 : continue; // when called without context, we will skip checking whether the layer can be resolved 62 : : 63 : 0 : if ( !QgsProcessingUtils::mapLayerFromString( inputItemLayer.toString(), *context ) ) 64 : 0 : return false; 65 : 0 : } 66 : : 67 : 0 : return true; 68 : 0 : } 69 : : 70 : 0 : QString QgsProcessingParameterVectorTileWriterLayers::valueAsPythonString( const QVariant &value, QgsProcessingContext &context ) const 71 : : { 72 : 0 : QStringList parts; 73 : 0 : const QList<QgsVectorTileWriter::Layer> layers = parameterAsLayers( value, context ); 74 : 0 : for ( const QgsVectorTileWriter::Layer &layer : layers ) 75 : : { 76 : 0 : QStringList layerDefParts; 77 : 0 : layerDefParts << QStringLiteral( "'layer': " ) + QgsProcessingUtils::stringToPythonLiteral( QgsProcessingUtils::normalizeLayerSource( layer.layer()->source() ) ); 78 : 0 : if ( !layer.filterExpression().isEmpty() ) 79 : 0 : layerDefParts << QStringLiteral( "'filterExpression': " ) + QgsProcessingUtils::variantToPythonLiteral( layer.filterExpression() ); 80 : 0 : if ( !layer.layerName().isEmpty() ) 81 : 0 : layerDefParts << QStringLiteral( "'layerName': " ) + QgsProcessingUtils::variantToPythonLiteral( layer.layerName() ); 82 : 0 : if ( layer.minZoom() >= 0 ) 83 : 0 : layerDefParts << QStringLiteral( "'minZoom': " ) + QgsProcessingUtils::variantToPythonLiteral( layer.minZoom() ); 84 : 0 : if ( layer.maxZoom() >= 0 ) 85 : 0 : layerDefParts << QStringLiteral( "'maxZoom': " ) + QgsProcessingUtils::variantToPythonLiteral( layer.maxZoom() ); 86 : : 87 : 0 : QString layerDef = QStringLiteral( "{ %1 }" ).arg( layerDefParts.join( ',' ) ); 88 : 0 : parts << layerDef; 89 : 0 : } 90 : 0 : return parts.join( ',' ).prepend( '[' ).append( ']' ); 91 : 0 : } 92 : : 93 : 0 : QString QgsProcessingParameterVectorTileWriterLayers::asPythonString( QgsProcessing::PythonOutputType outputType ) const 94 : : { 95 : 0 : switch ( outputType ) 96 : : { 97 : : case QgsProcessing::PythonQgsProcessingAlgorithmSubclass: 98 : : { 99 : 0 : QString code = QStringLiteral( "QgsProcessingParameterVectorTileWriterLayers('%1', '%2')" ).arg( name(), description() ); 100 : 0 : return code; 101 : 0 : } 102 : : } 103 : 0 : return QString(); 104 : 0 : } 105 : : 106 : 0 : QList<QgsVectorTileWriter::Layer> QgsProcessingParameterVectorTileWriterLayers::parameterAsLayers( const QVariant &layersVariant, QgsProcessingContext &context ) 107 : : { 108 : 0 : QList<QgsVectorTileWriter::Layer> layers; 109 : 0 : const QVariantList layersVariantList = layersVariant.toList(); 110 : 0 : for ( const QVariant &layerItem : layersVariantList ) 111 : : { 112 : 0 : QVariantMap layerVariantMap = layerItem.toMap(); 113 : 0 : layers << variantMapAsLayer( layerVariantMap, context ); 114 : 0 : } 115 : 0 : return layers; 116 : 0 : } 117 : : 118 : 0 : QgsVectorTileWriter::Layer QgsProcessingParameterVectorTileWriterLayers::variantMapAsLayer( const QVariantMap &layerVariantMap, QgsProcessingContext &context ) 119 : : { 120 : 0 : QVariant layerVariant = layerVariantMap["layer"]; 121 : : 122 : 0 : QgsVectorLayer *inputLayer = nullptr; 123 : 0 : if ( ( inputLayer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layerVariant ) ) ) ) 124 : : { 125 : : // good 126 : 0 : } 127 : 0 : else if ( ( inputLayer = qobject_cast< QgsVectorLayer * >( QgsProcessingUtils::mapLayerFromString( layerVariant.toString(), context ) ) ) ) 128 : : { 129 : : // good 130 : 0 : } 131 : : else 132 : : { 133 : : // bad 134 : : } 135 : : 136 : 0 : QgsVectorTileWriter::Layer writerLayer( inputLayer ); 137 : 0 : if ( layerVariantMap.contains( "filterExpression" ) ) 138 : 0 : writerLayer.setFilterExpression( layerVariantMap["filterExpression"].toString() ); 139 : 0 : if ( layerVariantMap.contains( "minZoom" ) ) 140 : 0 : writerLayer.setMinZoom( layerVariantMap["minZoom"].toInt() ); 141 : 0 : if ( layerVariantMap.contains( "maxZoom" ) ) 142 : 0 : writerLayer.setMaxZoom( layerVariantMap["maxZoom"].toInt() ); 143 : 0 : if ( layerVariantMap.contains( "layerName" ) ) 144 : 0 : writerLayer.setLayerName( layerVariantMap["layerName"].toString() ); 145 : : 146 : 0 : return writerLayer; 147 : 0 : } 148 : : 149 : 0 : QVariantMap QgsProcessingParameterVectorTileWriterLayers::layerAsVariantMap( const QgsVectorTileWriter::Layer &layer ) 150 : : { 151 : 0 : QVariantMap vm; 152 : 0 : if ( !layer.layer() ) 153 : 0 : return vm; 154 : : 155 : 0 : vm["layer"] = layer.layer()->id(); 156 : 0 : vm["minZoom"] = layer.minZoom(); 157 : 0 : vm["maxZoom"] = layer.maxZoom(); 158 : 0 : vm["layerName"] = layer.layerName(); 159 : 0 : vm["filterExpression"] = layer.filterExpression(); 160 : 0 : return vm; 161 : 0 : }