QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
Registry for various processing components, including providers, algorithms and various parameters and outputs. More...
#include <qgsprocessingregistry.h>
Signals | |
void | parameterTypeAdded (QgsProcessingParameterType *type) |
Emitted when a new parameter type has been added to the registry. More... | |
void | parameterTypeRemoved (QgsProcessingParameterType *type) |
Emitted when a parameter type has been removed from the registry and is about to be deleted. More... | |
void | providerAdded (const QString &id) |
Emitted when a provider has been added to the registry. More... | |
void | providerRemoved (const QString &id) |
Emitted when a provider is removed from the registry. More... | |
Public Member Functions | |
QgsProcessingRegistry (QObject *parent=nullptr) | |
Constructor for QgsProcessingRegistry. More... | |
QgsProcessingRegistry (const QgsProcessingRegistry &other)=delete | |
Registry cannot be copied. More... | |
~QgsProcessingRegistry () override | |
bool | addParameterType (QgsProcessingParameterType *type) |
Register a new parameter type for processing. More... | |
bool | addProvider (QgsProcessingProvider *provider) |
Add a processing provider to the registry. More... | |
const QgsProcessingAlgorithm * | algorithmById (const QString &id) const |
Finds an algorithm by its ID. More... | |
QList< const QgsProcessingAlgorithm * > | algorithms () const |
Returns a list of all available algorithms from registered providers. More... | |
QgsProcessingAlgorithm * | createAlgorithmById (const QString &id, const QVariantMap &configuration=QVariantMap()) const |
Creates a new instance of an algorithm by its ID. More... | |
QgsProcessingRegistry & | operator= (const QgsProcessingRegistry &other)=delete |
Registry cannot be copied. More... | |
QgsProcessingParameterType * | parameterType (const QString &id) const |
Returns the parameter type registered for id. More... | |
QList< QgsProcessingParameterType * > | parameterTypes () const |
Returns a list with all known parameter types. More... | |
QgsProcessingProvider * | providerById (const QString &id) |
Returns a matching provider by provider ID. More... | |
QList< QgsProcessingProvider * > | providers () const |
Gets list of available providers. More... | |
void | removeParameterType (QgsProcessingParameterType *type) |
Unregister a custom parameter type from processing. More... | |
bool | removeProvider (QgsProcessingProvider *provider) |
Removes a provider implementation from the registry (the provider object is deleted). More... | |
bool | removeProvider (const QString &providerId) |
Removes a provider implementation from the registry (the provider object is deleted). More... | |
Registry for various processing components, including providers, algorithms and various parameters and outputs.
QgsProcessingRegistry is not usually directly created, but rather accessed through QgsApplication::processingRegistry().
Definition at line 39 of file qgsprocessingregistry.h.
QgsProcessingRegistry::QgsProcessingRegistry | ( | QObject * | parent = nullptr | ) |
Constructor for QgsProcessingRegistry.
Definition at line 22 of file qgsprocessingregistry.cpp.
|
override |
Definition at line 56 of file qgsprocessingregistry.cpp.
|
delete |
Registry cannot be copied.
bool QgsProcessingRegistry::addParameterType | ( | QgsProcessingParameterType * | type | ) |
Register a new parameter type for processing.
Ownership is transferred to the registry. Will emit parameterTypeAdded.
Definition at line 168 of file qgsprocessingregistry.cpp.
bool QgsProcessingRegistry::addProvider | ( | QgsProcessingProvider * | provider | ) |
Add a processing provider to the registry.
Ownership of the provider is transferred to the registry, and the provider's parent will be set to the registry. Returns false
if the provider could not be added (eg if a provider with a duplicate ID already exists in the registry). Adding a provider to the registry automatically triggers the providers QgsProcessingProvider::load() method to populate the provider with algorithms.
Definition at line 72 of file qgsprocessingregistry.cpp.
const QgsProcessingAlgorithm * QgsProcessingRegistry::algorithmById | ( | const QString & | id | ) | const |
Finds an algorithm by its ID.
If no matching algorithm is found, nullptr
is returned.
Definition at line 136 of file qgsprocessingregistry.cpp.
QList< const QgsProcessingAlgorithm *> QgsProcessingRegistry::algorithms | ( | ) | const |
Returns a list of all available algorithms from registered providers.
Definition at line 125 of file qgsprocessingregistry.cpp.
QgsProcessingAlgorithm * QgsProcessingRegistry::createAlgorithmById | ( | const QString & | id, |
const QVariantMap & | configuration = QVariantMap() |
||
) | const |
Creates a new instance of an algorithm by its ID.
If no matching algorithm is found, nullptr
is returned. Callers take responsibility for deleting the returned object.
The configuration argument allows passing of a map of configuration settings to the algorithm, allowing it to dynamically adjust its initialized parameters and outputs according to this configuration. This is generally used only for algorithms in a model, allowing them to adjust their behavior at run time according to some user configuration.
Definition at line 158 of file qgsprocessingregistry.cpp.
|
delete |
Registry cannot be copied.
QgsProcessingParameterType * QgsProcessingRegistry::parameterType | ( | const QString & | id | ) | const |
Returns the parameter type registered for id.
Definition at line 194 of file qgsprocessingregistry.cpp.
|
signal |
Emitted when a new parameter type has been added to the registry.
|
signal |
Emitted when a parameter type has been removed from the registry and is about to be deleted.
QList< QgsProcessingParameterType * > QgsProcessingRegistry::parameterTypes | ( | ) | const |
Returns a list with all known parameter types.
Definition at line 199 of file qgsprocessingregistry.cpp.
|
signal |
Emitted when a provider has been added to the registry.
QgsProcessingProvider * QgsProcessingRegistry::providerById | ( | const QString & | id | ) |
Returns a matching provider by provider ID.
Definition at line 120 of file qgsprocessingregistry.cpp.
|
signal |
Emitted when a provider is removed from the registry.
|
inline |
Gets list of available providers.
Definition at line 60 of file qgsprocessingregistry.h.
void QgsProcessingRegistry::removeParameterType | ( | QgsProcessingParameterType * | type | ) |
Unregister a custom parameter type from processing.
The type will be deleted. Will emit parameterTypeRemoved.
Definition at line 187 of file qgsprocessingregistry.cpp.
bool QgsProcessingRegistry::removeProvider | ( | QgsProcessingProvider * | provider | ) |
Removes a provider implementation from the registry (the provider object is deleted).
Returns false
if the provider could not be removed (eg provider does not exist in the registry).
Definition at line 97 of file qgsprocessingregistry.cpp.
bool QgsProcessingRegistry::removeProvider | ( | const QString & | providerId | ) |
Removes a provider implementation from the registry (the provider object is deleted).
Returns false
if the provider could not be removed (eg provider does not exist in the registry).
Definition at line 114 of file qgsprocessingregistry.cpp.