1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
"""
***************************************************************************
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"
import traceback
from typing import Dict, List, Optional, Tuple
from qgis.PyQt.QtCore import QCoreApplication
from qgis.core import (
Qgis,
QgsProcessingFeedback,
QgsProcessingUtils,
QgsMapLayer,
QgsWkbTypes,
QgsMessageLog,
QgsProcessingContext,
QgsProcessingAlgorithm,
QgsLayerTreeLayer,
QgsLayerTreeGroup,
QgsLayerTreeNode,
QgsLayerTreeRegistryBridge,
QgsProject,
)
from qgis.utils import iface
from processing.core.ProcessingConfig import ProcessingConfig
from processing.gui.RenderingStyles import RenderingStyles
SORT_ORDER_CUSTOM_PROPERTY = "_processing_sort_order"
def determine_output_name(
dest_id: str,
details: QgsProcessingContext.LayerDetails,
alg: QgsProcessingAlgorithm,
context: QgsProcessingContext,
parameters: dict,
) -> str:
"""
If running a model, the execution will arrive here when an
algorithm that is part of that model is executed. We check if
its output is a final output of the model, and adapt the output
name accordingly
"""
for out in alg.outputDefinitions():
if out.name() not in parameters:
continue
output_value = parameters[out.name()]
if hasattr(output_value, "sink"):
output_value = output_value.sink.valueAsString(context.expressionContext())[
0
]
else:
output_value = str(output_value)
if output_value == dest_id:
return out.name()
return details.outputName
def post_process_layer(
output_name: str, layer: QgsMapLayer, alg: QgsProcessingAlgorithm
):
"""
Applies post-processing steps to a layer
"""
style = None
if output_name:
style = RenderingStyles.getStyle(alg.id(), output_name)
if style is None:
if layer.type() == Qgis.LayerType.Raster:
style = ProcessingConfig.getSetting(ProcessingConfig.RASTER_STYLE)
elif layer.type() == Qgis.LayerType.Vector:
if layer.geometryType() == QgsWkbTypes.GeometryType.PointGeometry:
style = ProcessingConfig.getSetting(ProcessingConfig.VECTOR_POINT_STYLE)
elif layer.geometryType() == QgsWkbTypes.GeometryType.LineGeometry:
style = ProcessingConfig.getSetting(ProcessingConfig.VECTOR_LINE_STYLE)
else:
style = ProcessingConfig.getSetting(
ProcessingConfig.VECTOR_POLYGON_STYLE
)
if style:
layer.loadNamedStyle(style)
if layer.type() == Qgis.LayerType.PointCloud:
try:
from qgis._3d import QgsPointCloudLayer3DRenderer
if layer.renderer3D() is None:
# If the layer has no 3D renderer and syncing 3D to 2D
# renderer is enabled, we create a renderer and set it up
# with the 2D renderer
if layer.sync3DRendererTo2DRenderer():
renderer_3d = QgsPointCloudLayer3DRenderer()
renderer_3d.convertFrom2DRenderer(layer.renderer())
layer.setRenderer3D(renderer_3d)
except ImportError:
QgsMessageLog.logMessage(
QCoreApplication.translate(
"Postprocessing",
"3D library is not available, "
"can't assign a 3d renderer to a layer.",
)
)
def create_layer_tree_layer(
layer: QgsMapLayer, details: QgsProcessingContext.LayerDetails
) -> QgsLayerTreeLayer:
"""
Applies post-processing steps to a QgsLayerTreeLayer created for
an algorithm's output
"""
layer_tree_layer = QgsLayerTreeLayer(layer)
if (
ProcessingConfig.getSetting(ProcessingConfig.VECTOR_FEATURE_COUNT)
and layer.type() == Qgis.LayerType.Vector
):
layer_tree_layer.setCustomProperty("showFeatureCount", True)
if details.layerSortKey:
layer_tree_layer.setCustomProperty(
SORT_ORDER_CUSTOM_PROPERTY, details.layerSortKey
)
return layer_tree_layer
def get_layer_tree_results_group(
details: QgsProcessingContext.LayerDetails, context: QgsProcessingContext
) -> Optional[QgsLayerTreeGroup]:
"""
Returns the destination layer tree group to store results in, or None
if there is no specific destination tree group associated with the layer
"""
destination_project = details.project or context.project()
results_group: Optional[QgsLayerTreeGroup] = None
# if a specific results group is specified in Processing settings,
# respect it (and create if necessary)
results_group_name = ProcessingConfig.getSetting(
ProcessingConfig.RESULTS_GROUP_NAME
)
if results_group_name:
results_group = destination_project.layerTreeRoot().findGroup(
results_group_name
)
if not results_group:
results_group = destination_project.layerTreeRoot().insertGroup(
0, results_group_name
)
results_group.setExpanded(True)
# if this particular output layer has a specific output group assigned,
# find or create it now
if details.groupName:
if results_group is None:
results_group = destination_project.layerTreeRoot()
group = results_group.findGroup(details.groupName)
if not group:
group = results_group.insertGroup(0, details.groupName)
group.setExpanded(True)
else:
group = results_group
return group
def handleAlgorithmResults(
alg: QgsProcessingAlgorithm,
context: QgsProcessingContext,
feedback: Optional[QgsProcessingFeedback] = None,
parameters: Optional[dict] = None,
):
if not parameters:
parameters = {}
if feedback is None:
feedback = QgsProcessingFeedback()
wrong_layers = []
feedback.setProgressText(
QCoreApplication.translate("Postprocessing", "Loading resulting layers")
)
i = 0
added_layers: list[
tuple[QgsMapLayer, Optional[QgsLayerTreeGroup], QgsLayerTreeLayer, QgsProject]
] = []
layers_to_post_process: list[
tuple[QgsMapLayer, QgsProcessingContext.LayerDetails]
] = []
for dest_id, details in context.layersToLoadOnCompletion().items():
if feedback.isCanceled():
return False
if len(context.layersToLoadOnCompletion()) > 2:
# only show progress feedback if we're loading a bunch of layers
feedback.setProgress(
100 * i / float(len(context.layersToLoadOnCompletion()))
)
try:
layer = QgsProcessingUtils.mapLayerFromString(
dest_id, context, typeHint=details.layerTypeHint
)
if layer is not None:
details.setOutputLayerName(layer)
output_name = determine_output_name(
dest_id, details, alg, context, parameters
)
post_process_layer(output_name, layer, alg)
# Load layer to layer tree root or to a specific group
results_group = get_layer_tree_results_group(details, context)
# note here that we may not retrieve an owned layer -- eg if the
# output layer already exists in the destination project
owned_map_layer = context.temporaryLayerStore().takeMapLayer(layer)
if owned_map_layer:
# we don't add the layer to the tree yet -- that's done
# later, after we've sorted all added layers
layer_tree_layer = create_layer_tree_layer(owned_map_layer, details)
added_layers.append(
(
owned_map_layer,
results_group,
layer_tree_layer,
details.project,
)
)
if details.postProcessor():
# we defer calling the postProcessor set in the context
# until the layer has been added to the project's layer
# tree, just in case the postProcessor contains logic
# relating to layer tree handling
layers_to_post_process.append((layer, details))
else:
wrong_layers.append(str(dest_id))
except Exception:
QgsMessageLog.logMessage(
QCoreApplication.translate(
"Postprocessing", "Error loading result layer:"
)
+ "\n"
+ traceback.format_exc(),
"Processing",
Qgis.MessageLevel.Critical,
)
wrong_layers.append(str(dest_id))
i += 1
# sort added layer tree layers
sorted_layer_tree_layers = sorted(
added_layers, key=lambda x: x[2].customProperty(SORT_ORDER_CUSTOM_PROPERTY, 0)
)
have_set_active_layer = False
current_selected_node: Optional[QgsLayerTreeNode] = None
if iface is not None:
current_selected_node = iface.layerTreeView().currentNode()
iface.layerTreeView().setUpdatesEnabled(False)
for layer, group, layer_node, project in sorted_layer_tree_layers:
if not project:
project = context.project()
# store the current insertion point to restore it later
previous_insertion_point = None
if project:
previous_insertion_point = (
project.layerTreeRegistryBridge().layerInsertionPoint()
)
layer_node.removeCustomProperty(SORT_ORDER_CUSTOM_PROPERTY)
insertion_point: Optional[QgsLayerTreeRegistryBridge.InsertionPoint] = None
if group is not None:
insertion_point = QgsLayerTreeRegistryBridge.InsertionPoint(group, 0)
else:
# no destination group for this layer, so should be placed
# above the current layer
if isinstance(current_selected_node, QgsLayerTreeLayer):
current_node_group = current_selected_node.parent()
current_node_index = current_node_group.children().index(
current_selected_node
)
insertion_point = QgsLayerTreeRegistryBridge.InsertionPoint(
current_node_group, current_node_index
)
elif isinstance(current_selected_node, QgsLayerTreeGroup):
insertion_point = QgsLayerTreeRegistryBridge.InsertionPoint(
current_selected_node, 0
)
elif project:
insertion_point = QgsLayerTreeRegistryBridge.InsertionPoint(
project.layerTreeRoot(), 0
)
if project and insertion_point:
project.layerTreeRegistryBridge().setLayerInsertionPoint(insertion_point)
project.addMapLayer(layer_node.layer())
if not have_set_active_layer and iface is not None:
iface.setActiveLayer(layer_node.layer())
have_set_active_layer = True
# reset to the previous insertion point
if project:
project.layerTreeRegistryBridge().setLayerInsertionPoint(
previous_insertion_point
)
# all layers have been added to the layer tree, so safe to call
# postProcessors now
for layer, details in layers_to_post_process:
details.postProcessor().postProcessLayer(layer, context, feedback)
if iface is not None:
iface.layerTreeView().setUpdatesEnabled(True)
feedback.setProgress(100)
if wrong_layers:
msg = QCoreApplication.translate(
"Postprocessing", "The following layers were not correctly generated."
)
msg += "\n" + "\n".join([f"• {lay}" for lay in wrong_layers]) + "\n"
msg += QCoreApplication.translate(
"Postprocessing",
"You can check the 'Log Messages Panel' in QGIS main window "
"to find more information about the execution of the algorithm.",
)
feedback.reportError(msg)
return len(wrong_layers) == 0
|