Show More
@@ -1,320 +1,321 | |||
|
1 | 1 | # repair.py - functions for repository repair for mercurial |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2005, 2006 Chris Mason <mason@suse.com> |
|
4 | 4 | # Copyright 2007 Matt Mackall |
|
5 | 5 | # |
|
6 | 6 | # This software may be used and distributed according to the terms of the |
|
7 | 7 | # GNU General Public License version 2 or any later version. |
|
8 | 8 | |
|
9 | 9 | from __future__ import absolute_import |
|
10 | 10 | |
|
11 | 11 | import errno |
|
12 | 12 | |
|
13 | 13 | from .i18n import _ |
|
14 | 14 | from .node import short |
|
15 | 15 | from . import ( |
|
16 | 16 | bundle2, |
|
17 | 17 | changegroup, |
|
18 | 18 | error, |
|
19 | 19 | exchange, |
|
20 | 20 | util, |
|
21 | 21 | ) |
|
22 | 22 | |
|
23 | 23 | def _bundle(repo, bases, heads, node, suffix, compress=True): |
|
24 | 24 | """create a bundle with the specified revisions as a backup""" |
|
25 | 25 | cgversion = '01' |
|
26 | 26 | if 'generaldelta' in repo.requirements: |
|
27 | 27 | cgversion = '02' |
|
28 | 28 | |
|
29 | 29 | cg = changegroup.changegroupsubset(repo, bases, heads, 'strip', |
|
30 | 30 | version=cgversion) |
|
31 | 31 | backupdir = "strip-backup" |
|
32 | 32 | vfs = repo.vfs |
|
33 | 33 | if not vfs.isdir(backupdir): |
|
34 | 34 | vfs.mkdir(backupdir) |
|
35 | 35 | |
|
36 | 36 | # Include a hash of all the nodes in the filename for uniqueness |
|
37 | 37 | allcommits = repo.set('%ln::%ln', bases, heads) |
|
38 | 38 | allhashes = sorted(c.hex() for c in allcommits) |
|
39 | 39 | totalhash = util.sha1(''.join(allhashes)).hexdigest() |
|
40 | 40 | name = "%s/%s-%s-%s.hg" % (backupdir, short(node), totalhash[:8], suffix) |
|
41 | 41 | |
|
42 | 42 | comp = None |
|
43 | 43 | if cgversion != '01': |
|
44 | 44 | bundletype = "HG20" |
|
45 | 45 | if compress: |
|
46 | 46 | comp = 'BZ' |
|
47 | 47 | elif compress: |
|
48 | 48 | bundletype = "HG10BZ" |
|
49 | 49 | else: |
|
50 | 50 | bundletype = "HG10UN" |
|
51 | 51 | return changegroup.writebundle(repo.ui, cg, name, bundletype, vfs, |
|
52 | 52 | compression=comp) |
|
53 | 53 | |
|
54 | 54 | def _collectfiles(repo, striprev): |
|
55 | 55 | """find out the filelogs affected by the strip""" |
|
56 | 56 | files = set() |
|
57 | 57 | |
|
58 | 58 | for x in xrange(striprev, len(repo)): |
|
59 | 59 | files.update(repo[x].files()) |
|
60 | 60 | |
|
61 | 61 | return sorted(files) |
|
62 | 62 | |
|
63 | 63 | def _collectbrokencsets(repo, files, striprev): |
|
64 | 64 | """return the changesets which will be broken by the truncation""" |
|
65 | 65 | s = set() |
|
66 | 66 | def collectone(revlog): |
|
67 | 67 | _, brokenset = revlog.getstrippoint(striprev) |
|
68 | 68 | s.update([revlog.linkrev(r) for r in brokenset]) |
|
69 | 69 | |
|
70 | 70 | collectone(repo.manifest) |
|
71 | 71 | for fname in files: |
|
72 | 72 | collectone(repo.file(fname)) |
|
73 | 73 | |
|
74 | 74 | return s |
|
75 | 75 | |
|
76 | 76 | def strip(ui, repo, nodelist, backup=True, topic='backup'): |
|
77 | ||
|
77 | # This function operates within a transaction of its own, but does | |
|
78 | # not take any lock on the repo. | |
|
78 | 79 | # Simple way to maintain backwards compatibility for this |
|
79 | 80 | # argument. |
|
80 | 81 | if backup in ['none', 'strip']: |
|
81 | 82 | backup = False |
|
82 | 83 | |
|
83 | 84 | repo = repo.unfiltered() |
|
84 | 85 | repo.destroying() |
|
85 | 86 | |
|
86 | 87 | cl = repo.changelog |
|
87 | 88 | # TODO handle undo of merge sets |
|
88 | 89 | if isinstance(nodelist, str): |
|
89 | 90 | nodelist = [nodelist] |
|
90 | 91 | striplist = [cl.rev(node) for node in nodelist] |
|
91 | 92 | striprev = min(striplist) |
|
92 | 93 | |
|
93 | 94 | # Some revisions with rev > striprev may not be descendants of striprev. |
|
94 | 95 | # We have to find these revisions and put them in a bundle, so that |
|
95 | 96 | # we can restore them after the truncations. |
|
96 | 97 | # To create the bundle we use repo.changegroupsubset which requires |
|
97 | 98 | # the list of heads and bases of the set of interesting revisions. |
|
98 | 99 | # (head = revision in the set that has no descendant in the set; |
|
99 | 100 | # base = revision in the set that has no ancestor in the set) |
|
100 | 101 | tostrip = set(striplist) |
|
101 | 102 | for rev in striplist: |
|
102 | 103 | for desc in cl.descendants([rev]): |
|
103 | 104 | tostrip.add(desc) |
|
104 | 105 | |
|
105 | 106 | files = _collectfiles(repo, striprev) |
|
106 | 107 | saverevs = _collectbrokencsets(repo, files, striprev) |
|
107 | 108 | |
|
108 | 109 | # compute heads |
|
109 | 110 | saveheads = set(saverevs) |
|
110 | 111 | for r in xrange(striprev + 1, len(cl)): |
|
111 | 112 | if r not in tostrip: |
|
112 | 113 | saverevs.add(r) |
|
113 | 114 | saveheads.difference_update(cl.parentrevs(r)) |
|
114 | 115 | saveheads.add(r) |
|
115 | 116 | saveheads = [cl.node(r) for r in saveheads] |
|
116 | 117 | |
|
117 | 118 | # compute base nodes |
|
118 | 119 | if saverevs: |
|
119 | 120 | descendants = set(cl.descendants(saverevs)) |
|
120 | 121 | saverevs.difference_update(descendants) |
|
121 | 122 | savebases = [cl.node(r) for r in saverevs] |
|
122 | 123 | stripbases = [cl.node(r) for r in tostrip] |
|
123 | 124 | |
|
124 | 125 | # For a set s, max(parents(s) - s) is the same as max(heads(::s - s)), but |
|
125 | 126 | # is much faster |
|
126 | 127 | newbmtarget = repo.revs('max(parents(%ld) - (%ld))', tostrip, tostrip) |
|
127 | 128 | if newbmtarget: |
|
128 | 129 | newbmtarget = repo[newbmtarget.first()].node() |
|
129 | 130 | else: |
|
130 | 131 | newbmtarget = '.' |
|
131 | 132 | |
|
132 | 133 | bm = repo._bookmarks |
|
133 | 134 | updatebm = [] |
|
134 | 135 | for m in bm: |
|
135 | 136 | rev = repo[bm[m]].rev() |
|
136 | 137 | if rev in tostrip: |
|
137 | 138 | updatebm.append(m) |
|
138 | 139 | |
|
139 | 140 | # create a changegroup for all the branches we need to keep |
|
140 | 141 | backupfile = None |
|
141 | 142 | vfs = repo.vfs |
|
142 | 143 | node = nodelist[-1] |
|
143 | 144 | if backup: |
|
144 | 145 | backupfile = _bundle(repo, stripbases, cl.heads(), node, topic) |
|
145 | 146 | repo.ui.status(_("saved backup bundle to %s\n") % |
|
146 | 147 | vfs.join(backupfile)) |
|
147 | 148 | repo.ui.log("backupbundle", "saved backup bundle to %s\n", |
|
148 | 149 | vfs.join(backupfile)) |
|
149 | 150 | if saveheads or savebases: |
|
150 | 151 | # do not compress partial bundle if we remove it from disk later |
|
151 | 152 | chgrpfile = _bundle(repo, savebases, saveheads, node, 'temp', |
|
152 | 153 | compress=False) |
|
153 | 154 | |
|
154 | 155 | mfst = repo.manifest |
|
155 | 156 | |
|
156 | 157 | curtr = repo.currenttransaction() |
|
157 | 158 | if curtr is not None: |
|
158 | 159 | del curtr # avoid carrying reference to transaction for nothing |
|
159 | 160 | msg = _('programming error: cannot strip from inside a transaction') |
|
160 | 161 | raise error.Abort(msg, hint=_('contact your extension maintainer')) |
|
161 | 162 | |
|
162 | 163 | tr = repo.transaction("strip") |
|
163 | 164 | offset = len(tr.entries) |
|
164 | 165 | |
|
165 | 166 | try: |
|
166 | 167 | tr.startgroup() |
|
167 | 168 | cl.strip(striprev, tr) |
|
168 | 169 | mfst.strip(striprev, tr) |
|
169 | 170 | for fn in files: |
|
170 | 171 | repo.file(fn).strip(striprev, tr) |
|
171 | 172 | tr.endgroup() |
|
172 | 173 | |
|
173 | 174 | try: |
|
174 | 175 | for i in xrange(offset, len(tr.entries)): |
|
175 | 176 | file, troffset, ignore = tr.entries[i] |
|
176 | 177 | repo.svfs(file, 'a').truncate(troffset) |
|
177 | 178 | if troffset == 0: |
|
178 | 179 | repo.store.markremoved(file) |
|
179 | 180 | tr.close() |
|
180 | 181 | finally: |
|
181 | 182 | tr.release() |
|
182 | 183 | |
|
183 | 184 | if saveheads or savebases: |
|
184 | 185 | ui.note(_("adding branch\n")) |
|
185 | 186 | f = vfs.open(chgrpfile, "rb") |
|
186 | 187 | gen = exchange.readbundle(ui, f, chgrpfile, vfs) |
|
187 | 188 | if not repo.ui.verbose: |
|
188 | 189 | # silence internal shuffling chatter |
|
189 | 190 | repo.ui.pushbuffer() |
|
190 | 191 | if isinstance(gen, bundle2.unbundle20): |
|
191 | 192 | tr = repo.transaction('strip') |
|
192 | 193 | tr.hookargs = {'source': 'strip', |
|
193 | 194 | 'url': 'bundle:' + vfs.join(chgrpfile)} |
|
194 | 195 | try: |
|
195 | 196 | bundle2.applybundle(repo, gen, tr, source='strip', |
|
196 | 197 | url='bundle:' + vfs.join(chgrpfile)) |
|
197 | 198 | tr.close() |
|
198 | 199 | finally: |
|
199 | 200 | tr.release() |
|
200 | 201 | else: |
|
201 | 202 | gen.apply(repo, 'strip', 'bundle:' + vfs.join(chgrpfile), True) |
|
202 | 203 | if not repo.ui.verbose: |
|
203 | 204 | repo.ui.popbuffer() |
|
204 | 205 | f.close() |
|
205 | 206 | |
|
206 | 207 | for m in updatebm: |
|
207 | 208 | bm[m] = repo[newbmtarget].node() |
|
208 | 209 | lock = tr = None |
|
209 | 210 | try: |
|
210 | 211 | lock = repo.lock() |
|
211 | 212 | tr = repo.transaction('repair') |
|
212 | 213 | bm.recordchange(tr) |
|
213 | 214 | tr.close() |
|
214 | 215 | finally: |
|
215 | 216 | tr.release() |
|
216 | 217 | lock.release() |
|
217 | 218 | |
|
218 | 219 | # remove undo files |
|
219 | 220 | for undovfs, undofile in repo.undofiles(): |
|
220 | 221 | try: |
|
221 | 222 | undovfs.unlink(undofile) |
|
222 | 223 | except OSError as e: |
|
223 | 224 | if e.errno != errno.ENOENT: |
|
224 | 225 | ui.warn(_('error removing %s: %s\n') % |
|
225 | 226 | (undovfs.join(undofile), str(e))) |
|
226 | 227 | |
|
227 | 228 | except: # re-raises |
|
228 | 229 | if backupfile: |
|
229 | 230 | ui.warn(_("strip failed, full bundle stored in '%s'\n") |
|
230 | 231 | % vfs.join(backupfile)) |
|
231 | 232 | elif saveheads: |
|
232 | 233 | ui.warn(_("strip failed, partial bundle stored in '%s'\n") |
|
233 | 234 | % vfs.join(chgrpfile)) |
|
234 | 235 | raise |
|
235 | 236 | else: |
|
236 | 237 | if saveheads or savebases: |
|
237 | 238 | # Remove partial backup only if there were no exceptions |
|
238 | 239 | vfs.unlink(chgrpfile) |
|
239 | 240 | |
|
240 | 241 | repo.destroyed() |
|
241 | 242 | |
|
242 | 243 | def rebuildfncache(ui, repo): |
|
243 | 244 | """Rebuilds the fncache file from repo history. |
|
244 | 245 | |
|
245 | 246 | Missing entries will be added. Extra entries will be removed. |
|
246 | 247 | """ |
|
247 | 248 | repo = repo.unfiltered() |
|
248 | 249 | |
|
249 | 250 | if 'fncache' not in repo.requirements: |
|
250 | 251 | ui.warn(_('(not rebuilding fncache because repository does not ' |
|
251 | 252 | 'support fncache)\n')) |
|
252 | 253 | return |
|
253 | 254 | |
|
254 | 255 | lock = repo.lock() |
|
255 | 256 | try: |
|
256 | 257 | fnc = repo.store.fncache |
|
257 | 258 | # Trigger load of fncache. |
|
258 | 259 | if 'irrelevant' in fnc: |
|
259 | 260 | pass |
|
260 | 261 | |
|
261 | 262 | oldentries = set(fnc.entries) |
|
262 | 263 | newentries = set() |
|
263 | 264 | seenfiles = set() |
|
264 | 265 | |
|
265 | 266 | repolen = len(repo) |
|
266 | 267 | for rev in repo: |
|
267 | 268 | ui.progress(_('changeset'), rev, total=repolen) |
|
268 | 269 | |
|
269 | 270 | ctx = repo[rev] |
|
270 | 271 | for f in ctx.files(): |
|
271 | 272 | # This is to minimize I/O. |
|
272 | 273 | if f in seenfiles: |
|
273 | 274 | continue |
|
274 | 275 | seenfiles.add(f) |
|
275 | 276 | |
|
276 | 277 | i = 'data/%s.i' % f |
|
277 | 278 | d = 'data/%s.d' % f |
|
278 | 279 | |
|
279 | 280 | if repo.store._exists(i): |
|
280 | 281 | newentries.add(i) |
|
281 | 282 | if repo.store._exists(d): |
|
282 | 283 | newentries.add(d) |
|
283 | 284 | |
|
284 | 285 | ui.progress(_('changeset'), None) |
|
285 | 286 | |
|
286 | 287 | addcount = len(newentries - oldentries) |
|
287 | 288 | removecount = len(oldentries - newentries) |
|
288 | 289 | for p in sorted(oldentries - newentries): |
|
289 | 290 | ui.write(_('removing %s\n') % p) |
|
290 | 291 | for p in sorted(newentries - oldentries): |
|
291 | 292 | ui.write(_('adding %s\n') % p) |
|
292 | 293 | |
|
293 | 294 | if addcount or removecount: |
|
294 | 295 | ui.write(_('%d items added, %d removed from fncache\n') % |
|
295 | 296 | (addcount, removecount)) |
|
296 | 297 | fnc.entries = newentries |
|
297 | 298 | fnc._dirty = True |
|
298 | 299 | |
|
299 | 300 | tr = repo.transaction('fncache') |
|
300 | 301 | try: |
|
301 | 302 | fnc.write(tr) |
|
302 | 303 | tr.close() |
|
303 | 304 | finally: |
|
304 | 305 | tr.release() |
|
305 | 306 | else: |
|
306 | 307 | ui.write(_('fncache already up to date\n')) |
|
307 | 308 | finally: |
|
308 | 309 | lock.release() |
|
309 | 310 | |
|
310 | 311 | def stripbmrevset(repo, mark): |
|
311 | 312 | """ |
|
312 | 313 | The revset to strip when strip is called with -B mark |
|
313 | 314 | |
|
314 | 315 | Needs to live here so extensions can use it and wrap it even when strip is |
|
315 | 316 | not enabled or not present on a box. |
|
316 | 317 | """ |
|
317 | 318 | return repo.revs("ancestors(bookmark(%s)) - " |
|
318 | 319 | "ancestors(head() and not bookmark(%s)) - " |
|
319 | 320 | "ancestors(bookmark() and not bookmark(%s))", |
|
320 | 321 | mark, mark, mark) |
General Comments 0
You need to be logged in to leave comments.
Login now