QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsprocessingbatchalgorithmdialogbase.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsprocessingalgorithmdialogbase.h
3 ----------------------------------
4 Date : November 2017
5 Copyright : (C) 2017 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSPROCESSINGBATCHALGORITHMDIALOGBASE_H
17#define QGSPROCESSINGBATCHALGORITHMDIALOGBASE_H
18
19#include "qgis.h"
20#include "qgis_gui.h"
22
23#include <QElapsedTimer>
24
27
29
30
37class GUI_EXPORT QgsProcessingBatchAlgorithmDialogBase : public QgsProcessingAlgorithmDialogBase
38{
39 Q_OBJECT
40
41 public:
45 QgsProcessingBatchAlgorithmDialogBase( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags flags = Qt::WindowFlags() );
46 ~QgsProcessingBatchAlgorithmDialogBase() override;
47
48 void resetAdditionalGui() override;
49 void blockAdditionalControlsWhileRunning() override;
50
51 public slots:
52
56 virtual void runAsSingle() = 0; // cppcheck-suppress pureVirtualCall
57
58 protected slots:
59
60 void algExecuted( bool successful, const QVariantMap &results ) override;
61
62 protected:
63 bool isFinalized() override;
64
69 void execute( const QList<QVariantMap> &parameters );
70
76 virtual QgsProcessingContext *createContext( QgsProcessingFeedback *feedback ) = 0 SIP_FACTORY;
77
81 virtual void handleAlgorithmResults( QgsProcessingAlgorithm *algorithm, QgsProcessingContext &context, QgsProcessingFeedback *feedback, const QVariantMap &parameters ) = 0;
82
86 virtual void loadHtmlResults( const QVariantMap &results, int index ) = 0;
87
91 virtual void createSummaryTable( const QList<QVariantMap> &results, const QList<QVariantMap> &errors ) = 0;
92
93 private slots:
94
95 void onTaskComplete( bool ok, const QVariantMap &results );
96 void taskTriggered( QgsTask *task );
97
98 private:
99 void executeNext();
100 void allTasksComplete( bool canceled );
101
102 QPushButton *mButtonRunSingle = nullptr;
103
104 int mCurrentStep = 0;
105 int mTotalSteps = 0;
106 QList<QVariantMap> mQueuedParameters;
107 QVariantMap mCurrentParameters;
108 QPointer<QgsProxyProgressTask> mProxyTask;
109 std::unique_ptr<QgsProcessingFeedback> mFeedback;
110 std::unique_ptr<QgsProcessingBatchFeedback> mBatchFeedback;
111 std::unique_ptr<QgsProcessingContext> mTaskContext;
112 QList<QVariantMap> mResults;
113 QList<QVariantMap> mErrors;
114 QElapsedTimer mTotalTimer;
115 QElapsedTimer mCurrentStepTimer;
116};
117
119
120#endif // QGSPROCESSINGBATCHALGORITHMDIALOGBASE_H
Abstract base class for processing algorithms.
Processing feedback subclass for use when batch processing.
Contains information about the context in which a processing algorithm is executed.
Base class for providing feedback from a processing algorithm.
A QgsTask shell which proxies progress reports.
Abstract base class for long running background tasks.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into allowing algorithms to be written in pure substantial changes are required in order to port existing x Processing algorithms for QGIS x The most significant changes are outlined not GeoAlgorithm For algorithms which operate on features one by consider subclassing the QgsProcessingFeatureBasedAlgorithm class This class allows much of the boilerplate code for looping over features from a vector layer to be bypassed and instead requires implementation of a processFeature method Ensure that your algorithm(or algorithm 's parent class) implements the new pure virtual createInstance(self) call
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
#define SIP_FACTORY
Definition qgis_sip.h:76