[Bug 5024] New: Unionrepo fails in some cases with filelog.iscensored

mercurial-bugs at selenic.com mercurial-bugs at selenic.com
Thu Dec 24 21:07:26 UTC 2015


https://bz.mercurial-scm.org/show_bug.cgi?id=5024

            Bug ID: 5024
           Summary: Unionrepo fails in some cases with filelog.iscensored
           Product: Mercurial
           Version: 3.6.2
          Hardware: PC
                OS: Mac OS
            Status: UNCONFIRMED
          Severity: feature
          Priority: wish
         Component: Mercurial
          Assignee: bugzilla at selenic.com
          Reporter: sean at farley.io
                CC: mercurial-devel at selenic.com

Created attachment 1888
  --> https://bz.mercurial-scm.org/attachment.cgi?id=1888&action=edit
script to show stacktrace

I couldn't make a simple test case but I can provide an example that reliably
fails:

1) Clone yt:
   hg clone -r d9502d848029 https://bitbucket.org/yt_analysis/yt

2) Clone mjturk's fork:
   hg clone -r 298252ca425b https://bitbucket.org/yt_analysis/yt yt-turk

3) Put the attached script into 'yt' (not 'yt-turk')

4) Run the script:
   HGRCPATH=/dev/null ./test.py

The output:
74968
Traceback (most recent call last):
  File "./test.py", line 18, in <module>
    print fctx2.size()
  File "/Users/sean/projects/hg/mercurial/context.py", line 1071, in size
    return self._filelog.size(self._filerev)
  File "/Users/sean/projects/hg/mercurial/filelog.py", line 76, in size
    if self.iscensored(rev):
  File "/Users/sean/projects/hg/mercurial/unionrepo.py", line 185, in
iscensored
    return self.revlog2.iscensored(rev)
  File "/Users/sean/projects/hg/mercurial/filelog.py", line 118, in iscensored
    return self.flags(rev) & revlog.REVIDX_ISCENSORED
  File "/Users/sean/projects/hg/mercurial/revlog.py", line 403, in flags
    return self.index[rev][0] & 0xFFFF
IndexError: revlog index out of range

The bisected changeset is 22a979d1ae56:

changeset:   29659:22a979d1ae56
user:        Mike Edgar <adgar at google.com>
date:        Mon Jan 12 15:29:36 2015 -0500
files:       mercurial/filelog.py
description:
filelog: use censored revlog flag bit to quickly check if a node is censored


diff --git a/mercurial/filelog.py b/mercurial/filelog.py
--- a/mercurial/filelog.py
+++ b/mercurial/filelog.py
@@ -83,11 +83,11 @@ class filelog(revlog.revlog):
         samehashes = not super(filelog, self).cmp(node, t)
         if samehashes:
             return False

         # censored files compare against the empty file
-        if self._iscensored(node):
+        if self._iscensored(self.rev(node)):
             return text != ''

         # renaming a file produces a different hash, even if the data
         # remains unchanged. Check if it's the case (slow):
         if self.renamed(node):
@@ -105,12 +105,8 @@ class filelog(revlog.revlog):
             raise

     def _file(self, f):
         return filelog(self.opener, f)

-    def _iscensored(self, revornode):
+    def _iscensored(self, rev):
         """Check if a file revision is censored."""
-        try:
-            self.revision(revornode)
-            return False
-        except error.CensoredNodeError:
-            return True
+        return self.flags(rev) & revlog.REVIDX_ISCENSORED

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the Mercurial-devel mailing list