Mercurial > hg
diff mercurial/upgrade.py @ 39859:32d3ed3023bb
upgrade: use rawsize() instead of revlog index
The revlog index is a very low-level data structure and it shouldn't
be exposed to the storage interface - at least not in its current
form.
upgrade.py is the only consumer of the index attribute on file storage
in the repository.
This commit rewrites that final consumer to use rawsize() instead of
going through the index. This is actually the more proper API to use,
as rawsize() will accurately report the size of revisions which have
a negative size in the index.
Differential Revision: https://phab.mercurial-scm.org/D4719
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 24 Sep 2018 09:38:27 -0700 |
parents | 8dab7c8a93eb |
children | b399ff55ee6d |
line wrap: on
line diff
--- a/mercurial/upgrade.py Thu Sep 20 19:20:01 2018 -0700 +++ b/mercurial/upgrade.py Mon Sep 24 09:38:27 2018 -0700 @@ -491,10 +491,7 @@ for path in rl.files(): datasize += rl.opener.stat(path).st_size - idx = rl.index - for rev in rl: - e = idx[rev] - rawsize += e[2] + rawsize += sum(map(rl.rawsize, iter(rl))) srcsize += datasize srcrawsize += rawsize