QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsalgorithmaggregate.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmaggregate.h
3 ---------------------------------
4 begin : June 2020
5 copyright : (C) 2020 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 QGSALGORITHMAGGREGATE_H
19#define QGSALGORITHMAGGREGATE_H
20
21#define SIP_NO_FILE
22
23#include "qgis_sip.h"
25#include "qgsdistancearea.h"
26
28
32class QgsAggregateAlgorithm : public QgsProcessingAlgorithm
33{
34
35 public:
36
37 QgsAggregateAlgorithm() = 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 QgsAggregateAlgorithm *createInstance() const override SIP_FACTORY;
45 void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
46
47 protected:
48
49 bool prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
50 QVariantMap processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
51
52 bool supportInPlaceEdit( const QgsMapLayer *layer ) const override;
53
54 private:
55
56 QgsExpression createExpression( const QString &expressionString, QgsProcessingContext &context ) const;
57
58 std::unique_ptr< QgsProcessingFeatureSource > mSource;
59 QString mGroupBy;
60
61 QgsExpression mGroupByExpression;
62 QgsExpression mGeometryExpression;
63
64 QgsFields mFields;
65 QList< QgsExpression > mExpressions;
66 QList< int > mAttributesRequireLastFeature;
68
69 struct Group
70 {
71 QgsFeatureSink *sink = nullptr;
72 QgsMapLayer *layer = nullptr;
73 QgsFeature firstFeature;
74 QgsFeature lastFeature;
75 };
76
77};
78
80
81#endif // QGSALGORITHMAGGREGATE_H
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
Class for parsing and evaluation of expressions (formerly called "search strings").
An interface for objects which accept features via addFeature(s) methods.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
Container of fields for a vector layer.
Definition: qgsfields.h:45
Base class for all map layer types.
Definition: qgsmaplayer.h:75
Abstract base class for processing algorithms.
virtual QgsProcessingAlgorithm * createInstance() const =0
Creates a new instance of the algorithm class.
virtual QString group() const
Returns the name of the group this algorithm belongs to.
virtual QString groupId() const
Returns the unique ID of the group this algorithm belongs to.
virtual QString shortHelpString() const
Returns a localised short helper string for the algorithm.
virtual QString displayName() const =0
Returns the translated algorithm name, which should be used for any user-visible display of the algor...
virtual QStringList tags() const
Returns a list of tags which relate to the algorithm, and are used to assist users in searching for s...
virtual QString name() const =0
Returns the algorithm name, used for identifying the algorithm.
Contains information about the context in which a processing algorithm is executed.
Base class for providing feedback from a processing algorithm.
#define SIP_FACTORY
Definition: qgis_sip.h:76