mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-03 00:14:12 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.9 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 QgsMapLayerRegistry
 | 
						|
 | 
						|
from processing.core.ProcessingConfig import ProcessingConfig
 | 
						|
from processing.core.ProcessingResults import ProcessingResults
 | 
						|
from processing.core.ProcessingLog import ProcessingLog
 | 
						|
from processing.core.SilentProgress import SilentProgress
 | 
						|
 | 
						|
from processing.gui.ResultsDialog import ResultsDialog
 | 
						|
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, progress=None, showResults=True):
 | 
						|
    wrongLayers = []
 | 
						|
    htmlResults = False
 | 
						|
    if progress is None:
 | 
						|
        progress = SilentProgress()
 | 
						|
    progress.setText(QCoreApplication.translate('Postprocessing', 'Loading resulting layers'))
 | 
						|
    i = 0
 | 
						|
    for out in alg.outputs:
 | 
						|
        progress.setPercentage(100 * i / float(len(alg.outputs)))
 | 
						|
        if out.hidden or not out.open:
 | 
						|
            continue
 | 
						|
        if isinstance(out, (OutputRaster, OutputVector, OutputTable)):
 | 
						|
            try:
 | 
						|
                if hasattr(out, "layer") and out.layer is not None:
 | 
						|
                    out.layer.setLayerName(out.description)
 | 
						|
                    QgsMapLayerRegistry.instance().addMapLayers([out.layer])
 | 
						|
                else:
 | 
						|
                    if ProcessingConfig.getSetting(
 | 
						|
                            ProcessingConfig.USE_FILENAME_AS_LAYER_NAME):
 | 
						|
                        name = os.path.basename(out.value)
 | 
						|
                    else:
 | 
						|
                        name = out.description
 | 
						|
                    dataobjects.load(out.value, name, alg.crs,
 | 
						|
                                     RenderingStyles.getStyle(alg.commandLineName(),
 | 
						|
                                                              out.name))
 | 
						|
            except Exception:
 | 
						|
                ProcessingLog.addToLog(ProcessingLog.LOG_ERROR,
 | 
						|
                                       "Error loading result layer:\n" + traceback.format_exc())
 | 
						|
                wrongLayers.append(out.description)
 | 
						|
        elif isinstance(out, OutputHTML):
 | 
						|
            ProcessingResults.addResult(out.description, out.value)
 | 
						|
            htmlResults = True
 | 
						|
        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"
 | 
						|
        progress.error(msg)
 | 
						|
 | 
						|
    if showResults and htmlResults and not wrongLayers:
 | 
						|
        dlg = ResultsDialog()
 | 
						|
        dlg.exec_()
 | 
						|
 | 
						|
    return len(wrongLayers) == 0
 |