Skip to content
Snippets Groups Projects
Commit 39871606 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

relink: use progress helper

This doesn't use progress.increment() because progress output is
skipped for some positions (so we may end up calling "update(0),
update(2), update(7)", or similar).

Differential Revision: https://phab.mercurial-scm.org/D3805
parent 8ce3f91d
No related branches found
No related tags found
No related merge requests found
......@@ -94,6 +94,7 @@
# mozilla-central as of 2010-06-10 had a ratio of just over 7:5.
total = live * 3 // 2
src = src.store.path
progress = ui.makeprogress(_('collecting'), unit=_('files'), total=total)
pos = 0
ui.status(_("tip has %d files, estimated total number of files: %d\n")
% (live, total))
......@@ -108,5 +109,5 @@
continue
pos += 1
candidates.append((os.path.join(relpath, filename), st))
ui.progress(_('collecting'), pos, filename, _('files'), total)
progress.update(pos, item=filename)
......@@ -112,5 +113,5 @@
ui.progress(_('collecting'), None)
progress.complete()
ui.status(_('collected %d candidate storage files\n') % len(candidates))
return candidates
......@@ -132,7 +133,8 @@
return st
targets = []
total = len(candidates)
progress = ui.makeprogress(_('pruning'), unit=_('files'),
total=len(candidates))
pos = 0
for fn, st in candidates:
pos += 1
......@@ -143,5 +145,5 @@
ui.debug('not linkable: %s\n' % fn)
continue
targets.append((fn, ts.st_size))
ui.progress(_('pruning'), pos, fn, _('files'), total)
progress.update(pos, item=fn)
......@@ -147,5 +149,5 @@
ui.progress(_('pruning'), None)
progress.complete()
ui.status(_('pruned down to %d probably relinkable files\n') % len(targets))
return targets
......@@ -164,4 +166,6 @@
relinked = 0
savedbytes = 0
progress = ui.makeprogress(_('relinking'), unit=_('files'),
total=len(files))
pos = 0
......@@ -167,5 +171,4 @@
pos = 0
total = len(files)
for f, sz in files:
pos += 1
source = os.path.join(src, f)
......@@ -186,9 +189,9 @@
continue
try:
relinkfile(source, tgt)
ui.progress(_('relinking'), pos, f, _('files'), total)
progress.update(pos, item=f)
relinked += 1
savedbytes += sz
except OSError as inst:
ui.warn('%s: %s\n' % (tgt, stringutil.forcebytestr(inst)))
......@@ -190,9 +193,9 @@
relinked += 1
savedbytes += sz
except OSError as inst:
ui.warn('%s: %s\n' % (tgt, stringutil.forcebytestr(inst)))
ui.progress(_('relinking'), None)
progress.complete()
ui.status(_('relinked %d files (%s reclaimed)\n') %
(relinked, util.bytecount(savedbytes)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment