filelog.py
85 lines
| 2.5 KiB
| text/x-python
|
PythonLexer
/ mercurial / filelog.py
mpm@selenic.com
|
r1089 | # filelog.py - file history class for mercurial | ||
# | ||||
Thomas Arendsen Hein
|
r4635 | # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> | ||
mpm@selenic.com
|
r1089 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
mpm@selenic.com
|
r1089 | |||
Gregory Szorc
|
r25948 | from __future__ import absolute_import | ||
Gregory Szorc
|
r37459 | from .thirdparty.zope import ( | ||
interface as zi, | ||||
) | ||||
Gregory Szorc
|
r25948 | from . import ( | ||
Gregory Szorc
|
r37459 | repository, | ||
Gregory Szorc
|
r25948 | revlog, | ||
) | ||||
mpm@selenic.com
|
r1089 | |||
Gregory Szorc
|
r37459 | @zi.implementer(repository.ifilestorage) | ||
Matt Mackall
|
r7634 | class filelog(revlog.revlog): | ||
Matt Mackall
|
r4258 | def __init__(self, opener, path): | ||
Durham Goode
|
r19148 | super(filelog, self).__init__(opener, | ||
Gregory Szorc
|
r37461 | "/".join(("data", path + ".i")), | ||
censorable=True) | ||||
Matt Harbison
|
r35583 | # full name of the user visible file, relative to the repository root | ||
self.filename = path | ||||
mpm@selenic.com
|
r1089 | |||
def read(self, node): | ||||
t = self.revision(node) | ||||
if not t.startswith('\1\n'): | ||||
return t | ||||
Benoit Boissinot
|
r2579 | s = t.index('\1\n', 2) | ||
Matt Mackall
|
r10282 | return t[s + 2:] | ||
mpm@selenic.com
|
r1089 | |||
def add(self, text, meta, transaction, link, p1=None, p2=None): | ||||
if meta or text.startswith('\1\n'): | ||||
Gregory Szorc
|
r37460 | text = revlog.packmeta(meta, text) | ||
mpm@selenic.com
|
r1089 | return self.addrevision(text, transaction, link, p1, p2) | ||
mpm@selenic.com
|
r1116 | def renamed(self, node): | ||
Matt Mackall
|
r7634 | if self.parents(node)[0] != revlog.nullid: | ||
mpm@selenic.com
|
r1116 | return False | ||
Matt Mackall
|
r13240 | t = self.revision(node) | ||
Gregory Szorc
|
r37460 | m = revlog.parsemeta(t)[0] | ||
Christian Ebert
|
r5915 | if m and "copy" in m: | ||
Matt Mackall
|
r7634 | return (m["copy"], revlog.bin(m["copyrev"])) | ||
mpm@selenic.com
|
r1116 | return False | ||
Matt Mackall
|
r2898 | def size(self, rev): | ||
"""return the size of a given revision""" | ||||
# for revisions with renames, we have to go the slow way | ||||
node = self.node(rev) | ||||
if self.renamed(node): | ||||
return len(self.read(node)) | ||||
Mike Edgar
|
r24118 | if self.iscensored(rev): | ||
Mike Edgar
|
r22597 | return 0 | ||
Matt Mackall
|
r2898 | |||
Nicolas Dumazet
|
r11540 | # XXX if self.read(node).startswith("\1\n"), this returns (size+4) | ||
Durham Goode
|
r19148 | return super(filelog, self).size(rev) | ||
Matt Mackall
|
r2898 | |||
Matt Mackall
|
r2887 | def cmp(self, node, text): | ||
Nicolas Dumazet
|
r11539 | """compare text with a given file revision | ||
returns True if text is different than what is stored. | ||||
""" | ||||
Matt Mackall
|
r2887 | |||
Nicolas Dumazet
|
r11541 | t = text | ||
if text.startswith('\1\n'): | ||||
t = '\1\n\1\n' + text | ||||
Durham Goode
|
r19148 | samehashes = not super(filelog, self).cmp(node, t) | ||
Nicolas Dumazet
|
r11541 | if samehashes: | ||
return False | ||||
Mike Edgar
|
r22597 | # censored files compare against the empty file | ||
Mike Edgar
|
r24118 | if self.iscensored(self.rev(node)): | ||
Mike Edgar
|
r22597 | return text != '' | ||
Nicolas Dumazet
|
r11541 | # renaming a file produces a different hash, even if the data | ||
# remains unchanged. Check if it's the case (slow): | ||||
if self.renamed(node): | ||||
Matt Mackall
|
r2887 | t2 = self.read(node) | ||
Matt Mackall
|
r2895 | return t2 != text | ||
Matt Mackall
|
r2887 | |||
Nicolas Dumazet
|
r11541 | return True | ||