mercurial/revlogutils/constants.py
changeset 46856 34e1fa4b548a
parent 46855 aba724bf550e
child 46857 cc65cea90edb
--- a/mercurial/revlogutils/constants.py	Mon Apr 05 12:20:40 2021 +0200
+++ b/mercurial/revlogutils/constants.py	Mon Apr 05 12:20:52 2021 +0200
@@ -9,6 +9,8 @@
 
 from __future__ import absolute_import
 
+import struct
+
 from ..interfaces import repository
 
 ### main revlog header
@@ -32,6 +34,16 @@
 
 ### individual entry
 
+## index v0:
+#  4 bytes: offset
+#  4 bytes: compressed length
+#  4 bytes: base rev
+#  4 bytes: link rev
+# 20 bytes: parent 1 nodeid
+# 20 bytes: parent 2 nodeid
+# 20 bytes: nodeid
+INDEX_ENTRY_V0 = struct.Struct(b">4l20s20s20s")
+
 # revlog index flags
 
 # For historical reasons, revlog's internal flags were exposed via the