changeset 40557:355ae096faef

perf: add `storage` as possible source for perfrevlogwrite This source will use the stored delta.
author Boris Feld <boris.feld@octobus.net>
date Mon, 05 Nov 2018 15:24:09 +0100
parents e14d44772fb3
children 4756a33d0d31
files contrib/perf.py
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/perf.py	Mon Nov 05 15:19:44 2018 +0100
+++ b/contrib/perf.py	Mon Nov 05 15:24:09 2018 +0100
@@ -1584,6 +1584,7 @@
     * `parent-2`: add from a delta to the second parent if it exists
                   (use a delta from the first parent otherwise)
     * `parent-smallest`: add from the smallest delta (either p1 or p2)
+    * `storage`: add from the existing precomputed deltas
     """
     opts = _byteskwargs(opts)
 
@@ -1595,7 +1596,8 @@
         stoprev = rllen + stoprev
 
     source = opts['source']
-    validsource = (b'full', b'parent-1', b'parent-2', b'parent-smallest')
+    validsource = (b'full', b'parent-1', b'parent-2', b'parent-smallest',
+                   b'storage')
     if source not in validsource:
         raise error.Abort('invalid source type: %s' % source)
 
@@ -1719,6 +1721,9 @@
                 diff = p2diff
         baserev = orig.rev(parent)
         cachedelta = (baserev, diff)
+    elif source == b'storage':
+        baserev = orig.deltaparent(rev)
+        cachedelta = (baserev, orig.revdiff(orig.node(baserev), rev))
 
     return ((text, tr, linkrev, p1, p2),
             {'node': node, 'flags': flags, 'cachedelta': cachedelta})