aboutsummaryrefslogtreecommitdiffstats
path: root/stats/statsview.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-01-21 13:51:03 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-02-06 10:00:39 -0800
commit122092707c608e930fbade660be2cb3f7a9c1946 (patch)
tree69dd3bdc73b98f2a2a9142208f9062223bab49a1 /stats/statsview.h
parent805a2388aff52ff900c9311b444d6dc127b3c54f (diff)
downloadsubsurface-122092707c608e930fbade660be2cb3f7a9c1946.tar.gz
statistics: delete chart items when root node is deleted
When reparenting the statistics widget, QtQuick deletes the rootNode and all the child nodes. It is unclear whether this is a bug or intended behavior. In any case, it means that the pointers to QSG nodes in the chart items become stale. To avoid this, delete all chart items in the root node's destructor, before QtQuick can do anything. It is unclear from which context this is called (render or UI) and whether this is even valid. In some tests, it seemed to work. The difficulty is that all the stale pointers to chart items have to be deleted as well. All in all, the QSG memory management is a big nuisance and very brittle. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/statsview.h')
-rw-r--r--stats/statsview.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/stats/statsview.h b/stats/statsview.h
index 3623c01eb..cc497792b 100644
--- a/stats/statsview.h
+++ b/stats/statsview.h
@@ -43,13 +43,14 @@ public:
~StatsView();
void plot(const StatsState &state);
- void updateFeatures(const StatsState &state); // Updates the visibility of chart features, such as legend, regression, etc.
+ void updateFeatures(const StatsState &state); // Updates the visibility of chart features, such as legend, regression, etc.
QQuickWindow *w() const; // Make window available to items
QSizeF size() const;
QRectF plotArea() const;
void addQSGNode(QSGNode *node, ChartZValue z); // Must only be called in render thread!
void registerChartItem(ChartItem &item);
void registerDirtyChartItem(ChartItem &item);
+ void emergencyShutdown(); // Called when QQuick decides to delete out root node.
// Create a chart item and add it to the scene.
// The item must not be deleted by the caller, but can be
@@ -151,6 +152,10 @@ private:
// There are three double linked lists of chart items:
// clean items, dirty items and items to be deleted.
+ // Note that only the render thread must delete chart items,
+ // and therefore these lists are the only owning pointers
+ // to chart items. All other pointers are non-owning and
+ // can therefore become stale.
struct ChartItemList {
ChartItemList();
ChartItem *first, *last;
@@ -161,6 +166,7 @@ private:
};
ChartItemList cleanItems, dirtyItems, deletedItems;
void deleteChartItemInternal(ChartItem &item);
+ void freeDeletedChartItems();
};
// This implementation detail must be known to users of the class.