Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Responsive cancellation of paint effects #45212

Merged
merged 12 commits into from
Sep 24, 2021

Conversation

nyalldawson
Copy link
Collaborator

This PR adds support for responsive cancelation of paint effects. These can potentially be very expensive to calculate, especially when a user accidentally sets a too-large blur radius or similar. Previously this would cause QGIS to burn away cpu in background threads trying to calculate the paint effect, even for map render jobs which had been canceled.

Now, we proxy the map layer renderer's QgsFeedback object through QgsRenderContext to the QgsDrawEffect/QgsImageOperation methods, so that the expensive code paths in these classes have a way to test if the render is canceled and they should early exit.

Refs #41149, but doesn't fix that issue (it's still possible to hang the UI for large periods of time if excessive blur radius are set for symbols, as the layer tree and symbol preview icon generation are run in the main thread and have no way to cancel these renders. In order to fully fix the bug we'd also need to implement limits on the blur sizes used for these symbol icons)

This was a historic artefact from the time before
QgsMapLayerRenderer::feedback existed
for cancelation check support

While there is the existing QgsRenderContext::renderingStopped()
check, this doesn't play well with other parts of QGIS which utilise
a QgsFeedback object for cancelation support. By adding support
for a proper QgsFeedback object in render contexts then it becomes
trivial to pass this on to feature requests, expression contexts,
and other potentially expensive functions so that these can
all be canceled responsively too.

(At some stage in the future we should consider deprecating
QgsRenderContext::rendereringStopped(), but that's not done here)
…renderer feedback

This gives rendering subcomponents (symbols, etc) access to the
layer renderer's feedback object for cancelation checks
Ultimately this means that the (potentially very expensive) image
operations can be aborted quickly when a map render job is canceled.
It avoids having background threads burning away trying to perform
the blur operations for map views we no longer want anymore.

Refs qgis#41149
@github-actions github-actions bot added this to the 3.22.0 milestone Sep 23, 2021
Copy link
Contributor

@nirvn nirvn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect; nice set of cleanups along the way here.

@nyalldawson nyalldawson merged commit 9b20b0b into qgis:master Sep 24, 2021
@nyalldawson nyalldawson deleted the responsive_cancel branch September 24, 2021 02:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants