QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsprocessingprovider.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprocessingprovider.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 
18 #include "qgsprocessingprovider.h"
19 #include "qgsapplication.h"
20 #include "qgsvectorfilewriter.h"
21 #include "qgsrasterfilewriter.h"
22 #include "qgssettings.h"
23 
25  : QObject( parent )
26 {}
27 
28 
30 {
31  qDeleteAll( mAlgorithms );
32 }
33 
35 {
36  return QgsApplication::getThemeIcon( "/processingAlgorithm.svg" );
37 }
38 
40 {
41  return QgsApplication::iconPath( QStringLiteral( "processingAlgorithm.svg" ) );
42 }
43 
44 QgsProcessingProvider::Flags QgsProcessingProvider::flags() const
45 {
46  return QgsProcessingProvider::Flags();
47 }
48 
50 {
51  return QString();
52 }
53 
55 {
56  return name();
57 }
58 
60 {
61  return QString();
62 }
63 
65 {
67 }
68 
70 {
71  qDeleteAll( mAlgorithms );
72  mAlgorithms.clear();
73  if ( isActive() )
74  {
76  emit algorithmsLoaded();
77  }
78 }
79 
80 QList<const QgsProcessingAlgorithm *> QgsProcessingProvider::algorithms() const
81 {
82  return mAlgorithms.values();
83 }
84 
85 const QgsProcessingAlgorithm *QgsProcessingProvider::algorithm( const QString &name ) const
86 {
87  return mAlgorithms.value( name );
88 }
89 
91 {
92  if ( !algorithm )
93  return false;
94 
95  if ( mAlgorithms.contains( algorithm->name() ) )
96  {
97  QgsMessageLog::logMessage( tr( "Duplicate algorithm name %1 for provider %2" ).arg( algorithm->name(), id() ), QObject::tr( "Processing" ) );
98  return false;
99  }
100 
101  // init the algorithm - this allows direct querying of the algorithm's parameters
102  // and outputs from the provider's copy
103  algorithm->initAlgorithm( QVariantMap() );
104 
105  algorithm->setProvider( this );
106  mAlgorithms.insert( algorithm->name(), algorithm );
107  return true;
108 }
109 
111 {
113 }
114 
116 {
118 }
119 
120 bool QgsProcessingProvider::isSupportedOutputValue( const QVariant &outputValue, const QgsProcessingDestinationParameter *parameter, QgsProcessingContext &context, QString &error ) const
121 {
122  error.clear();
123  QString outputPath = QgsProcessingParameters::parameterAsOutputLayer( parameter, outputValue, context ).trimmed();
124 
125  if ( outputPath.isEmpty() )
126  {
128  {
129  return true;
130  }
131  else
132  {
133  error = tr( "Missing parameter value %1" ).arg( parameter->description() );
134  return false;
135  }
136  }
137 
140  {
141  if ( outputPath.startsWith( QLatin1String( "memory:" ) ) )
142  {
144  {
145  error = tr( "This algorithm only supports disk-based outputs" );
146  return false;
147  }
148  return true;
149  }
150 
151  QString providerKey;
152  QString uri;
153  QString layerName;
154  QMap<QString, QVariant> options;
155  bool useWriter = false;
156  QString format;
157  QString extension;
158  QgsProcessingUtils::parseDestinationString( outputPath, providerKey, uri, layerName, format, options, useWriter, extension );
159 
160  if ( providerKey != QLatin1String( "ogr" ) )
161  {
163  {
164  error = tr( "This algorithm only supports disk-based outputs" );
165  return false;
166  }
167  return true;
168  }
169 
170  if ( !supportedOutputVectorLayerExtensions().contains( extension, Qt::CaseInsensitive ) )
171  {
172  error = tr( "“.%1” files are not supported as outputs for this algorithm" ).arg( extension );
173  return false;
174  }
175  return true;
176  }
177  else if ( parameter->type() == QgsProcessingParameterRasterDestination::typeName() )
178  {
179  QFileInfo fi( outputPath );
180  const QString extension = fi.completeSuffix();
181  if ( !supportedOutputRasterLayerExtensions().contains( extension, Qt::CaseInsensitive ) )
182  {
183  error = tr( "“.%1” files are not supported as outputs for this algorithm" ).arg( extension );
184  return false;
185  }
186  return true;
187  }
188  else
189  {
190  return true;
191  }
192 }
193 
194 QString QgsProcessingProvider::defaultVectorFileExtension( bool hasGeometry ) const
195 {
196  QgsSettings settings;
197  const QString userDefault = QgsProcessingUtils::defaultVectorExtension();
198 
199  const QStringList supportedExtensions = supportedOutputVectorLayerExtensions();
200  if ( supportedExtensions.contains( userDefault, Qt::CaseInsensitive ) )
201  {
202  // user set default is supported by provider, use that
203  return userDefault;
204  }
205  else if ( !supportedExtensions.empty() )
206  {
207  return supportedExtensions.at( 0 );
208  }
209  else
210  {
211  // who knows? provider says it has no file support at all...
212  // let's say shp. even MapInfo supports shapefiles.
213  return hasGeometry ? QStringLiteral( "shp" ) : QStringLiteral( "dbf" );
214  }
215 }
216 
218 {
219  QgsSettings settings;
220  const QString userDefault = QgsProcessingUtils::defaultRasterExtension();
221 
222  const QStringList supportedExtensions = supportedOutputRasterLayerExtensions();
223  if ( supportedExtensions.contains( userDefault, Qt::CaseInsensitive ) )
224  {
225  // user set default is supported by provider, use that
226  return userDefault;
227  }
228  else if ( !supportedExtensions.empty() )
229  {
230  return supportedExtensions.at( 0 );
231  }
232  else
233  {
234  // who knows? provider says it has no file support at all...
235  return QStringLiteral( "tif" );
236  }
237 }
238 
240 {
241  return true;
242 }
QgsProcessingProvider::isSupportedOutputValue
virtual bool isSupportedOutputValue(const QVariant &outputValue, const QgsProcessingDestinationParameter *parameter, QgsProcessingContext &context, QString &error) const
Returns true if the specified outputValue is of a supported file format for the given destination par...
Definition: qgsprocessingprovider.cpp:120
QgsProcessingProvider::refreshAlgorithms
void refreshAlgorithms()
Refreshes the algorithms available from the provider, causing it to re-populate with all associated a...
Definition: qgsprocessingprovider.cpp:69
QgsProcessingUtils::defaultVectorExtension
static QString defaultVectorExtension()
Returns the default vector extension to use, in the absence of all other constraints (e....
Definition: qgsprocessingutils.cpp:1194
QgsProcessingParameterRasterDestination::typeName
static QString typeName()
Returns the type name for the parameter class.
Definition: qgsprocessingparameters.h:3083
QgsApplication::getThemeIcon
static QIcon getThemeIcon(const QString &name)
Helper to get a theme icon.
Definition: qgsapplication.cpp:626
QgsProcessingParameterDefinition::description
QString description() const
Returns the description for the parameter.
Definition: qgsprocessingparameters.h:474
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
QgsProcessingParameterDefinition::flags
Flags flags() const
Returns any flags associated with the parameter.
Definition: qgsprocessingparameters.h:522
QgsProcessingProvider::supportedOutputTableExtensions
virtual QStringList supportedOutputTableExtensions() const
Returns a list of the table (geometry-less vector layers) file extensions supported by this provider.
Definition: qgsprocessingprovider.cpp:115
QgsProcessingParameterVectorDestination::typeName
static QString typeName()
Returns the type name for the parameter class.
Definition: qgsprocessingparameters.h:3008
QgsProcessingProvider::icon
virtual QIcon icon() const
Returns an icon for the provider.
Definition: qgsprocessingprovider.cpp:34
QgsSettings
This class is a composition of two QSettings instances:
Definition: qgssettings.h:62
QgsProcessingProvider::algorithm
const QgsProcessingAlgorithm * algorithm(const QString &name) const
Returns the matching algorithm by name, or nullptr if no matching algorithm is contained by this prov...
Definition: qgsprocessingprovider.cpp:85
QgsProcessingProvider::flags
virtual Flags flags() const
Returns the flags indicating how and when the provider operates and should be exposed to users.
Definition: qgsprocessingprovider.cpp:44
QgsApplication::iconPath
static QString iconPath(const QString &iconFile)
Returns path to the desired icon file.
Definition: qgsapplication.cpp:615
QgsProcessingProvider::versionInfo
virtual QString versionInfo() const
Returns a version information string for the provider, or an empty string if this is not applicable (...
Definition: qgsprocessingprovider.cpp:59
qgsrasterfilewriter.h
QgsProcessingParameterFeatureSink::typeName
static QString typeName()
Returns the type name for the parameter class.
Definition: qgsprocessingparameters.h:2910
QgsProcessingDestinationParameter
Base class for all parameter definitions which represent file or layer destinations,...
Definition: qgsprocessingparameters.h:2774
qgsapplication.h
QgsProcessingProvider::longName
virtual QString longName() const
Returns the longer version of the provider name, which can include extra details such as version numb...
Definition: qgsprocessingprovider.cpp:54
QgsProcessingProvider::addAlgorithm
bool addAlgorithm(QgsProcessingAlgorithm *algorithm)
Adds an algorithm to the provider.
Definition: qgsprocessingprovider.cpp:90
QgsProcessingProvider::name
virtual QString name() const =0
Returns the provider name, which is used to describe the provider within the GUI.
QgsProcessingProvider::supportedOutputVectorLayerExtensions
virtual QStringList supportedOutputVectorLayerExtensions() const
Returns a list of the vector format file extensions supported by this provider.
Definition: qgsprocessingprovider.cpp:110
QgsRasterFileWriter::supportedFormatExtensions
static QStringList supportedFormatExtensions(RasterFormatOptions options=SortRecommended)
Returns a list of file extensions for supported formats.
Definition: qgsrasterfilewriter.cpp:1203
QgsProcessingAlgorithm::name
virtual QString name() const =0
Returns the algorithm name, used for identifying the algorithm.
QgsProcessingContext
Contains information about the context in which a processing algorithm is executed.
Definition: qgsprocessingcontext.h:44
QgsProcessingProvider::supportedOutputRasterLayerExtensions
virtual QStringList supportedOutputRasterLayerExtensions() const
Returns a list of the raster format file extensions supported by this provider.
Definition: qgsprocessingprovider.cpp:64
QgsVectorFileWriter::supportedFormatExtensions
static QStringList supportedFormatExtensions(VectorFormatOptions options=SortRecommended)
Returns a list of file extensions for supported formats, e.g "shp", "gpkg".
Definition: qgsvectorfilewriter.cpp:3326
QgsProcessingProvider::svgIconPath
virtual QString svgIconPath() const
Returns a path to an SVG version of the provider's icon.
Definition: qgsprocessingprovider.cpp:39
QgsProcessingProvider::loadAlgorithms
virtual void loadAlgorithms()=0
Loads all algorithms belonging to this provider.
QgsProcessingProvider::helpId
virtual QString helpId() const
Returns the provider help id string, used for creating QgsHelp urls for algorithms belong to this pro...
Definition: qgsprocessingprovider.cpp:49
QgsProcessingAlgorithm::setProvider
void setProvider(QgsProcessingProvider *provider)
Associates this algorithm with its provider.
Definition: qgsprocessingalgorithm.cpp:133
QgsProcessingAlgorithm
Abstract base class for processing algorithms.
Definition: qgsprocessingalgorithm.h:52
QgsProcessingProvider::isActive
virtual bool isActive() const
Returns true if the provider is active and able to run algorithms.
Definition: qgsprocessingprovider.h:150
QgsProcessingParameters::parameterAsOutputLayer
static QString parameterAsOutputLayer(const QgsProcessingParameterDefinition *definition, const QVariantMap &parameters, QgsProcessingContext &context)
Evaluates the parameter with matching definition to a output layer destination.
Definition: qgsprocessingparameters.cpp:836
qgssettings.h
QgsMessageLog::logMessage
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
Definition: qgsmessagelog.cpp:27
QgsProcessingProvider::~QgsProcessingProvider
~QgsProcessingProvider() override
Definition: qgsprocessingprovider.cpp:29
QgsProcessingProvider::algorithms
QList< const QgsProcessingAlgorithm * > algorithms() const
Returns a list of algorithms supplied by this provider.
Definition: qgsprocessingprovider.cpp:80
QgsProcessingProvider::algorithmsLoaded
void algorithmsLoaded()
Emitted when the provider has loaded (or refreshed) its list of available algorithms.
QgsProcessingParameterDefinition::type
virtual QString type() const =0
Unique parameter type name.
QgsProcessingProvider::QgsProcessingProvider
QgsProcessingProvider(QObject *parent=nullptr)
Constructor for QgsProcessingProvider.
Definition: qgsprocessingprovider.cpp:24
qgsvectorfilewriter.h
QgsProcessingParameterDefinition::FlagOptional
@ FlagOptional
Parameter is optional.
Definition: qgsprocessingparameters.h:425
QgsProcessingProvider::defaultVectorFileExtension
virtual QString defaultVectorFileExtension(bool hasGeometry=true) const
Returns the default file extension to use for vector outputs created by the provider.
Definition: qgsprocessingprovider.cpp:194
qgsprocessingprovider.h
QgsProcessingUtils::defaultRasterExtension
static QString defaultRasterExtension()
Returns the default raster extension to use, in the absence of all other constraints (e....
Definition: qgsprocessingutils.cpp:1203
SIP_TRANSFERTHIS
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
QgsProcessingProvider::supportsNonFileBasedOutput
virtual bool supportsNonFileBasedOutput() const
Returns true if the provider supports non-file based outputs (such as memory layers or direct databas...
Definition: qgsprocessingprovider.cpp:239
QgsProcessingProvider::defaultRasterFileExtension
virtual QString defaultRasterFileExtension() const
Returns the default file extension to use for raster outputs created by the provider.
Definition: qgsprocessingprovider.cpp:217
QgsProcessingAlgorithm::initAlgorithm
virtual void initAlgorithm(const QVariantMap &configuration=QVariantMap())=0
Initializes the algorithm using the specified configuration.