diff mercurial/revlog.py @ 1089:142b5d5ec9cc

Break apart hg.py - move the various parts of hg.py into their own files - create node.py to store node manipulation functions
author mpm@selenic.com
date Sat, 27 Aug 2005 14:21:25 -0700
parents 30974cf73435
children d62130f99a73
line wrap: on
line diff
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -12,10 +12,7 @@ of the GNU General Public License, incor
 
 import zlib, struct, sha, binascii, heapq
 from mercurial import mdiff
-
-def hex(node): return binascii.hexlify(node)
-def bin(node): return binascii.unhexlify(node)
-def short(node): return hex(node[:6])
+from node import *
 
 def compress(text):
     """ generate a possibly-compressed representation of text """
@@ -38,21 +35,6 @@ def decompress(bin):
     if t == 'u': return bin[1:]
     raise RevlogError("unknown compression type %s" % t)
 
-def hash(text, p1, p2):
-    """generate a hash from the given text and its parent hashes
-
-    This hash combines both the current file contents and its history
-    in a manner that makes it easy to distinguish nodes with the same
-    content in the revision graph.
-    """
-    l = [p1, p2]
-    l.sort()
-    s = sha.new(l[0])
-    s.update(l[1])
-    s.update(text)
-    return s.digest()
-
-nullid = "\0" * 20
 indexformat = ">4l20s20s20s"
 
 class lazyparser: