Fix crash when switching activities.

Authored by hein on Feb 16 2017, 12:46 PM.

Description

Fix crash when switching activities.

Summary:
What happens:

  • Activity switch calls invalidateFilter on TaskFilterProxyModel, which may remove rows in response.
  • Up the proxy chain, TasksModel may ask LauncherTasksModel to emit dataChanged for its contents in response to the row removal, to cause its own filtering to re-evaluate the launchers for the life cycle logic.
  • This can cause TFPM to do more filtering before invalidateFilter has actually returned, causing trip-ups such as duplicated rows in the proxy.
  • Eventually the corrupted maps cause a memory corruption crash.

This patch changes step 2 to "find the launchers in the TFPM (the
direct source model) and ask for a dataChanged for each". This
costs us a loop and accesses to IsLauncher, but on the other hand
fixes the crash and avoids a lot of filtering and mapping work
between LTM and up to and including TFPM. It's also just better
code to ask for the dataChanged only from the model we need it
from.

BUG:376055

Reviewers: Plasma, davidedmundson

Subscribers: plasma-devel

Tags: Plasma

Differential Revision: https://phabricator.kde.org/D4631

Details

Committed
heinFeb 16 2017, 12:57 PM
Differential Revision
D4631: Fix crash when switching activities.
Parents
R120:410086d06bf0: Tweak alphabetic (default) sort behavior.
Branches
Unknown
Tags
Unknown