# HG changeset patch # User Benoit Boissinot # Date 1243175602 -7200 # Node ID b26aaf13f29ccf38d98208190adea472b803473c # Parent 5edb2a8e29ea3ece3be8271eb82a9b62680e8e91# Parent 021de2d12355022c5fdf2f4e355d890fae1ed1f2 merge with crew diff -r 5edb2a8e29ea -r b26aaf13f29c hgext/inotify/server.py --- a/hgext/inotify/server.py Sun May 24 16:27:56 2009 +0200 +++ b/hgext/inotify/server.py Sun May 24 16:33:22 2009 +0200 @@ -250,36 +250,48 @@ return 'i' return type_ - def updatestatus(self, wfn, osstat=None, newstatus=None): + def updatefile(self, wfn, osstat): + ''' + update the file entry of an existing file. + + osstat: (mode, size, time) tuple, as returned by os.lstat(wfn) + ''' + + self._updatestatus(wfn, self.filestatus(wfn, osstat)) + + def deletefile(self, wfn, oldstatus): + ''' + update the entry of a file which has been deleted. + + oldstatus: char in statuskeys, status of the file before deletion + ''' + if oldstatus == 'r': + newstatus = 'r' + elif oldstatus in 'almn': + newstatus = '!' + else: + newstatus = None + + self.statcache.pop(wfn, None) + self._updatestatus(wfn, newstatus) + + def _updatestatus(self, wfn, newstatus): ''' Update the stored status of a file or directory. - osstat: (mode, size, time) tuple, as returned by os.lstat(wfn) - - newstatus: char in statuskeys, new status to apply. + newstatus: - char in (statuskeys + 'ni'), new status to apply. + - or None, to stop tracking wfn ''' - if osstat: - newstatus = self.filestatus(wfn, osstat) - else: - self.statcache.pop(wfn, None) root, fn = self.split(wfn) d = self.dir(self.tree, root) + oldstatus = d.get(fn) - isdir = False - if oldstatus: - try: - if not newstatus: - if oldstatus in 'almn': - newstatus = '!' - elif oldstatus == 'r': - newstatus = 'r' - except TypeError: - # oldstatus may be a dict left behind by a deleted - # directory - isdir = True - else: - if oldstatus in self.statuskeys and oldstatus != newstatus: - del self.dir(self.statustrees[oldstatus], root)[fn] + # oldstatus can be either: + # - None : fn is new + # - a char in statuskeys: fn is a (tracked) file + # - a dict: fn is a directory + isdir = isinstance(oldstatus, dict) + if self.ui.debugflag and oldstatus != newstatus: if isdir: self.ui.note(_('status: %r dir(%d) -> %s\n') % @@ -288,6 +300,9 @@ self.ui.note(_('status: %r %s -> %s\n') % (wfn, oldstatus, newstatus)) if not isdir: + if oldstatus and oldstatus in self.statuskeys \ + and oldstatus != newstatus: + del self.dir(self.statustrees[oldstatus], root)[fn] if newstatus and newstatus != 'i': d[fn] = newstatus if newstatus in self.statuskeys: @@ -296,10 +311,6 @@ dd[fn] = newstatus else: d.pop(fn, None) - elif not newstatus: - # a directory is being removed, check its contents - for subfile, b in oldstatus.copy().iteritems(): - self.updatestatus(wfn + '/' + subfile, None) def check_deleted(self, key): @@ -325,7 +336,7 @@ d = self.dir(self.tree, wroot) for fn in files: wfn = join(wroot, fn) - self.updatestatus(wfn, self.getstat(wfn)) + self.updatefile(wfn, self.getstat(wfn)) ds.pop(wfn, None) wtopdir = topdir if wtopdir and wtopdir[-1] != '/': @@ -337,9 +348,9 @@ st = self.stat(wfn) except OSError: status = state[0] - self.updatestatus(wfn, None, newstatus=status) + self.deletefile(wfn, status) else: - self.updatestatus(wfn, st) + self.updatefile(wfn, st) self.check_deleted('!') self.check_deleted('r') @@ -409,7 +420,7 @@ try: st = self.stat(wpath) if stat.S_ISREG(st[0]): - self.updatestatus(wpath, st) + self.updatefile(wpath, st) except OSError: pass @@ -420,7 +431,7 @@ st = self.stat(wpath) if stat.S_ISREG(st[0]): if self.repo.dirstate[wpath] in 'lmn': - self.updatestatus(wpath, st) + self.updatefile(wpath, st) except OSError: pass @@ -432,7 +443,7 @@ self.check_dirstate() return - self.updatestatus(wpath, None) + self.deletefile(wpath, self.repo.dirstate[wpath]) def schedule_work(self, wpath, evt): prev = self.eventq.setdefault(wpath, []) @@ -468,8 +479,12 @@ (self.event_time(), wpath)) if evt.mask & inotify.IN_ISDIR: + tree = self.dir(self.tree, wpath).copy() + for wfn, ignore in self.walk('?', tree): + self.deletefile(join(wpath, wfn), '?') self.scan(wpath) - self.schedule_work(wpath, 'd') + else: + self.schedule_work(wpath, 'd') def process_modify(self, wpath, evt): if self.ui.debugflag: diff -r 5edb2a8e29ea -r b26aaf13f29c tests/test-inotify-issue1556 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-inotify-issue1556 Sun May 24 16:33:22 2009 +0200 @@ -0,0 +1,27 @@ +#!/bin/sh + +"$TESTDIR/hghave" inotify || exit 80 + +hg init + +touch a b +hg add a b +rm b + +echo % status without inotify +hg st + +echo "[extensions]" >> $HGRCPATH +echo "inotify=" >> $HGRCPATH + +echo % inserve +hg inserve -d --pid-file=hg.pid 2>&1 +cat hg.pid >> "$DAEMON_PIDS" + +echo % status +hg st + +sleep 1 +echo "Are we able to kill the service? if not, the service died on some error" +kill `cat hg.pid` + diff -r 5edb2a8e29ea -r b26aaf13f29c tests/test-inotify-issue1556.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-inotify-issue1556.out Sun May 24 16:33:22 2009 +0200 @@ -0,0 +1,9 @@ +% status without inotify +A a +! b +% inserve +% status +A a +! b +? hg.pid +Are we able to kill the service? if not, the service died on some error