QGIS API Documentation 4.3.0-Master (729d6602d19)
Loading...
Searching...
No Matches
qgsprocessingregistry.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsprocessingregistry.cpp
3 --------------------------
4 begin : December 2016
5 copyright : (C) 2016 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
19
32#include "qgsvectorfilewriter.h"
33
34#include <QString>
35
36#include "moc_qgsprocessingregistry.cpp"
37
38using namespace Qt::StringLiterals;
39
41 : QObject( parent )
42{
83 addParameterType( new QgsProcessingParameterTypeVectorTileWriterLayers() );
84 addParameterType( new QgsProcessingParameterTypeFieldMapping() );
85 addParameterType( new QgsProcessingParameterTypeAggregate() );
86 addParameterType( new QgsProcessingParameterTypeTinInputLayers() );
87 addParameterType( new QgsProcessingParameterTypeDxfLayers() );
88 addParameterType( new QgsProcessingParameterTypeMeshDatasetGroups() );
89 addParameterType( new QgsProcessingParameterTypeMeshDatasetTime() );
95 addParameterType( new QgsProcessingParameterTypeAlignRasterLayers() );
96 addParameterType( new QgsProcessingParameterTypeHeatmapPixelSize() );
97 addParameterType( new QgsProcessingParameterTypeReliefColors() );
98 addParameterType( new QgsProcessingParameterTypeInterpolationSource() );
99 addParameterType( new QgsProcessingParameterTypeInterpolationPixelSize() );
100}
101
103{
104 const auto constMProviders = mProviders;
105 for ( QgsProcessingProvider *p : constMProviders )
106 {
107 removeProvider( p );
108 }
109
110 const auto parameterTypes = mParameterTypes.values();
111
113 {
114 removeParameterType( type );
115 }
116}
117
119{
120 if ( !provider )
121 return false;
122
123 if ( providerById( provider->id() ) )
124 {
125 QgsLogger::warning( u"Duplicate provider %1 registered"_s.arg( provider->id() ) );
126 delete provider;
127 return false;
128 }
129
130 if ( !provider->load() )
131 {
132 QgsLogger::warning( u"Provider %1 cannot load"_s.arg( provider->id() ) );
133 delete provider;
134 return false;
135 }
136
137 provider->setParent( this );
138 mProviders[provider->id()] = provider;
139
140 mCachedInformation.clear();
141 connect( provider, &QgsProcessingProvider::algorithmsLoaded, this, [this] { mCachedInformation.clear(); } );
142
143 emit providerAdded( provider->id() );
144 return true;
145}
146
148{
149 if ( !provider )
150 return false;
151
152 const QString id = provider->id();
153
154 if ( !mProviders.contains( id ) )
155 return false;
156
157 provider->unload();
158
159 delete mProviders.take( id );
160
161 mCachedInformation.clear();
162
163 emit providerRemoved( id );
164 return true;
165}
166
167bool QgsProcessingRegistry::removeProvider( const QString &providerId )
168{
169 QgsProcessingProvider *p = providerById( providerId );
170 return removeProvider( p );
171}
172
174{
175 auto it = mProviders.constFind( id );
176 if ( it != mProviders.constEnd() )
177 return it.value();
178
179 // transparently map old references to "grass7" provider to "grass" provider
180 if ( id.compare( "grass7"_L1, Qt::CaseInsensitive ) == 0 )
181 return providerById( u"grass"_s );
182
183 return nullptr;
184}
185
186QList< const QgsProcessingAlgorithm * > QgsProcessingRegistry::algorithms() const
187{
188 QList< const QgsProcessingAlgorithm * > algs;
189 QMap<QString, QgsProcessingProvider *>::const_iterator it = mProviders.constBegin();
190 for ( ; it != mProviders.constEnd(); ++it )
191 {
192 algs.append( it.value()->algorithms() );
193 }
194 return algs;
195}
196
198{
199 const auto it = mCachedInformation.constFind( id );
200 if ( it != mCachedInformation.constEnd() )
201 return *it;
202
205 {
206 info.displayName = algorithm->displayName();
207 info.icon = algorithm->icon();
208 }
209 mCachedInformation.insert( id, info );
210 return info;
211}
212
214{
215 if ( constId.isEmpty() )
216 return nullptr;
217
218 // allow mapping of algorithm via registered algorithm aliases
219 const QString id = mAlgorithmAliases.value( constId, constId );
220
221 // try to match just the one target provider, if we can determine it from the id easily
222 static thread_local QRegularExpression reSplitProviderId( u"^(.*?):(.*)$"_s );
223 const QRegularExpressionMatch match = reSplitProviderId.match( id );
224 if ( match.hasMatch() )
225 {
226 if ( QgsProcessingProvider *provider = providerById( match.captured( 1 ) ) )
227 {
228 if ( const QgsProcessingAlgorithm *algorithm = provider->algorithm( match.captured( 2 ) ) )
229 return algorithm;
230 }
231
232 // try mapping 'qgis' algs to 'native' algs - this allows us to freely move algorithms
233 // from the python 'qgis' provider to the c++ 'native' provider without breaking API
234 // or existing models
235 if ( match.captured( 1 ) == "qgis"_L1 )
236 {
237 const QString algorithmName = id.mid( 5 );
238 if ( QgsProcessingProvider *provider = mProviders.value( u"native"_s ) )
239 {
240 if ( const QgsProcessingAlgorithm *algorithm = provider->algorithm( algorithmName ) )
241 return algorithm;
242 }
243 }
244 }
245
246 // slow: iterate through ALL providers to find a match
247 QMap<QString, QgsProcessingProvider *>::const_iterator it = mProviders.constBegin();
248 for ( ; it != mProviders.constEnd(); ++it )
249 {
250 const QList< const QgsProcessingAlgorithm * > algorithms = it.value()->algorithms();
251 for ( const QgsProcessingAlgorithm *alg : algorithms )
252 if ( alg->id() == id )
253 return alg;
254 }
255
256 return nullptr;
257}
258
259QgsProcessingAlgorithm *QgsProcessingRegistry::createAlgorithmById( const QString &id, const QVariantMap &configuration ) const
260{
261 const QgsProcessingAlgorithm *alg = algorithmById( id );
262 if ( !alg )
263 return nullptr;
264
265 std::unique_ptr< QgsProcessingAlgorithm > creation( alg->create( configuration ) );
266 return creation.release();
267}
268
269void QgsProcessingRegistry::addAlgorithmAlias( const QString &aliasId, const QString &actualId )
270{
271 mAlgorithmAliases.insert( aliasId, actualId );
272}
273
275{
276 if ( !mParameterTypes.contains( type->id() ) )
277 {
278 mParameterTypes.insert( type->id(), type );
279 emit parameterTypeAdded( type );
280 return true;
281 }
282 else
283 {
284 QgsLogger::warning( u"Duplicate parameter type %1 (\"%2\") registered"_s.arg( type->id(), type->name() ) );
285
286 if ( mParameterTypes.value( type->id() ) != type )
287 delete type;
288
289 return false;
290 }
291}
292
294{
295 mParameterTypes.remove( type->id() );
296 emit parameterTypeRemoved( type );
297 delete type;
298}
299
301{
302 return mParameterTypes.value( id );
303}
304
305QList<QgsProcessingParameterType *> QgsProcessingRegistry::parameterTypes() const
306{
307 return mParameterTypes.values();
308}
static void warning(const QString &msg)
Goes to qWarning.
Contains basic properties for a Processing algorithm.
QString displayName
Algorithm display name.
Abstract base class for processing algorithms.
QgsProcessingAlgorithm * create(const QVariantMap &configuration=QVariantMap()) const
Creates a copy of the algorithm, ready for execution.
An annotation layer parameter for processing algorithms.
An area parameter for processing algorithms.
An authentication configuration parameter for processing algorithms.
A raster band parameter for Processing algorithms.
A boolean parameter for processing algorithms.
A color parameter for Processing algorithms.
A coordinate operation parameter for Processing algorithms.
A crs parameter for processing algorithms.
A database schema name parameter for processing algorithms.
A database table name parameter for processing algorithms.
A datetime parameter for processing algorithms.
A distance parameter for processing algorithms.
A duration parameter for processing algorithms.
An enum based parameter for processing algorithms, allowing for selection from predefined values.
An expression parameter for processing algorithms.
A rectangular map extent parameter for processing algorithms.
A feature sink parameter for Processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A vector layer or feature source field parameter for processing algorithms.
A generic file based destination parameter, for specifying the destination path for a file (non-map l...
An input file or folder parameter for processing algorithms.
A folder destination parameter, for specifying the destination path for a folder created by the algor...
A geometry parameter for processing algorithms.
A print layout item parameter for Processing algorithms.
A print layout parameter for Processing algorithms.
A generic map layer parameter for processing algorithms.
A map theme parameter for Processing algorithms.
A table (matrix) parameter for processing algorithms.
A mesh layer parameter for processing algorithms.
A parameter for processing algorithms which accepts multiple map layers.
A numeric parameter for processing algorithms.
A point cloud layer attribute parameter for Processing algorithms.
A pointcloud layer destination parameter, for specifying the destination path for a point cloud layer...
A point cloud layer parameter for processing algorithms.
A point parameter for processing algorithms.
A provider connection name parameter for processing algorithms.
A numeric range parameter for processing algorithms.
A raster layer destination parameter, for specifying the destination path for a raster layer created ...
A raster layer parameter for processing algorithms.
A scale parameter for processing algorithms.
A string parameter for processing algorithms.
A vector layer destination parameter, for specifying the destination path for a vector layer created ...
A vector layer parameter for processing algorithms.
A vector tile layer destination parameter, for specifying the destination path for a vector tile laye...
A volume parameter for processing algorithms.
Makes metadata of processing parameters available.
virtual QString name() const =0
A human readable and translatable short name for this parameter type.
virtual QString id() const =0
A static id for this type which will be used for storing this parameter type.
Abstract base class for processing providers.
void algorithmsLoaded()
Emitted when the provider has loaded (or refreshed) its list of available algorithms.
virtual void unload()
Unloads the provider.
virtual QString id() const =0
Returns the unique provider id, used for identifying the provider.
virtual bool load()
Loads the provider.
void removeParameterType(QgsProcessingParameterType *type)
Unregister a custom parameter type from processing.
void parameterTypeAdded(QgsProcessingParameterType *type)
Emitted when a new parameter type has been added to the registry.
QgsProcessingAlgorithm * createAlgorithmById(const QString &id, const QVariantMap &configuration=QVariantMap()) const
Creates a new instance of an algorithm by its ID.
void parameterTypeRemoved(QgsProcessingParameterType *type)
Emitted when a parameter type has been removed from the registry and is about to be deleted.
QgsProcessingAlgorithmInformation algorithmInformation(const QString &id) const
Returns basic algorithm information for the algorithm with matching ID.
QList< const QgsProcessingAlgorithm * > algorithms() const
Returns a list of all available algorithms from registered providers.
QgsProcessingParameterType * parameterType(const QString &id) const
Returns the parameter type registered for id.
bool removeProvider(QgsProcessingProvider *provider)
Removes a provider implementation from the registry (the provider object is deleted).
bool addParameterType(QgsProcessingParameterType *type)
Register a new parameter type for processing.
QgsProcessingRegistry(QObject *parent=nullptr)
Constructor for QgsProcessingRegistry.
const QgsProcessingAlgorithm * algorithmById(const QString &id) const
Finds an algorithm by its ID.
QgsProcessingProvider * providerById(const QString &id) const
Returns a matching provider by provider ID.
void providerAdded(const QString &id)
Emitted when a provider has been added to the registry.
QList< QgsProcessingParameterType * > parameterTypes() const
Returns a list with all known parameter types.
bool addProvider(QgsProcessingProvider *provider)
Add a processing provider to the registry.
void providerRemoved(const QString &id)
Emitted when a provider is removed from the registry.
void addAlgorithmAlias(const QString &aliasId, const QString &actualId)
Adds a new alias to an existing algorithm.
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:52