Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmreverselinedirection.cpp 3 : : ------------------------------------ 4 : : begin : July 2018 5 : : copyright : (C) 2018 by Nyall Dawson 6 : : email : nyall dot dawson 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 "qgsalgorithmreverselinedirection.h" 19 : : #include "qgscurve.h" 20 : : #include "qgsgeometrycollection.h" 21 : : 22 : : ///@cond PRIVATE 23 : : 24 : 0 : QString QgsReverseLineDirectionAlgorithm ::name() const 25 : : { 26 : 0 : return QStringLiteral( "reverselinedirection" ); 27 : : } 28 : : 29 : 0 : QString QgsReverseLineDirectionAlgorithm ::displayName() const 30 : : { 31 : 0 : return QObject::tr( "Reverse line direction" ); 32 : : } 33 : : 34 : 0 : QStringList QgsReverseLineDirectionAlgorithm ::tags() const 35 : : { 36 : 0 : return QObject::tr( "swap,reverse,switch,flip,linestring,orientation" ).split( ',' ); 37 : 0 : } 38 : : 39 : 0 : QString QgsReverseLineDirectionAlgorithm ::group() const 40 : : { 41 : 0 : return QObject::tr( "Vector geometry" ); 42 : : } 43 : : 44 : 0 : QString QgsReverseLineDirectionAlgorithm ::groupId() const 45 : : { 46 : 0 : return QStringLiteral( "vectorgeometry" ); 47 : : } 48 : : 49 : 0 : QString QgsReverseLineDirectionAlgorithm ::outputName() const 50 : : { 51 : 0 : return QObject::tr( "Reversed" ); 52 : : } 53 : : 54 : 0 : QString QgsReverseLineDirectionAlgorithm ::shortHelpString() const 55 : : { 56 : 0 : return QObject::tr( "This algorithm reverses the direction of curve or LineString geometries." ); 57 : : } 58 : : 59 : 0 : QString QgsReverseLineDirectionAlgorithm::shortDescription() const 60 : : { 61 : 0 : return QObject::tr( "Reverses the direction of curve or LineString geometries." ); 62 : : } 63 : : 64 : 0 : QgsReverseLineDirectionAlgorithm *QgsReverseLineDirectionAlgorithm ::createInstance() const 65 : : { 66 : 0 : return new QgsReverseLineDirectionAlgorithm(); 67 : : } 68 : : 69 : 0 : QgsProcessing::SourceType QgsReverseLineDirectionAlgorithm::outputLayerType() const 70 : : { 71 : 0 : return QgsProcessing::TypeVectorLine; 72 : : } 73 : : 74 : 0 : QList<int> QgsReverseLineDirectionAlgorithm::inputLayerTypes() const 75 : : { 76 : 0 : return QList<int>() << QgsProcessing::TypeVectorLine; 77 : 0 : } 78 : : 79 : 0 : QgsProcessingFeatureSource::Flag QgsReverseLineDirectionAlgorithm ::sourceFlags() const 80 : : { 81 : : // this algorithm doesn't care about invalid geometries 82 : 0 : return QgsProcessingFeatureSource::FlagSkipGeometryValidityChecks; 83 : : } 84 : : 85 : 0 : QgsFeatureList QgsReverseLineDirectionAlgorithm ::processFeature( const QgsFeature &f, QgsProcessingContext &, QgsProcessingFeedback * ) 86 : : { 87 : 0 : QgsFeature feature = f; 88 : 0 : if ( feature.hasGeometry() ) 89 : : { 90 : 0 : const QgsGeometry geom = feature.geometry(); 91 : 0 : if ( !geom.isMultipart() ) 92 : : { 93 : 0 : const QgsCurve *curve = qgsgeometry_cast< const QgsCurve * >( geom.constGet() ); 94 : 0 : if ( curve ) 95 : : { 96 : 0 : std::unique_ptr< QgsCurve > reversed( curve->reversed() ); 97 : 0 : if ( !reversed ) 98 : : { 99 : : // can this even happen? 100 : 0 : throw QgsProcessingException( QObject::tr( "Error reversing line" ) ); 101 : : } 102 : 0 : const QgsGeometry outGeom( std::move( reversed ) ); 103 : 0 : feature.setGeometry( outGeom ); 104 : 0 : } 105 : 0 : } 106 : : else 107 : : { 108 : 0 : std::unique_ptr< QgsAbstractGeometry > dest( geom.constGet()->createEmptyWithSameType() ); 109 : 0 : const QgsGeometryCollection *collection = qgsgeometry_cast< const QgsGeometryCollection * >( geom.constGet() ); 110 : 0 : QgsGeometryCollection *destCollection = qgsgeometry_cast< QgsGeometryCollection * >( dest.get() ); 111 : 0 : destCollection->reserve( collection->numGeometries() ); 112 : 0 : for ( int i = 0; i < collection->numGeometries(); ++i ) 113 : : { 114 : 0 : const QgsCurve *curve = qgsgeometry_cast< const QgsCurve *>( collection->geometryN( i ) ); 115 : 0 : if ( curve ) 116 : : { 117 : 0 : std::unique_ptr< QgsCurve > reversed( curve->reversed() ); 118 : 0 : if ( !reversed ) 119 : : { 120 : : // can this even happen? 121 : 0 : throw QgsProcessingException( QObject::tr( "Error reversing line" ) ); 122 : : } 123 : 0 : destCollection->addGeometry( reversed.release() ); 124 : 0 : } 125 : 0 : } 126 : 0 : const QgsGeometry outGeom( std::move( dest ) ); 127 : 0 : feature.setGeometry( outGeom ); 128 : 0 : } 129 : 0 : } 130 : 0 : return QgsFeatureList() << feature; 131 : 0 : } 132 : : 133 : : ///@endcond