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

sortproxymodel: check if source model is a proxy model #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

BLumia
Copy link

@BLumia BLumia commented Jul 24, 2024

if the source model is a proxy model, the source model's source model might be changed and our SortProxyModel won't get notified. This might happen when we try to pass a QML-based proxy model as source model, like KDE Framework's KItemModel.KSortFilterProxyModel for example.

@dfaure-kdab
Copy link
Contributor

Doesn't this rather mean that KSortFilterProxyModel forgets to emit modelReset in its own setSourceModel?

It's supposed to tell the world if its own source model changes....

@BLumia
Copy link
Author

BLumia commented Jul 24, 2024

Doesn't this rather mean that KSortFilterProxyModel forgets to emit modelReset in its own setSourceModel?

I'm actually testing it with a custom proxy model that simply subclassed QSortFilterProxyModel and overrided filterAcceptsRow. modelReset was emitted and SortProxyModel simply didn't connect that signal to update its internal data. Currently SortProxyModel only connected to these three signals:

connect(model, &QAbstractItemModel::dataChanged, this, &SortProxyModel::handleDataChanged);
connect(model, &QAbstractItemModel::rowsInserted, this, &SortProxyModel::handleRowsInserted);
connect(model, &QAbstractItemModel::rowsRemoved, this, &SortProxyModel::handleRowsRemoved);

KSortFilterProxyModel (and likely all proxy models) can also be used to reproduce the issue. I only mentioned that one because it seems that's the one that most Qt developers know.

@dfaure-kdab
Copy link
Contributor

Then the bug is that SortProxyModel doesn't connect to modelReset.
This would be a much cleaner fix than connecting to the source's source.

@BLumia
Copy link
Author

BLumia commented Jul 24, 2024

Then the bug is that SortProxyModel doesn't connect to modelReset.

Currently, when using SortProxyModel, developer can still reset the model freely and the row move signals for QML is still emitted without any issue. I guess that might be one of the intended usages?

Documentation of QAbstractItemModel::beginResetModel():

When a model radically changes its data it can sometimes be easier to just call this function rather than emit dataChanged() to inform other components when the underlying data source, or its structure, has changed.

If we call resetInternalData everytime when the model gets reset, then the row move signals won't be there, thus no row move animation for QML, which (maybe) break the whole propose of using SortProxyModel. If it's intentional not to be used in such way, then indeed using modelReset is cleaner.

@BLumia
Copy link
Author

BLumia commented Jul 24, 2024

Oh, just realized, did you mean treat modelReset as full range dataChanged? Will try to test it later and see if that work.

@dfaure-kdab
Copy link
Contributor

I don't really know. I actually don't know anything about SortProxyModel myself, @AndreSomers will have final say in any case.
But as the maintainer of itemmodels in Qt, I know for sure that the job of a proxy is to react to modelReset (and layoutChanged), not to connect to the source's source directly.

@BLumia
Copy link
Author

BLumia commented Jul 24, 2024

Will try to test it later and see if that work.

modelreset.zip

Above is a simple test program for the issue that I want to address. (the code is plainly for testing purpose so it's still sort of messy)

  • If we compile and run it directly, the app window won't show any data, which is the bug.
  • If we uncomment sortproxymodel.cpp line 143 to line 146, then recompile and run it, there will be data shown in the window, and when we drag the slider at the bottom side of the window, the items will moved with animation
  • If we don't uncomment sortproxymodel.cpp line 143 to line 146, but uncomment line 136 to line 142 then recompile and run, the bug still exists
  • If we keep sortproxymodel.cpp line 136 to 146 commented, and change main.qml line 38 to sourceModel: theModel, there will be no bug since theModel is not a proxy model.

if the source model is a proxy model, the source model's source
model might be changed and our sortproxymodel won't get notified.
This might happen when we try to pass a QML-based proxy model as
source model, like KItemModel.KSortFilterProxyModel for example.
@BLumia
Copy link
Author

BLumia commented Jul 25, 2024

Patch updated, now we rely on modelReset instead and will only reset the internal data when necessary, I guess this approach will be fine in both cases.

@BLumia
Copy link
Author

BLumia commented Jul 31, 2024

@dfaure-kdab sorry for the ping, could you check if the updated patch is fine to merge?

@dfaure-kdab
Copy link
Contributor

As I said, @AndreSomers will be the one to approve this, as the maintainer of sortproxymodel.
He's on vacations though, so I'm afraid you'll have to wait a bit longer.

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.

2 participants