Skip to content
Commit 43ab022f authored by Stefan Brüns's avatar Stefan Brüns
Browse files

[Scheduler] Fix wrong usage of obsolete QFileInfo::created() timestamp

Summary:
Baloo uses the metadata change time (stat.st_ctime, man 7 inode) to check
for XAttr updates. This field corresponds to
QFileInfo::metadataChangeTime(), while created() returns the first
available of [birthtime, ctime, mtime].

On filesystems supporting birthtime (XFS, BTRFS) some files were
continously reindexed as the BasicIndexingJob stored the ctime, while the
UnindexedFileIterator compared the stored value with the btime. On the
other hand, XAttr changes where not detected when ctime and btime
initially matched, as the btime is fixed.

While at it, document the semantics of the two timestamps.

CCBUG: 349615
CCBUG: 397549

Test Plan:
1. watch baloo_file with strace -efile during startup
  -> files with btime != ctime are indexed just once
2. add a Tag to a file
  -> file is immediately updated in index, not just after
  baloo_file restart (e.g. session restart)

Reviewers: #baloo, #frameworks, poboiko, ngraham, lbeltrame

Reviewed By: lbeltrame

Subscribers: lbeltrame, kde-frameworks-devel

Tags: #frameworks, #baloo

Differential Revision: https://phabricator.kde.org/D16255
parent 1509ca51
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment