199 lines
8.3 KiB
Python
Raw Normal View History

2012-10-05 23:28:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
2013-08-12 20:44:27 +02:00
Processing.py
2012-10-05 23:28:47 +02:00
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
2012-10-05 23:28:47 +02:00
__author__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'
2012-10-05 23:28:47 +02:00
# This will get replaced with a git SHA1 when you do a git archive
2012-10-05 23:28:47 +02:00
__revision__ = '$Format:%H$'
import os
import traceback
2017-03-04 19:41:23 +01:00
from qgis.PyQt.QtCore import Qt, QCoreApplication
2016-04-22 10:38:48 +02:00
from qgis.PyQt.QtWidgets import QApplication
from qgis.PyQt.QtGui import QCursor
from qgis.utils import iface
from qgis.core import (QgsMessageLog,
QgsApplication,
QgsMapLayer,
QgsProcessingProvider,
QgsProcessingAlgorithm,
QgsProcessingException,
QgsProcessingParameterDefinition,
QgsProcessingOutputVectorLayer,
QgsProcessingOutputRasterLayer)
import processing
from processing.script.ScriptUtils import ScriptUtils
2013-08-12 20:44:27 +02:00
from processing.core.ProcessingConfig import ProcessingConfig
from processing.core.GeoAlgorithm import GeoAlgorithm
from processing.gui.MessageBarProgress import MessageBarProgress
2013-08-12 20:44:27 +02:00
from processing.gui.RenderingStyles import RenderingStyles
2014-06-08 23:15:33 +02:00
from processing.gui.Postprocessing import handleAlgorithmResults
from processing.gui.AlgorithmExecutor import execute
2017-04-25 20:03:39 +10:00
from processing.tools import dataobjects
from processing.algs.qgis.QGISAlgorithmProvider import QGISAlgorithmProvider # NOQA
#from processing.algs.grass7.Grass7AlgorithmProvider import Grass7AlgorithmProvider # NOQA
#from processing.algs.gdal.GdalAlgorithmProvider import GdalAlgorithmProvider # NOQA
#from processing.algs.saga.SagaAlgorithmProvider import SagaAlgorithmProvider # NOQA
2017-06-27 10:50:07 +10:00
from processing.script.ScriptAlgorithmProvider import ScriptAlgorithmProvider # NOQA
#from processing.preconfigured.PreconfiguredAlgorithmProvider import PreconfiguredAlgorithmProvider # NOQA
2016-04-27 15:40:56 +03:00
# should be loaded last - ensures that all dependent algorithms are available when loading models
from processing.modeler.ModelerAlgorithmProvider import ModelerAlgorithmProvider # NOQA
2016-09-21 18:24:26 +02:00
class Processing(object):
2017-04-04 14:34:00 +10:00
BASIC_PROVIDERS = []
@staticmethod
def activateProvider(providerOrName, activate=True):
provider_id = providerOrName.id() if isinstance(providerOrName, QgsProcessingProvider) else providerOrName
provider = QgsApplication.processingRegistry().providerById(provider_id)
try:
provider.setActive(True)
provider.refreshAlgorithms()
except:
# provider could not be activated
QgsMessageLog.logMessage(Processing.tr('Error: Provider {0} could not be activated\n').format(provider_id),
Processing.tr("Processing"))
2012-09-15 18:25:25 +03:00
@staticmethod
def initialize():
if "model" in [p.id() for p in QgsApplication.processingRegistry().providers()]:
return
# Add the basic providers
for c in QgsProcessingProvider.__subclasses__():
p = c()
2017-04-04 14:34:00 +10:00
Processing.BASIC_PROVIDERS.append(p)
QgsApplication.processingRegistry().addProvider(p)
# And initialize
2013-08-12 20:44:27 +02:00
ProcessingConfig.initialize()
ProcessingConfig.readSettings()
2013-02-28 22:08:32 +01:00
RenderingStyles.loadStyles()
@staticmethod
def deinitialize():
2017-04-04 14:34:00 +10:00
for p in Processing.BASIC_PROVIDERS:
QgsApplication.processingRegistry().removeProvider(p)
2017-04-04 14:34:00 +10:00
Processing.BASIC_PROVIDERS = []
@staticmethod
def addScripts(folder):
Processing.initialize()
provider = QgsApplication.processingRegistry().providerById("qgis")
scripts = ScriptUtils.loadFromFolder(folder)
# fix_print_with_import
print(scripts)
for script in scripts:
script.allowEdit = False
script._icon = provider._icon
provider.externalAlgs.extend(scripts)
provider.refreshAlgorithms()
@staticmethod
def removeScripts(folder):
provider = QgsApplication.processingRegistry().providerById("qgis")
for alg in provider.externalAlgs[::-1]:
path = os.path.dirname(alg.descriptionFile)
if path == folder:
provider.externalAlgs.remove(alg)
provider.refreshAlgorithms()
2012-09-15 18:25:25 +03:00
@staticmethod
2017-06-27 12:44:14 +10:00
def runAlgorithm(algOrName, parameters, onFinish=None, feedback=None, context=None):
if isinstance(algOrName, QgsProcessingAlgorithm):
2012-09-15 18:25:25 +03:00
alg = algOrName
else:
alg = QgsApplication.processingRegistry().createAlgorithmById(algOrName)
2017-06-27 12:44:14 +10:00
if feedback is None:
feedback = MessageBarProgress(alg.displayName() if alg else Processing.tr('Processing'))
if alg is None:
# fix_print_with_import
print('Error: Algorithm not found\n')
2017-06-27 12:44:14 +10:00
msg = Processing.tr('Error: Algorithm {0} not found\n').format(algOrName)
feedback.reportError(msg)
raise QgsProcessingException(msg)
2014-07-02 07:46:03 +02:00
2017-06-27 12:44:14 +10:00
# check for any mandatory parameters which were not specified
for param in alg.parameterDefinitions():
if param.name() not in parameters:
if not param.flags() & QgsProcessingParameterDefinition.FlagOptional:
# fix_print_with_import
2017-06-27 12:44:14 +10:00
msg = Processing.tr('Error: Missing parameter value for parameter {0}.').format(param.name())
print('Error: Missing parameter value for parameter %s.' % param.name())
2017-06-27 12:44:14 +10:00
feedback.reportError(msg)
raise QgsProcessingException(msg)
if context is None:
context = dataobjects.createContext(feedback)
2017-05-16 15:21:41 +10:00
ok, msg = alg.checkParameterValues(parameters, context)
if not ok:
# fix_print_with_import
2016-09-21 18:24:26 +02:00
print('Unable to execute algorithm\n' + str(msg))
2017-06-27 12:44:14 +10:00
msg = Processing.tr('Unable to execute algorithm\n{0}').format(msg)
feedback.reportError(msg)
raise QgsProcessingException(msg)
2012-09-15 18:25:25 +03:00
if not alg.validateInputCrs(parameters, context):
2017-03-04 19:41:23 +01:00
print('Warning: Not all input layers use the same CRS.\n' +
'This can cause unexpected results.')
2017-06-27 12:44:14 +10:00
feedback.pushInfo(
Processing.tr('Warning: Not all input layers use the same CRS.\nThis can cause unexpected results.'))
2013-02-07 01:09:39 +01:00
ret, results = execute(alg, parameters, context, feedback)
if ret:
2017-06-27 12:44:14 +10:00
feedback.pushInfo(
Processing.tr('Results: {}').format(results))
if onFinish is not None:
onFinish(alg, context, feedback)
else:
# auto convert layer references in results to map layers
for out in alg.outputDefinitions():
if isinstance(out, (QgsProcessingOutputVectorLayer, QgsProcessingOutputRasterLayer)):
result = results[out.name()]
if not isinstance(result, QgsMapLayer):
layer = context.takeResultLayer(result) # transfer layer ownership out of context
if layer:
results[out.name()] = layer # replace layer string ref with actual layer (+ownership)
else:
2017-06-27 12:44:14 +10:00
msg = Processing.tr("There were errors executing the algorithm.")
feedback.reportError(msg)
raise QgsProcessingException(msg)
if isinstance(feedback, MessageBarProgress):
feedback.close()
return results
2014-10-09 10:51:50 +03:00
@staticmethod
def tr(string, context=''):
if context == '':
context = 'Processing'
2014-10-09 10:51:50 +03:00
return QCoreApplication.translate(context, string)