~bzr-pqm/bzr/bzr.dev

1 by mbp at sourcefrog
import from baz patch-364
1
# Copyright (C) 2004, 2005 by Martin Pool
2
# Copyright (C) 2005 by Canonical Ltd
3
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.
8
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.
13
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
17
18
19
20
######################################################################
21
# consistency checks
22
121 by mbp at sourcefrog
- progress indicator while checking
23
import sys
119 by mbp at sourcefrog
check revisions are not duplicated in history
24
from sets import Set
25
114 by mbp at sourcefrog
- reactivate basic check command
26
import bzrlib
116 by mbp at sourcefrog
fix up debug output for check command
27
from trace import mutter
117 by mbp at sourcefrog
better messages from check command
28
from errors import bailout
124 by mbp at sourcefrog
- check file text for past revisions is correct
29
import osutils
114 by mbp at sourcefrog
- reactivate basic check command
30
121 by mbp at sourcefrog
- progress indicator while checking
31
def check(branch, progress=True):
32
    out = sys.stdout
33
34
    if progress:
35
        def p(m):
36
            mutter('checking ' + m)
37
            out.write('\rchecking: %-50.50s' % m)
38
            out.flush()
39
    else:
40
        def p(m):
41
            mutter('checking ' + m)
42
43
    p('history of %r' % branch.base)
114 by mbp at sourcefrog
- reactivate basic check command
44
    last_ptr = None
119 by mbp at sourcefrog
check revisions are not duplicated in history
45
    checked_revs = Set()
121 by mbp at sourcefrog
- progress indicator while checking
46
    
47
    history = branch.revision_history()
48
    revno = 0
49
    revcount = len(history)
125 by mbp at sourcefrog
- check progress indicator for file texts
50
51
    checked_texts = {}
121 by mbp at sourcefrog
- progress indicator while checking
52
    
53
    for rid in history:
54
        revno += 1
55
        p('revision %d/%d' % (revno, revcount))
116 by mbp at sourcefrog
fix up debug output for check command
56
        mutter('    revision {%s}' % rid)
114 by mbp at sourcefrog
- reactivate basic check command
57
        rev = branch.get_revision(rid)
117 by mbp at sourcefrog
better messages from check command
58
        if rev.revision_id != rid:
59
            bailout('wrong internal revision id in revision {%s}' % rid)
60
        if rev.precursor != last_ptr:
61
            bailout('mismatched precursor in revision {%s}' % rid)
114 by mbp at sourcefrog
- reactivate basic check command
62
        last_ptr = rid
119 by mbp at sourcefrog
check revisions are not duplicated in history
63
        if rid in checked_revs:
64
            bailout('repeated revision {%s}' % rid)
65
        checked_revs.add(rid)
114 by mbp at sourcefrog
- reactivate basic check command
66
120 by mbp at sourcefrog
more check functions
67
        ## TODO: Check all the required fields are present on the revision.
68
69
        inv = branch.get_inventory(rev.inventory_id)
125 by mbp at sourcefrog
- check progress indicator for file texts
70
        seen_ids = Set()
71
        seen_names = Set()
72
73
        p('revision %d/%d file ids' % (revno, revcount))
74
        for file_id in inv:
75
            if file_id in seen_ids:
76
                bailout('duplicated file_id {%s} in inventory for revision {%s}'
77
                        % (file_id, revid))
78
            seen_ids.add(file_id)
79
80
        i = 0
81
        len_inv = len(inv)
82
        for file_id in inv:
83
            i += 1
84
            if (i % 100) == 0:
85
                p('revision %d/%d file text %d/%d' % (revno, revcount, i, len_inv))
86
87
            ie = inv[file_id]
88
89
            if ie.parent_id != None:
90
                if ie.parent_id not in seen_ids:
91
                    bailout('missing parent {%s} in inventory for revision {%s}'
92
                            % (ie.parent_id, revid))
93
94
            if ie.kind == 'file':
95
                if ie.text_id in checked_texts:
96
                    fp = checked_texts[ie.text_id]
97
                else:
98
                    if not ie.text_id in branch.text_store:
99
                        bailout('text {%s} not in text_store' % ie.text_id)
100
101
                    tf = branch.text_store[ie.text_id]
102
                    fp = osutils.fingerprint_file(tf)
103
                    checked_texts[ie.text_id] = fp
104
105
                if ie.text_size != fp['size']:
106
                    bailout('text {%s} wrong size' % ie.text_id)
107
                if ie.text_sha1 != fp['sha1']:
108
                    bailout('text {%s} wrong sha1' % ie.text_id)
109
            elif ie.kind == 'directory':
110
                if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
111
                    bailout('directory {%s} has text in revision {%s}'
112
                            % (file_id, revid))
113
114
        p('revision %d/%d file paths' % (revno, revcount))
115
        for path, ie in inv.iter_entries():
116
            if path in seen_names:
117
                bailout('duplicated path %r in inventory for revision {%s}' % (path, revid))
118
            seen_names.add(path)
119
121 by mbp at sourcefrog
- progress indicator while checking
120
121
    p('done')
122
    if progress:
123
        print 
124
125