Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsetmvalue.cpp 3 : : --------------------- 4 : : begin : November 2019 5 : : copyright : (C) 2019 by Alexander Bruy 6 : : email : alexander dot bruy at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsalgorithmsetmvalue.h" 19 : : #include "qgsvectorlayer.h" 20 : : 21 : : ///@cond PRIVATE 22 : : 23 : 0 : QString QgsSetMValueAlgorithm::name() const 24 : : { 25 : 0 : return QStringLiteral( "setmvalue" ); 26 : : } 27 : : 28 : 0 : QString QgsSetMValueAlgorithm::displayName() const 29 : : { 30 : 0 : return QObject::tr( "Set M value" ); 31 : : } 32 : : 33 : 0 : QStringList QgsSetMValueAlgorithm::tags() const 34 : : { 35 : 0 : return QObject::tr( "set,add,m,measure,values" ).split( ',' ); 36 : 0 : } 37 : : 38 : 0 : QString QgsSetMValueAlgorithm::group() const 39 : : { 40 : 0 : return QObject::tr( "Vector geometry" ); 41 : : } 42 : : 43 : 0 : QString QgsSetMValueAlgorithm::groupId() const 44 : : { 45 : 0 : return QStringLiteral( "vectorgeometry" ); 46 : : } 47 : : 48 : 0 : QString QgsSetMValueAlgorithm::shortHelpString() const 49 : : { 50 : 0 : return QObject::tr( "This algorithm sets the M value for geometries in a layer.\n\n" 51 : : "If M values already exist in the layer, they will be overwritten " 52 : : "with the new value. If no M values exist, the geometry will be " 53 : : "upgraded to include M values and the specified value used as " 54 : : "the initial M value for all geometries." ); 55 : : } 56 : : 57 : 0 : QString QgsSetMValueAlgorithm::outputName() const 58 : : { 59 : 0 : return QObject::tr( "M Added" ); 60 : : } 61 : : 62 : 0 : QgsSetMValueAlgorithm *QgsSetMValueAlgorithm::createInstance() const 63 : : { 64 : 0 : return new QgsSetMValueAlgorithm(); 65 : 0 : } 66 : : 67 : 0 : bool QgsSetMValueAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const 68 : : { 69 : 0 : const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l ); 70 : 0 : if ( !layer ) 71 : 0 : return false; 72 : : 73 : 0 : return QgsProcessingFeatureBasedAlgorithm::supportInPlaceEdit( l ) && QgsWkbTypes::hasM( layer->wkbType() ); 74 : 0 : } 75 : : 76 : 0 : QgsProcessingFeatureSource::Flag QgsSetMValueAlgorithm::sourceFlags() const 77 : : { 78 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 79 : : } 80 : : 81 : 0 : QgsWkbTypes::Type QgsSetMValueAlgorithm::outputWkbType( QgsWkbTypes::Type type ) const 82 : : { 83 : 0 : return QgsWkbTypes::addM( type ); 84 : : } 85 : : 86 : 0 : void QgsSetMValueAlgorithm::initParameters( const QVariantMap & ) 87 : : { 88 : 0 : auto mValueParam = std::make_unique < QgsProcessingParameterNumber >( QStringLiteral( "M_VALUE" ), QObject::tr( "M Value" ), QgsProcessingParameterNumber::Double, 0.0 ); 89 : 0 : mValueParam->setIsDynamic( true ); 90 : 0 : mValueParam->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "M_VALUE" ), QObject::tr( "M Value" ), QgsPropertyDefinition::Double ) ); 91 : 0 : mValueParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) ); 92 : 0 : addParameter( mValueParam.release() ); 93 : 0 : } 94 : : 95 : 0 : bool QgsSetMValueAlgorithm::prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback * ) 96 : : { 97 : 0 : mMValue = parameterAsDouble( parameters, QStringLiteral( "M_VALUE" ), context ); 98 : 0 : mDynamicMValue = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "M_VALUE" ) ); 99 : 0 : if ( mDynamicMValue ) 100 : 0 : mMValueProperty = parameters.value( QStringLiteral( "M_VALUE" ) ).value< QgsProperty >(); 101 : : 102 : 0 : return true; 103 : 0 : } 104 : : 105 : 0 : QgsFeatureList QgsSetMValueAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * ) 106 : : { 107 : 0 : QgsFeature f = feature; 108 : : 109 : 0 : if ( f.hasGeometry() ) 110 : : { 111 : 0 : std::unique_ptr< QgsAbstractGeometry > newGeometry( f.geometry().constGet()->clone() ); 112 : : // addMValue won't alter existing M values, so drop them first 113 : 0 : if ( QgsWkbTypes::hasM( newGeometry->wkbType() ) ) 114 : 0 : newGeometry->dropMValue(); 115 : : 116 : 0 : double m = mMValue; 117 : 0 : if ( mDynamicMValue ) 118 : 0 : m = mMValueProperty.valueAsDouble( context.expressionContext(), m ); 119 : : 120 : 0 : newGeometry->addMValue( m ); 121 : : 122 : 0 : f.setGeometry( QgsGeometry( std::move( newGeometry ) ) ); 123 : 0 : } 124 : : 125 : 0 : return QgsFeatureList() << f; 126 : 0 : } 127 : : 128 : : ///@endcond