1
# Copyright (C) 2004, 2005 by Martin Pool
2
# Copyright (C) 2005 by Canonical Ltd
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
######################################################################
25
from trace import mutter
26
from errors import bailout
29
def check(branch, progress=True):
33
if not (hasattr(out, 'isatty') and out.isatty()):
38
mutter('checking ' + m)
39
out.write('\rchecking: %-50.50s' % m)
43
mutter('checking ' + m)
45
p('history of %r' % branch.base)
49
history = branch.revision_history()
51
revcount = len(history)
57
p('revision %d/%d' % (revno, revcount))
58
mutter(' revision {%s}' % rid)
59
rev = branch.get_revision(rid)
60
if rev.revision_id != rid:
61
bailout('wrong internal revision id in revision {%s}' % rid)
62
if rev.precursor != last_ptr:
63
bailout('mismatched precursor in revision {%s}' % rid)
65
if rid in checked_revs:
66
bailout('repeated revision {%s}' % rid)
67
checked_revs[rid] = True
69
## TODO: Check all the required fields are present on the revision.
71
inv = branch.get_inventory(rev.inventory_id)
75
p('revision %d/%d file ids' % (revno, revcount))
77
if file_id in seen_ids:
78
bailout('duplicated file_id {%s} in inventory for revision {%s}'
80
seen_ids[file_id] = True
87
p('revision %d/%d file text %d/%d' % (revno, revcount, i, len_inv))
91
if ie.parent_id != None:
92
if ie.parent_id not in seen_ids:
93
bailout('missing parent {%s} in inventory for revision {%s}'
94
% (ie.parent_id, rid))
97
if ie.text_id in checked_texts:
98
fp = checked_texts[ie.text_id]
100
if not ie.text_id in branch.text_store:
101
bailout('text {%s} not in text_store' % ie.text_id)
103
tf = branch.text_store[ie.text_id]
104
fp = osutils.fingerprint_file(tf)
105
checked_texts[ie.text_id] = fp
107
if ie.text_size != fp['size']:
108
bailout('text {%s} wrong size' % ie.text_id)
109
if ie.text_sha1 != fp['sha1']:
110
bailout('text {%s} wrong sha1' % ie.text_id)
111
elif ie.kind == 'directory':
112
if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
113
bailout('directory {%s} has text in revision {%s}'
116
p('revision %d/%d file paths' % (revno, revcount))
117
for path, ie in inv.iter_entries():
118
if path in seen_names:
119
bailout('duplicated path %r in inventory for revision {%s}' % (path, revid))
120
seen_names[path] = True
126
print 'checked %d revisions, %d file texts' % (revcount, len(checked_texts))