##// END OF EJS Templates
verify: call ui.progress()
Augie Fackler -
r10433:767fbacb default
parent child Browse files
Show More
@@ -1,279 +1,298 b''
1 1 # verify.py - repository integrity checking for Mercurial
2 2 #
3 3 # Copyright 2006, 2007 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from node import nullid, short
9 9 from i18n import _
10 10 import os
11 11 import revlog, util, error
12 12
13 13 def verify(repo):
14 14 lock = repo.lock()
15 15 try:
16 16 return _verify(repo)
17 17 finally:
18 18 lock.release()
19 19
20 20 def _verify(repo):
21 21 mflinkrevs = {}
22 22 filelinkrevs = {}
23 23 filenodes = {}
24 24 revisions = 0
25 25 badrevs = set()
26 26 errors = [0]
27 27 warnings = [0]
28 28 ui = repo.ui
29 29 cl = repo.changelog
30 30 mf = repo.manifest
31 31 lrugetctx = util.lrucachefunc(repo.changectx)
32 32
33 33 if not repo.cancopy():
34 34 raise util.Abort(_("cannot verify bundle or remote repos"))
35 35
36 36 def err(linkrev, msg, filename=None):
37 37 if linkrev != None:
38 38 badrevs.add(linkrev)
39 39 else:
40 40 linkrev = '?'
41 41 msg = "%s: %s" % (linkrev, msg)
42 42 if filename:
43 43 msg = "%s@%s" % (filename, msg)
44 44 ui.warn(" " + msg + "\n")
45 45 errors[0] += 1
46 46
47 47 def exc(linkrev, msg, inst, filename=None):
48 48 if isinstance(inst, KeyboardInterrupt):
49 49 ui.warn(_("interrupted"))
50 50 raise
51 51 err(linkrev, "%s: %s" % (msg, inst), filename)
52 52
53 53 def warn(msg):
54 54 ui.warn(msg + "\n")
55 55 warnings[0] += 1
56 56
57 57 def checklog(obj, name, linkrev):
58 58 if not len(obj) and (havecl or havemf):
59 59 err(linkrev, _("empty or missing %s") % name)
60 60 return
61 61
62 62 d = obj.checksize()
63 63 if d[0]:
64 64 err(None, _("data length off by %d bytes") % d[0], name)
65 65 if d[1]:
66 66 err(None, _("index contains %d extra bytes") % d[1], name)
67 67
68 68 if obj.version != revlog.REVLOGV0:
69 69 if not revlogv1:
70 70 warn(_("warning: `%s' uses revlog format 1") % name)
71 71 elif revlogv1:
72 72 warn(_("warning: `%s' uses revlog format 0") % name)
73 73
74 74 def checkentry(obj, i, node, seen, linkrevs, f):
75 75 lr = obj.linkrev(obj.rev(node))
76 76 if lr < 0 or (havecl and lr not in linkrevs):
77 77 if lr < 0 or lr >= len(cl):
78 78 msg = _("rev %d points to nonexistent changeset %d")
79 79 else:
80 80 msg = _("rev %d points to unexpected changeset %d")
81 81 err(None, msg % (i, lr), f)
82 82 if linkrevs:
83 83 if f and len(linkrevs) > 1:
84 84 try:
85 85 # attempt to filter down to real linkrevs
86 86 linkrevs = [l for l in linkrevs
87 87 if lrugetctx(l)[f].filenode() == node]
88 88 except:
89 89 pass
90 90 warn(_(" (expected %s)") % " ".join(map(str, linkrevs)))
91 91 lr = None # can't be trusted
92 92
93 93 try:
94 94 p1, p2 = obj.parents(node)
95 95 if p1 not in seen and p1 != nullid:
96 96 err(lr, _("unknown parent 1 %s of %s") %
97 97 (short(p1), short(n)), f)
98 98 if p2 not in seen and p2 != nullid:
99 99 err(lr, _("unknown parent 2 %s of %s") %
100 100 (short(p2), short(p1)), f)
101 101 except Exception, inst:
102 102 exc(lr, _("checking parents of %s") % short(node), inst, f)
103 103
104 104 if node in seen:
105 105 err(lr, _("duplicate revision %d (%d)") % (i, seen[n]), f)
106 106 seen[n] = i
107 107 return lr
108 108
109 109 if os.path.exists(repo.sjoin("journal")):
110 110 ui.warn(_("abandoned transaction found - run hg recover\n"))
111 111
112 112 revlogv1 = cl.version != revlog.REVLOGV0
113 113 if ui.verbose or not revlogv1:
114 114 ui.status(_("repository uses revlog format %d\n") %
115 115 (revlogv1 and 1 or 0))
116 116
117 117 havecl = len(cl) > 0
118 118 havemf = len(mf) > 0
119 119
120 120 ui.status(_("checking changesets\n"))
121 121 seen = {}
122 122 checklog(cl, "changelog", 0)
123 total = len(repo)
123 124 for i in repo:
125 ui.progress('changelog', i, total=total)
124 126 n = cl.node(i)
125 127 checkentry(cl, i, n, seen, [i], "changelog")
126 128
127 129 try:
128 130 changes = cl.read(n)
129 131 mflinkrevs.setdefault(changes[0], []).append(i)
130 132 for f in changes[3]:
131 133 filelinkrevs.setdefault(f, []).append(i)
132 134 except Exception, inst:
133 135 exc(i, _("unpacking changeset %s") % short(n), inst)
136 ui.progress('changelog', None)
134 137
135 138 ui.status(_("checking manifests\n"))
136 139 seen = {}
137 140 checklog(mf, "manifest", 0)
141 total = len(mf)
138 142 for i in mf:
143 ui.progress('manifests', i, total=total)
139 144 n = mf.node(i)
140 145 lr = checkentry(mf, i, n, seen, mflinkrevs.get(n, []), "manifest")
141 146 if n in mflinkrevs:
142 147 del mflinkrevs[n]
143 148 else:
144 149 err(lr, _("%s not in changesets") % short(n), "manifest")
145 150
146 151 try:
147 152 for f, fn in mf.readdelta(n).iteritems():
148 153 if not f:
149 154 err(lr, _("file without name in manifest"))
150 155 elif f != "/dev/null":
151 156 filenodes.setdefault(f, {}).setdefault(fn, lr)
152 157 except Exception, inst:
153 158 exc(lr, _("reading manifest delta %s") % short(n), inst)
159 ui.progress('manifests', None)
154 160
155 161 ui.status(_("crosschecking files in changesets and manifests\n"))
156 162
163 total = len(mflinkrevs) + len(filelinkrevs) + len(filenodes)
164 count = 0
157 165 if havemf:
158 166 for c, m in sorted([(c, m) for m in mflinkrevs
159 167 for c in mflinkrevs[m]]):
168 count += 1
169 ui.progress('crosscheck', count, total=total)
160 170 err(c, _("changeset refers to unknown manifest %s") % short(m))
161 171 mflinkrevs = None # del is bad here due to scope issues
162 172
163 173 for f in sorted(filelinkrevs):
174 count += 1
175 ui.progress('crosscheck', count, total=total)
164 176 if f not in filenodes:
165 177 lr = filelinkrevs[f][0]
166 178 err(lr, _("in changeset but not in manifest"), f)
167 179
168 180 if havecl:
169 181 for f in sorted(filenodes):
182 count += 1
183 ui.progress('crosscheck', count, total=total)
170 184 if f not in filelinkrevs:
171 185 try:
172 186 fl = repo.file(f)
173 187 lr = min([fl.linkrev(fl.rev(n)) for n in filenodes[f]])
174 188 except:
175 189 lr = None
176 190 err(lr, _("in manifest but not in changeset"), f)
177 191
192 ui.progress('crosscheck', None)
193
178 194 ui.status(_("checking files\n"))
179 195
180 196 storefiles = set()
181 197 for f, f2, size in repo.store.datafiles():
182 198 if not f:
183 199 err(None, _("cannot decode filename '%s'") % f2)
184 200 elif size > 0:
185 201 storefiles.add(f)
186 202
187 203 files = sorted(set(filenodes) | set(filelinkrevs))
188 for f in files:
204 total = len(files)
205 for i, f in enumerate(files):
206 ui.progress('files', i, item=f, total=total)
189 207 try:
190 208 linkrevs = filelinkrevs[f]
191 209 except KeyError:
192 210 # in manifest but not in changelog
193 211 linkrevs = []
194 212
195 213 if linkrevs:
196 214 lr = linkrevs[0]
197 215 else:
198 216 lr = None
199 217
200 218 try:
201 219 fl = repo.file(f)
202 220 except error.RevlogError, e:
203 221 err(lr, _("broken revlog! (%s)") % e, f)
204 222 continue
205 223
206 224 for ff in fl.files():
207 225 try:
208 226 storefiles.remove(ff)
209 227 except KeyError:
210 228 err(lr, _("missing revlog!"), ff)
211 229
212 230 checklog(fl, f, lr)
213 231 seen = {}
214 232 for i in fl:
215 233 revisions += 1
216 234 n = fl.node(i)
217 235 lr = checkentry(fl, i, n, seen, linkrevs, f)
218 236 if f in filenodes:
219 237 if havemf and n not in filenodes[f]:
220 238 err(lr, _("%s not in manifests") % (short(n)), f)
221 239 else:
222 240 del filenodes[f][n]
223 241
224 242 # verify contents
225 243 try:
226 244 t = fl.read(n)
227 245 rp = fl.renamed(n)
228 246 if len(t) != fl.size(i):
229 247 if len(fl.revision(n)) != fl.size(i):
230 248 err(lr, _("unpacked size is %s, %s expected") %
231 249 (len(t), fl.size(i)), f)
232 250 except Exception, inst:
233 251 exc(lr, _("unpacking %s") % short(n), inst, f)
234 252
235 253 # check renames
236 254 try:
237 255 if rp:
238 256 if lr is not None and ui.verbose:
239 257 ctx = lrugetctx(lr)
240 258 found = False
241 259 for pctx in ctx.parents():
242 260 if rp[0] in pctx:
243 261 found = True
244 262 break
245 263 if not found:
246 264 warn(_("warning: copy source of '%s' not"
247 265 " in parents of %s") % (f, ctx))
248 266 fl2 = repo.file(rp[0])
249 267 if not len(fl2):
250 268 err(lr, _("empty or missing copy source revlog %s:%s")
251 269 % (rp[0], short(rp[1])), f)
252 270 elif rp[1] == nullid:
253 271 ui.note(_("warning: %s@%s: copy source"
254 272 " revision is nullid %s:%s\n")
255 273 % (f, lr, rp[0], short(rp[1])))
256 274 else:
257 275 fl2.rev(rp[1])
258 276 except Exception, inst:
259 277 exc(lr, _("checking rename of %s") % short(n), inst, f)
260 278
261 279 # cross-check
262 280 if f in filenodes:
263 281 fns = [(lr, n) for n, lr in filenodes[f].iteritems()]
264 282 for lr, node in sorted(fns):
265 283 err(lr, _("%s in manifests not found") % short(node), f)
284 ui.progress('files', None)
266 285
267 286 for f in storefiles:
268 287 warn(_("warning: orphan revlog '%s'") % f)
269 288
270 289 ui.status(_("%d files, %d changesets, %d total revisions\n") %
271 290 (len(files), len(cl), revisions))
272 291 if warnings[0]:
273 292 ui.warn(_("%d warnings encountered!\n") % warnings[0])
274 293 if errors[0]:
275 294 ui.warn(_("%d integrity errors encountered!\n") % errors[0])
276 295 if badrevs:
277 296 ui.warn(_("(first damaged changeset appears to be %d)\n")
278 297 % min(badrevs))
279 298 return 1
General Comments 0
You need to be logged in to leave comments. Login now