# HG changeset patch # User Yuya Nishihara # Date 1442244759 -32400 # Node ID 5c0f5db65c6b2b77e49edcfd7f076d9d35578698 # Parent bc1f8a79b4e432ecd8b499e1c7f5184b9b3fb8f3 localrepo: refresh filecache stats only if transaction finished successfully If commit is aborted by pretxncommit hook, in-memory changelog and manifest have entries that would be added. So they must be discarded on invalidate(). But the mechanism introduced by a710936c3037 doesn't handle this case well. It tries to mitigate the penalty of invalidate() by marking in-memory cache as "clean" on unlock assuming that they are identical to the stored data. But this assumption is wrong if stored data are rolled back by tr.abort(). This patch moves the hook to post-close action so that it will never be triggered on abort. This bug was originally reported to thg, which is only reproducible in command-server process on unix, evolve disabled. https://bitbucket.org/tortoisehg/thg/issues/4285/ diff -r bc1f8a79b4e4 -r 5c0f5db65c6b mercurial/localrepo.py --- a/mercurial/localrepo.py Tue Sep 15 21:00:28 2015 +0900 +++ b/mercurial/localrepo.py Tue Sep 15 00:32:39 2015 +0900 @@ -1021,6 +1021,9 @@ reporef().hook('txnabort', throw=False, txnname=desc, **tr2.hookargs) tr.addabort('txnabort-hook', txnaborthook) + # avoid eager cache invalidation. in-memory data should be identical + # to stored data if transaction has no error. + tr.addpostclose('refresh-filecachestats', self._refreshfilecachestats) self._transref = weakref.ref(tr) return tr @@ -1198,7 +1201,7 @@ self.invalidate() self.invalidatedirstate() - def _refreshfilecachestats(self): + def _refreshfilecachestats(self, tr): """Reload stats of cached files so that they are flagged as valid""" for k, ce in self._filecache.items(): if k == 'dirstate' or k not in self.__dict__: @@ -1247,7 +1250,7 @@ l.lock() return l - l = self._lock(self.svfs, "lock", wait, self._refreshfilecachestats, + l = self._lock(self.svfs, "lock", wait, None, self.invalidate, _('repository %s') % self.origroot) self._lockref = weakref.ref(l) return l diff -r bc1f8a79b4e4 -r 5c0f5db65c6b tests/test-commandserver.t --- a/tests/test-commandserver.t Tue Sep 15 21:00:28 2015 +0900 +++ b/tests/test-commandserver.t Tue Sep 15 00:32:39 2015 +0900 @@ -415,6 +415,30 @@ *** runcommand branches default 1:731265503d86 +in-memory cache must be reloaded if transaction is aborted. otherwise +changelog and manifest would have invalid node: + + $ echo a >> a + >>> from hgclient import readchannel, runcommand, check + >>> @check + ... def txabort(server): + ... readchannel(server) + ... runcommand(server, ['commit', '--config', 'hooks.pretxncommit=false', + ... '-mfoo']) + ... runcommand(server, ['verify']) + *** runcommand commit --config hooks.pretxncommit=false -mfoo + transaction abort! + rollback completed + abort: pretxncommit hook exited with status 1 + [255] + *** runcommand verify + checking changesets + checking manifests + crosschecking files in changesets and manifests + checking files + 1 files, 2 changesets, 2 total revisions + $ hg revert --no-backup -aq + $ cat >> .hg/hgrc << EOF > [experimental] > evolution=createmarkers