KDirWatch bug and the analysis. Help is welcome!

Mark markg85 at gmail.com
Thu Aug 1 14:06:05 BST 2013


On Thu, Aug 1, 2013 at 10:41 AM, David Faure <faure at kde.org> wrote:
> On Thursday 01 August 2013 01:30:08 Mark wrote:
>> However, we have been given the power of inotify which gives more detailed
>> signals and lets us know which files have been created/added/modified which
>> we should be used imho.
>
> OK. First let's imagine that it's not a hidden file. Say you create "foo" file
> (from the command line) in a directory currently shown in dolphin.
> When using inotify, we could get a "foo was created" signal, but then what?
> KDirLister is going to need more details anyway (size, mimetype, date, icon,
> etc.). To get that, it re-lists the directory. Don't say it could just
> KIO::stat the new file, it becomes very slow if many files get
> created/modified, and it creates much more complex code paths in kdirlister
> which is already complex (it would also need to handle deletion separately).
> Instead we have a single reaction to "something changed in this directory" :
> re-list it and update it to show the changes (after basically diff'ing the new
> listing and the old listing).

This part is very interesting! Thus far i didn't test it out to see
what happens, till now. Like you, i was not expecting a stat call
hence you probably wrote the above. However, i've been proved wrong by
the code. I created a new file on the command line to exclude possible
special dolphin handling. So all i would expect was a inotify signal
about a new file, certainly no stat calls for that new file.

However, i've been proven wrong in that assumption. Twice even. When a
new file is created there are actually two stat calls being done. I'il
walk you though it.
1. create a new file
2. an IN_CREATE event is being send by inotify and is being handled in
in kdirwatch [1] starting from line 346.
3. That path ends up calling clientsForFileOrDir on line 362 [1]
4. clientsForFileOrDir is then being handled from line 532 [1] and
executes the first stat call to determine if a folder is added.
5. then somehow somewhere a timer fires and slotRescan is being
executed. That ends up calling scanEntry on line 1427 [1]
6. scanEntry then ends up doing another stat call to determine of the
file exists and ultimately return "Changed" on line 1283 [1]

I'm guessing this will even surprise you? ;)

What i think needs to happen is send a special - new - signal from
KDirWatch that tells KDirListener which files got
added/changed/deleted in a folder that KDirListener is listening to.
It's not that difficult to make something like that and seems a lot
saner to me. Specially provided that the stat calls you want to
prevent are already done. At least twice for as far as i can tell.

Or follow your initial approach and not let KDirWatch do these stat
calls for new files and just re-list. Ironically, that means it will
stat call every single file since a re-list simply does that. It's
basically running KIO::listDir all over again. no, i haven't actually
"seen" that, but the process monitor does indicate that since a
re-list on a massive folder lets the kio_file slave work quite hard.
Something it also does with the initial dir list.

[1] http://quickgit.kde.org/?p=kdelibs.git&a=blob&h=95ee3d3994fa1406a0f5c14c58d38cd3e18699ab&hb=50c62082f9614ee4271f4ddaa5f2221cea2dd83d&f=kdecore%2Fio%2Fkdirwatch.cpp

>
> The other reason why things work that way is that inotify isn't available
> everywhere. On systems without inotify, all we have is a regular stat() on the
> directory. So when anything changes in the directory, all we get from
> KDirWatch is "something changed", no details => relist.
> There's another technology available, FAM, but IIRC it gives us the same
> (directory-level signal).

Yes, i understand that. But i think both KDirWatch and KDirListener
should be able to be smart enough if the file system monitor backend
can provide more detailed information. It can't be the intention to
make KDirWatch and KDirListener as dumb as the dumbest file monitoring
backend. That kinda beats point of using inotify at all.

>
> We could, however, fix this by filtering out hidden files ("dot files") in the
> KDirWatch inotify event handling, optionally. (since this depends on whether
> the kdirlister is showing hidden files or not). But with care in case multiple
> kdirwatch clients specify a different value for the "notify for hidden files"
> new flag, for the same directory. Feel free to look into that.

If you still want that after the responses in the points above.. Sure :)
Specially since i'm now fully on KIO since today (even though
KDirWatch isn't in kio.. Why isn't it anyway?)
>
> --
> David Faure, faure at kde.org, http://www.davidfaure.fr
> Working on KDE, in particular KDE Frameworks 5
>




More information about the kde-core-devel mailing list