Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmfieldcalculator.h 3 : : ---------------------- 4 : : begin : September 2020 5 : : copyright : (C) 2020 by Ivan Ivanov 6 : : email : ivan@opengis.ch 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 : : 19 : : #ifndef QGSALGORITHMFIELDSCALCULATOR_H 20 : : #define QGSALGORITHMFIELDSCALCULATOR_H 21 : : 22 : : #define SIP_NO_FILE 23 : : 24 : : #include "qgis_sip.h" 25 : : #include "qgsprocessingalgorithm.h" 26 : : 27 : : ///@cond PRIVATE 28 : : 29 : : /** 30 : : * Native field calculator algorithm. 31 : : */ 32 : 0 : class QgsFieldCalculatorAlgorithm : public QgsProcessingFeatureBasedAlgorithm 33 : : { 34 : : 35 : : public: 36 : : 37 : 0 : QgsFieldCalculatorAlgorithm() = default; 38 : : QString name() const override; 39 : : QString displayName() const override; 40 : : QStringList tags() const override; 41 : : QString group() const override; 42 : : QString groupId() const override; 43 : : QString shortHelpString() const override; 44 : : QList<int> inputLayerTypes() const override; 45 : : QgsFieldCalculatorAlgorithm *createInstance() const override SIP_FACTORY; 46 : : 47 : : protected: 48 : : void initParameters( const QVariantMap &configuration = QVariantMap() ) override; 49 : : QString outputName() const override; 50 : : QgsFields outputFields( const QgsFields &inputFields ) const override; 51 : : QgsProcessingFeatureSource::Flag sourceFlags() const override; 52 : : 53 : : bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 54 : : QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 55 : : bool supportInPlaceEdit( const QgsMapLayer *layer ) const override; 56 : : 57 : : private: 58 : : QgsFields mFields; 59 : : int mFieldIdx; 60 : : QgsExpression mExpression; 61 : : QgsExpressionContext mExpressionContext; 62 : : QgsDistanceArea mDa; 63 : : int mRowNumber; 64 : : }; 65 : : 66 : : ///@endcond PRIVATE 67 : : 68 : : #endif // QGSALGORITHMFIELDSCALCULATOR_H