Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-02 Thread Mark
On Fri, Aug 2, 2013 at 3:41 PM, David Faure wrote: > On Friday 02 August 2013 15:07:19 Mark wrote: >> Just for my view on this. What's the difference between stat() and >> kio::stat()? > > Err, you know the answer is in the docs, right? > stat() = unix-only, local files only, sync > KIO::stat() =

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-02 Thread David Faure
On Friday 02 August 2013 15:07:19 Mark wrote: > Just for my view on this. What's the difference between stat() and > kio::stat()? Err, you know the answer is in the docs, right? stat() = unix-only, local files only, sync KIO::stat() = portable, network-transparent, async > >> Or follow your initi

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-02 Thread Mark
On Fri, Aug 2, 2013 at 12:15 PM, David Faure wrote: > On Thursday 01 August 2013 15:06:05 Mark wrote: >> On Thu, Aug 1, 2013 at 10:41 AM, David Faure wrote: >> > On Thursday 01 August 2013 01:30:08 Mark wrote: >> >> However, we have been given the power of inotify which gives more >> >> detailed

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-02 Thread David Faure
On Thursday 01 August 2013 21:24:19 Rolf Eike Beer wrote: > David Faure 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 > > >

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-02 Thread David Faure
On Thursday 01 August 2013 15:06:05 Mark wrote: > On Thu, Aug 1, 2013 at 10:41 AM, David Faure 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

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Rolf Eike Beer
David Faure 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

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Frank Reininghaus
Hi, 2013/8/1 Thomas Lübking: > On Donnerstag, 1. August 2013 13:24:19 CEST, Frank Reininghaus wrote: >> >> Hi, >> >> 2013/8/1 Thomas Lübking: >>> >>> On Donnerstag, 1. August 2013 12:44:57 CEST, Frank Reininghaus wrote: ... >> >> >> Peter changed that quite some time ago already because the >> KUn

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Mark
On Thu, Aug 1, 2013 at 10:41 AM, David Faure 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. Firs

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Thomas Lübking
On Donnerstag, 1. August 2013 13:24:19 CEST, Frank Reininghaus wrote: Hi, 2013/8/1 Thomas Lübking: On Donnerstag, 1. August 2013 12:44:57 CEST, Frank Reininghaus wrote: ... Peter changed that quite some time ago already because the KUniqueApplication thing caused quite a few problems (like mo

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Frank Reininghaus
Hi, 2013/8/1 Thomas Lübking: > On Donnerstag, 1. August 2013 12:44:57 CEST, Frank Reininghaus wrote: >> >> Hi, >> >> 2013/8/1 Thomas Lübking: We could, however, fix this by filtering out hidden files ("dot files") in the KDirWatch inotify event handling, optionally. >>> >>> >>>

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Thomas Lübking
On Donnerstag, 1. August 2013 12:44:57 CEST, Frank Reininghaus wrote: Hi, 2013/8/1 Thomas Lübking: We could, however, fix this by filtering out hidden files ("dot files") in the KDirWatch inotify event handling, optionally. What doesn't help you when listing them as well. Questions: 1. why

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Frank Reininghaus
Hi, 2013/8/1 Thomas Lübking: >> We could, however, fix this by filtering out hidden files ("dot files") in >> the KDirWatch inotify event handling, optionally. > > What doesn't help you when listing them as well. > > Questions: > 1. why does dolphin update the .directory file *intantly* and esp. w

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread Thomas Lübking
On Donnerstag, 1. August 2013 10:41:22 CEST, David Faure wrote: We could, however, fix this by filtering out hidden files ("dot files") in the KDirWatch inotify event handling, optionally. What doesn't help you when listing them as well. Questions: 1. why does dolphin update the .directory f

Re: KDirWatch bug and the analysis. Help is welcome!

2013-08-01 Thread David Faure
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 "

Re: KDirWatch bug and the analysis. Help is welcome!

2013-07-31 Thread Mark
On Thu, Aug 1, 2013 at 12:25 AM, Milian Wolff wrote: > On Wednesday 31 July 2013 20:51:11 Mark wrote: > > Hi, > > > > I'm horrible in clearly explaining issues and i'm going to explain a > > lot in this mail. Please read it very carefully. > > > > > Subsequent signals (even create, delete or any

Re: KDirWatch bug and the analysis. Help is welcome!

2013-07-31 Thread Milian Wolff
On Wednesday 31 July 2013 20:51:11 Mark wrote: > Hi, > > I'm horrible in clearly explaining issues and i'm going to explain a > lot in this mail. Please read it very carefully. > Subsequent signals (even create, delete or anything besides dirty) is > following this same path where the emit is b

KDirWatch bug and the analysis. Help is welcome!

2013-07-31 Thread Mark
Hi, I'm horrible in clearly explaining issues and i'm going to explain a lot in this mail. Please read it very carefully. = The symptoms = When opening my massively huge test folder (500.000 0 byte files) for a resorting test in dolphin (pressing the name Name column when in details view) i notic