mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
111 lines
4.8 KiB
Python
111 lines
4.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
Postprocessing.py
|
|
---------------------
|
|
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. *
|
|
* *
|
|
***************************************************************************
|
|
"""
|
|
|
|
|
|
__author__ = 'Victor Olaya'
|
|
__date__ = 'August 2012'
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
import os
|
|
import traceback
|
|
from qgis.PyQt.QtWidgets import QApplication
|
|
from qgis.PyQt.QtCore import QCoreApplication
|
|
from qgis.core import (QgsProject,
|
|
QgsProcessingFeedback,
|
|
QgsProcessingUtils,
|
|
QgsMessageLog)
|
|
|
|
from processing.core.ProcessingConfig import ProcessingConfig
|
|
from processing.core.ProcessingResults import resultsList
|
|
|
|
#from processing.gui.ResultsDock import ResultsDock
|
|
from processing.gui.RenderingStyles import RenderingStyles
|
|
|
|
from processing.core.outputs import OutputRaster
|
|
from processing.core.outputs import OutputVector
|
|
from processing.core.outputs import OutputTable
|
|
from processing.core.outputs import OutputHTML
|
|
|
|
from processing.tools import dataobjects
|
|
|
|
|
|
def handleAlgorithmResults(alg, context, feedback=None, showResults=True):
|
|
wrongLayers = []
|
|
if feedback is None:
|
|
feedback = QgsProcessingFeedback()
|
|
feedback.setProgressText(QCoreApplication.translate('Postprocessing', 'Loading resulting layers'))
|
|
i = 0
|
|
for l, details in context.layersToLoadOnCompletion().items():
|
|
try:
|
|
layer = QgsProcessingUtils.mapLayerFromString(l, context)
|
|
if layer is not None:
|
|
layer.setName(details.name)
|
|
details.project.addMapLayer(context.temporaryLayerStore().takeMapLayer(layer))
|
|
else:
|
|
name = details.name
|
|
if ProcessingConfig.getSetting(
|
|
ProcessingConfig.USE_FILENAME_AS_LAYER_NAME):
|
|
name = os.path.basename(l)
|
|
dataobjects.load(l, name, alg.crs,
|
|
RenderingStyles.getStyle(alg.id(), l))
|
|
except Exception:
|
|
QgsMessageLog.logMessage("Error loading result layer:\n" + traceback.format_exc(), 'Processing', QgsMessageLog.CRITICAL)
|
|
#wrongLayers.append(out.description())
|
|
wrongLayers.append(l)
|
|
# for out in alg.outputs:
|
|
# feedback.setProgress(100 * i / float(len(alg.outputs)))
|
|
# if out.flags() & QgsProcessingParameterDefinition.FlagHidden or not out.open:
|
|
# continue
|
|
# if isinstance(out, (OutputRaster, OutputVector, OutputTable)):
|
|
# try:
|
|
# layer = QgsProcessingUtils.mapLayerFromString(out.value, context)
|
|
# if layer:
|
|
# layer.setName(out.description)
|
|
# QgsProject.instance().addMapLayer(context.temporaryLayerStore().takeMapLayer(layer))
|
|
# else:
|
|
# if ProcessingConfig.getSetting(
|
|
# ProcessingConfig.USE_FILENAME_AS_LAYER_NAME):
|
|
# name = os.path.basename(out.value)
|
|
# else:
|
|
# name = out.description
|
|
#
|
|
# isRaster = True if isinstance(out, OutputRaster) else False
|
|
# dataobjects.load(out.value, name, alg.crs,
|
|
# RenderingStyles.getStyle(alg.id(), out.name),
|
|
# isRaster)
|
|
# except Exception:
|
|
# QgsMessageLog.logMessage("Error loading result layer:\n" + traceback.format_exc(), 'Processing', QgsMessageLog.CRITICAL)
|
|
# wrongLayers.append(out.description)
|
|
# elif isinstance(out, OutputHTML):
|
|
# resultsList.addResult(alg.icon(), out.description, out.value)
|
|
# i += 1
|
|
|
|
QApplication.restoreOverrideCursor()
|
|
if wrongLayers:
|
|
msg = "The following layers were not correctly generated.<ul>"
|
|
msg += "".join(["<li>%s</li>" % lay for lay in wrongLayers]) + "</ul>"
|
|
msg += "You can check the log messages to find more information about the execution of the algorithm"
|
|
feedback.reportError(msg)
|
|
|
|
return len(wrongLayers) == 0
|