Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsplitfeaturesbyattributecharacter.h 3 : : --------------------- 4 : : begin : September 2019 5 : : copyright : (C) 2019 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 : : #ifndef QGSALGORITHMSPLITFEATURESBYATTRIBUTECHARACTER_H 19 : : #define QGSALGORITHMSPLITFEATURESBYATTRIBUTECHARACTER_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : 26 : : #include <QRegularExpression> 27 : : 28 : : ///@cond PRIVATE 29 : : 30 : : /** 31 : : * Native explode lines algorithm. 32 : : */ 33 : 0 : class QgsSplitFeaturesByAttributeCharacterAlgorithm : public QgsProcessingFeatureBasedAlgorithm 34 : : { 35 : : 36 : : public: 37 : : 38 : 0 : QgsSplitFeaturesByAttributeCharacterAlgorithm() = default; 39 : : QString name() const override; 40 : : QString displayName() const override; 41 : : QStringList tags() const override; 42 : : QString group() const override; 43 : : QString groupId() const override; 44 : : QString shortHelpString() const override; 45 : : QString shortDescription() const override; 46 : : QList<int> inputLayerTypes() const override; 47 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 48 : : QgsProcessing::SourceType outputLayerType() const override; 49 : : QgsSplitFeaturesByAttributeCharacterAlgorithm *createInstance() const override SIP_FACTORY; 50 : : QgsFields outputFields( const QgsFields &inputFields ) const override; 51 : : 52 : : protected: 53 : : QString outputName() const override; 54 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 55 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 56 : : QgsFeatureSink::SinkFlags sinkFlags() const override; 57 : : private: 58 : : QString mFieldName; 59 : 0 : mutable int mFieldIndex = -1; 60 : : QString mChar; 61 : 0 : bool mUseRegex = false; 62 : : QRegularExpression mRegex; 63 : : 64 : : }; 65 : : 66 : : ///@endcond PRIVATE 67 : : 68 : : #endif // QGSALGORITHMSPLITFEATURESBYATTRIBUTECHARACTER_H 69 : : 70 : :