repair.py
200 lines
| 6.9 KiB
| text/x-python
|
PythonLexer
/ mercurial / repair.py
Matt Mackall
|
r4702 | # repair.py - functions for repository repair for mercurial | ||
# | ||||
# Copyright 2005, 2006 Chris Mason <mason@suse.com> | ||||
# Copyright 2007 Matt Mackall | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Matt Mackall
|
r4702 | |||
Patrick Mezard
|
r16623 | from mercurial import changegroup, bookmarks | ||
Alexander Solovyov
|
r14064 | from mercurial.node import short | ||
from mercurial.i18n import _ | ||||
Simon Heimberg
|
r8312 | import os | ||
Alain Leufroy
|
r16440 | import errno | ||
Matt Mackall
|
r4702 | |||
Matt Mackall
|
r15386 | def _bundle(repo, bases, heads, node, suffix, compress=True): | ||
Alexis S. L. Carvalho
|
r5905 | """create a bundle with the specified revisions as a backup""" | ||
Matt Mackall
|
r15386 | cg = repo.changegroupsubset(bases, heads, 'strip') | ||
Alexis S. L. Carvalho
|
r5905 | backupdir = repo.join("strip-backup") | ||
if not os.path.isdir(backupdir): | ||||
os.mkdir(backupdir) | ||||
Matt Mackall
|
r11333 | name = os.path.join(backupdir, "%s-%s.hg" % (short(node), suffix)) | ||
Nicolas Dumazet
|
r11791 | if compress: | ||
bundletype = "HG10BZ" | ||||
else: | ||||
bundletype = "HG10UN" | ||||
return changegroup.writebundle(cg, name, bundletype) | ||||
Matt Mackall
|
r4702 | |||
Alexis S. L. Carvalho
|
r5910 | def _collectfiles(repo, striprev): | ||
"""find out the filelogs affected by the strip""" | ||||
Benoit Boissinot
|
r8462 | files = set() | ||
Matt Mackall
|
r4702 | |||
Matt Mackall
|
r6750 | for x in xrange(striprev, len(repo)): | ||
Martin Geisler
|
r8479 | files.update(repo[x].files()) | ||
Alexis S. L. Carvalho
|
r5902 | |||
Benoit Boissinot
|
r8462 | return sorted(files) | ||
Alexis S. L. Carvalho
|
r5902 | |||
Benoit Boissinot
|
r13702 | def _collectbrokencsets(repo, files, striprev): | ||
"""return the changesets which will be broken by the truncation""" | ||||
Matt Mackall
|
r13705 | s = set() | ||
Benoit Boissinot
|
r13702 | def collectone(revlog): | ||
redstone
|
r16628 | linkgen = (revlog.linkrev(i) for i in revlog) | ||
Alexis S. L. Carvalho
|
r5909 | # find the truncation point of the revlog | ||
redstone
|
r16628 | for lrev in linkgen: | ||
Benoit Boissinot
|
r13702 | if lrev >= striprev: | ||
Alexis S. L. Carvalho
|
r5909 | break | ||
Matt Mackall
|
r13705 | # see if any revision after this point has a linkrev | ||
# less than striprev (those will be broken by strip) | ||||
redstone
|
r16628 | for lrev in linkgen: | ||
Matt Mackall
|
r13705 | if lrev < striprev: | ||
Patrick Mezard
|
r13747 | s.add(lrev) | ||
Alexis S. L. Carvalho
|
r5909 | |||
Matt Mackall
|
r13705 | collectone(repo.manifest) | ||
for fname in files: | ||||
collectone(repo.file(fname)) | ||||
Alexis S. L. Carvalho
|
r5909 | |||
Matt Mackall
|
r13705 | return s | ||
Alexis S. L. Carvalho
|
r5909 | |||
Idan Kamara
|
r16388 | def strip(ui, repo, nodelist, backup="all", topic='backup'): | ||
Joshua Redstone
|
r17013 | # It simplifies the logic around updating the branchheads cache if we only | ||
# have to consider the effect of the stripped revisions and not revisions | ||||
# missing because the cache is out-of-date. | ||||
repo.updatebranchcache() | ||||
Alexis S. L. Carvalho
|
r5901 | cl = repo.changelog | ||
Idan Kamara
|
r16237 | # TODO handle undo of merge sets | ||
Wagner Bruna
|
r16252 | if isinstance(nodelist, str): | ||
nodelist = [nodelist] | ||||
striplist = [cl.rev(node) for node in nodelist] | ||||
striprev = min(striplist) | ||||
Matt Mackall
|
r4702 | |||
Joshua Redstone
|
r17013 | # Generate set of branches who will have nodes stripped. | ||
striprevs = repo.revs("%ld::", striplist) | ||||
stripbranches = set([repo[rev].branch() for rev in striprevs]) | ||||
# Set of potential new heads resulting from the strip. The parents of any | ||||
# node removed could be a new head because the node to be removed could have | ||||
# been the only child of the parent. | ||||
newheadrevs = repo.revs("parents(%ld::) - %ld::", striprevs, striprevs) | ||||
newheadnodes = set([cl.node(rev) for rev in newheadrevs]) | ||||
newheadbranches = set([repo[rev].branch() for rev in newheadrevs]) | ||||
Nicolas Dumazet
|
r11791 | keeppartialbundle = backup == 'strip' | ||
Alexis S. L. Carvalho
|
r6147 | # Some revisions with rev > striprev may not be descendants of striprev. | ||
# We have to find these revisions and put them in a bundle, so that | ||||
# we can restore them after the truncations. | ||||
# To create the bundle we use repo.changegroupsubset which requires | ||||
# the list of heads and bases of the set of interesting revisions. | ||||
# (head = revision in the set that has no descendant in the set; | ||||
# base = revision in the set that has no ancestor in the set) | ||||
Wagner Bruna
|
r16252 | tostrip = set(striplist) | ||
for rev in striplist: | ||||
Bryan O'Sullivan
|
r16867 | for desc in cl.descendants([rev]): | ||
Wagner Bruna
|
r16252 | tostrip.add(desc) | ||
Benoit Boissinot
|
r13702 | |||
files = _collectfiles(repo, striprev) | ||||
Matt Mackall
|
r13705 | saverevs = _collectbrokencsets(repo, files, striprev) | ||
Benoit Boissinot
|
r13702 | |||
# compute heads | ||||
saveheads = set(saverevs) | ||||
Matt Mackall
|
r6750 | for r in xrange(striprev + 1, len(cl)): | ||
Benoit Boissinot
|
r13702 | if r not in tostrip: | ||
saverevs.add(r) | ||||
saveheads.difference_update(cl.parentrevs(r)) | ||||
saveheads.add(r) | ||||
saveheads = [cl.node(r) for r in saveheads] | ||||
Matt Mackall
|
r4702 | |||
Matt Mackall
|
r15386 | # compute base nodes | ||
if saverevs: | ||||
Bryan O'Sullivan
|
r16867 | descendants = set(cl.descendants(saverevs)) | ||
Matt Mackall
|
r15386 | saverevs.difference_update(descendants) | ||
savebases = [cl.node(r) for r in saverevs] | ||||
Wagner Bruna
|
r16252 | stripbases = [cl.node(r) for r in tostrip] | ||
Pierre-Yves David
|
r17410 | newbmtarget = repo.revs('sort(heads((::%ld) - (%ld)), -rev)', | ||
tostrip, tostrip) | ||||
Augie Fackler
|
r17264 | if newbmtarget: | ||
newbmtarget = newbmtarget[0] | ||||
else: | ||||
newbmtarget = '.' | ||||
Matt Mackall
|
r4702 | |||
Matt Mackall
|
r13362 | bm = repo._bookmarks | ||
updatebm = [] | ||||
for m in bm: | ||||
rev = repo[bm[m]].rev() | ||||
if rev in tostrip: | ||||
updatebm.append(m) | ||||
Matt Mackall
|
r4702 | # create a changegroup for all the branches we need to keep | ||
Matt Mackall
|
r11197 | backupfile = None | ||
Matt Mackall
|
r4702 | if backup == "all": | ||
Idan Kamara
|
r16388 | backupfile = _bundle(repo, stripbases, cl.heads(), node, topic) | ||
Matt Mackall
|
r11200 | repo.ui.status(_("saved backup bundle to %s\n") % backupfile) | ||
Matt Mackall
|
r15386 | if saveheads or savebases: | ||
Nicolas Dumazet
|
r11791 | # do not compress partial bundle if we remove it from disk later | ||
Matt Mackall
|
r15386 | chgrpfile = _bundle(repo, savebases, saveheads, node, 'temp', | ||
compress=keeppartialbundle) | ||||
Matt Mackall
|
r4702 | |||
Henrik Stuart
|
r8073 | mfst = repo.manifest | ||
Steve Borho
|
r10881 | tr = repo.transaction("strip") | ||
Henrik Stuart
|
r8073 | offset = len(tr.entries) | ||
Matt Mackall
|
r11197 | try: | ||
tr.startgroup() | ||||
cl.strip(striprev, tr) | ||||
mfst.strip(striprev, tr) | ||||
for fn in files: | ||||
repo.file(fn).strip(striprev, tr) | ||||
tr.endgroup() | ||||
Henrik Stuart
|
r8073 | |||
Matt Mackall
|
r11197 | try: | ||
for i in xrange(offset, len(tr.entries)): | ||||
file, troffset, ignore = tr.entries[i] | ||||
repo.sopener(file, 'a').truncate(troffset) | ||||
tr.close() | ||||
Brodie Rao
|
r16705 | except: # re-raises | ||
Matt Mackall
|
r11197 | tr.abort() | ||
raise | ||||
Matt Mackall
|
r15386 | if saveheads or savebases: | ||
Matt Mackall
|
r11202 | ui.note(_("adding branch\n")) | ||
Matt Mackall
|
r11197 | f = open(chgrpfile, "rb") | ||
gen = changegroup.readbundle(f, chgrpfile) | ||||
Matt Mackall
|
r11202 | if not repo.ui.verbose: | ||
# silence internal shuffling chatter | ||||
repo.ui.pushbuffer() | ||||
Matt Mackall
|
r11197 | repo.addchangegroup(gen, 'strip', 'bundle:' + chgrpfile, True) | ||
Matt Mackall
|
r11202 | if not repo.ui.verbose: | ||
repo.ui.popbuffer() | ||||
Matt Mackall
|
r11197 | f.close() | ||
Nicolas Dumazet
|
r11791 | if not keeppartialbundle: | ||
Matt Mackall
|
r11197 | os.unlink(chgrpfile) | ||
Matt Mackall
|
r13362 | |||
Idan Kamara
|
r16237 | # remove undo files | ||
for undofile in repo.undofiles(): | ||||
try: | ||||
os.unlink(undofile) | ||||
except OSError, e: | ||||
if e.errno != errno.ENOENT: | ||||
ui.warn(_('error removing %s: %s\n') % (undofile, str(e))) | ||||
Matt Mackall
|
r13362 | for m in updatebm: | ||
Augie Fackler
|
r17264 | bm[m] = repo[newbmtarget].node() | ||
Matt Mackall
|
r13362 | bookmarks.write(repo) | ||
Brodie Rao
|
r16705 | except: # re-raises | ||
Matt Mackall
|
r11197 | if backupfile: | ||
Martin Geisler
|
r11600 | ui.warn(_("strip failed, full bundle stored in '%s'\n") | ||
% backupfile) | ||||
Matt Mackall
|
r11197 | elif saveheads: | ||
Martin Geisler
|
r11600 | ui.warn(_("strip failed, partial bundle stored in '%s'\n") | ||
Matt Mackall
|
r11197 | % chgrpfile) | ||
Henrik Stuart
|
r8073 | raise | ||
Matt Mackall
|
r4702 | |||
Joshua Redstone
|
r17013 | if len(stripbranches) == 1 and len(newheadbranches) == 1 \ | ||
and stripbranches == newheadbranches: | ||||
repo.destroyed(newheadnodes) | ||||
else: | ||||
# Multiple branches involved in strip. Will allow branchcache to become | ||||
# invalid and later on rebuilt from scratch | ||||
repo.destroyed() | ||||