From 3fb65729e122d85a27b2a6194f96e37eaed3edd1 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Tue, 20 Apr 2004 14:34:17 +0000 Subject: 2nd milestone reached: Notification now works with deleted, renamed, and inode-modified files. Next milestone: Make it work for files which are not yet there (DN_CREATE) --- (limited to 'libopie2/opiecore/ofilenotify.cpp') diff --git a/libopie2/opiecore/ofilenotify.cpp b/libopie2/opiecore/ofilenotify.cpp index de4c63b..270570e 100644 --- a/libopie2/opiecore/ofilenotify.cpp +++ b/libopie2/opiecore/ofilenotify.cpp @@ -200,10 +200,18 @@ bool OFileNotification::hasChanged() struct stat newstat; ::memset( &newstat, 0, sizeof newstat ); - ::stat( _path, &newstat ); + int result = ::stat( _path, &newstat ); // may fail if file has been renamed or deleted. that doesn't matter :) + qDebug( "result of newstat call is %d (%s=%d)", result, strerror( errno ), errno ); qDebug( "stat.atime = %0lx, newstat.atime = %0lx", (long)_stat.st_atime, (long)newstat.st_atime ); qDebug( "stat.mtime = %0lx, newstat.mtime = %0lx", (long)_stat.st_mtime, (long)newstat.st_mtime ); + qDebug( "stat.ctime = %0lx, newstat.ctime = %0lx", (long)_stat.st_ctime, (long)newstat.st_ctime ); + + if ( !c && (_type & (Delete|Rename)) && (long)newstat.st_atime == 0 && (long)newstat.st_mtime == 0 && (long)newstat.st_ctime == 0) + { + qDebug( "OFileNotification::hasChanged(): file has been deleted or renamed" ); + c = true; + } if ( !c && (_type & Access) && (long)_stat.st_atime < (long)newstat.st_atime ) { qDebug( "OFileNotification::hasChanged(): atime changed" ); @@ -214,6 +222,11 @@ bool OFileNotification::hasChanged() qDebug( "OFileNotification::hasChanged(): mtime changed" ); c = true; } + if ( !c && (_type & Attrib) && (long)_stat.st_ctime < (long)newstat.st_ctime ) + { + qDebug( "OFileNotification::hasChanged(): ctime changed" ); + c = true; + } return c; } -- cgit v0.9.0.2