~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Martin Pool
  • Date: 2005-09-22 12:55:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050922125557-05e8b9360eb9c79f
- untabify only

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    """Check a branch"""
40
40
    def __init__(self, branch):
41
41
        self.branch = branch
42
 
        branch.lock_read()
43
 
        try:
44
 
            self.run()
45
 
        finally:
46
 
            branch.unlock()
 
42
        branch.lock_read()
 
43
        try:
 
44
            self.run()
 
45
        finally:
 
46
            branch.unlock()
47
47
 
48
48
 
49
49
    def run(self):
50
50
        branch = self.branch
51
51
 
52
 
        branch.weave_store.enable_cache = True
53
 
        branch.control_weaves.enable_cache = True
 
52
        branch.weave_store.enable_cache = True
 
53
        branch.control_weaves.enable_cache = True
54
54
 
55
 
        self.checked_text_cnt = 0
56
 
        self.checked_rev_cnt = 0
 
55
        self.checked_text_cnt = 0
 
56
        self.checked_rev_cnt = 0
57
57
        self.repeated_text_cnt = 0
58
58
        self.missing_inventory_sha_cnt = 0
59
59
        self.missing_revision_cnt = 0
69
69
        for rev_id in history:
70
70
            self.progress.update('checking revision', revno, revcount)
71
71
            revno += 1
72
 
            self.check_one_rev(rev_id, last_rev_id)
73
 
            last_rev_id = rev_id
 
72
            self.check_one_rev(rev_id, last_rev_id)
 
73
            last_rev_id = rev_id
74
74
        self.progress.clear()
75
 
        self.report_results()
 
75
        self.report_results()
76
76
 
77
77
 
78
78
    def report_results(self):
79
 
        note('checked branch %s format %d',
80
 
             self.branch.base, 
81
 
             self.branch._branch_format)
 
79
        note('checked branch %s format %d',
 
80
             self.branch.base, 
 
81
             self.branch._branch_format)
82
82
 
83
83
        note('%6d revisions', self.checked_rev_cnt)
84
84
        note('%6d unique file texts', self.checked_text_cnt)
85
85
        note('%6d repeated file texts', self.repeated_text_cnt)
86
86
        if self.missing_inventory_sha_cnt:
87
87
            note('%d revisions are missing inventory_sha1',
88
 
                 self.missing_inventory_sha_cnt)
 
88
                 self.missing_inventory_sha_cnt)
89
89
        if self.missing_revision_cnt:
90
90
            note('%d revisions are mentioned but not present',
91
 
                 self.missing_revision_cnt)
 
91
                 self.missing_revision_cnt)
92
92
 
93
93
 
94
94
    def check_one_rev(self, rev_id, last_rev_id):
95
 
        """Check one revision.
96
 
 
97
 
        rev_id - the one to check
98
 
 
99
 
        last_rev_id - the previous one on the mainline, if any.
100
 
        """
101
 
 
102
 
        # mutter('    revision {%s}' % rev_id)
103
 
        branch = self.branch
104
 
        rev = branch.get_revision(rev_id)
105
 
        if rev.revision_id != rev_id:
106
 
            raise BzrCheckError('wrong internal revision id in revision {%s}'
107
 
                                % rev_id)
108
 
 
109
 
        # check the previous history entry is a parent of this entry
110
 
        if rev.parent_ids:
111
 
            if last_rev_id is None:
112
 
                raise BzrCheckError("revision {%s} has %d parents, but is the "
113
 
                                    "start of the branch"
114
 
                                    % (rev_id, len(rev.parent_ids)))
115
 
            for parent_id in rev.parent_ids:
116
 
                if parent_id == last_rev_id:
117
 
                    break
118
 
            else:
119
 
                raise BzrCheckError("previous revision {%s} not listed among "
120
 
                                    "parents of {%s}"
121
 
                                    % (last_rev_id, rev_id))
122
 
        elif last_rev_id:
123
 
            raise BzrCheckError("revision {%s} has no parents listed "
124
 
                                "but preceded by {%s}"
125
 
                                % (rev_id, last_rev_id))
126
 
 
127
 
        if rev.inventory_sha1:
128
 
            inv_sha1 = branch.get_inventory_sha1(rev_id)
129
 
            if inv_sha1 != rev.inventory_sha1:
130
 
                raise BzrCheckError('Inventory sha1 hash doesn\'t match'
131
 
                    ' value in revision {%s}' % rev_id)
132
 
        else:
133
 
            missing_inventory_sha_cnt += 1
134
 
            mutter("no inventory_sha1 on revision {%s}" % rev_id)
135
 
        self._check_revision_tree(rev_id)
 
95
        """Check one revision.
 
96
 
 
97
        rev_id - the one to check
 
98
 
 
99
        last_rev_id - the previous one on the mainline, if any.
 
100
        """
 
101
 
 
102
        # mutter('    revision {%s}' % rev_id)
 
103
        branch = self.branch
 
104
        rev = branch.get_revision(rev_id)
 
105
        if rev.revision_id != rev_id:
 
106
            raise BzrCheckError('wrong internal revision id in revision {%s}'
 
107
                                % rev_id)
 
108
 
 
109
        # check the previous history entry is a parent of this entry
 
110
        if rev.parent_ids:
 
111
            if last_rev_id is None:
 
112
                raise BzrCheckError("revision {%s} has %d parents, but is the "
 
113
                                    "start of the branch"
 
114
                                    % (rev_id, len(rev.parent_ids)))
 
115
            for parent_id in rev.parent_ids:
 
116
                if parent_id == last_rev_id:
 
117
                    break
 
118
            else:
 
119
                raise BzrCheckError("previous revision {%s} not listed among "
 
120
                                    "parents of {%s}"
 
121
                                    % (last_rev_id, rev_id))
 
122
        elif last_rev_id:
 
123
            raise BzrCheckError("revision {%s} has no parents listed "
 
124
                                "but preceded by {%s}"
 
125
                                % (rev_id, last_rev_id))
 
126
 
 
127
        if rev.inventory_sha1:
 
128
            inv_sha1 = branch.get_inventory_sha1(rev_id)
 
129
            if inv_sha1 != rev.inventory_sha1:
 
130
                raise BzrCheckError('Inventory sha1 hash doesn\'t match'
 
131
                    ' value in revision {%s}' % rev_id)
 
132
        else:
 
133
            missing_inventory_sha_cnt += 1
 
134
            mutter("no inventory_sha1 on revision {%s}" % rev_id)
 
135
        self._check_revision_tree(rev_id)
136
136
        self.checked_rev_cnt += 1
137
137
 
138
138
    def _check_revision_tree(self, rev_id):
139
 
        tree = self.branch.revision_tree(rev_id)
140
 
        inv = tree.inventory
141
 
        seen_ids = {}
142
 
        for file_id in inv:
143
 
            if file_id in seen_ids:
144
 
                raise BzrCheckError('duplicated file_id {%s} '
145
 
                                    'in inventory for revision {%s}'
146
 
                                    % (file_id, rev_id))
147
 
            seen_ids[file_id] = True
148
 
        for file_id in inv:
149
 
            self._check_one_entry(rev_id, inv, tree, file_id)
150
 
        seen_names = {}
151
 
        for path, ie in inv.iter_entries():
152
 
            if path in seen_names:
153
 
                raise BzrCheckError('duplicated path %s '
154
 
                                    'in inventory for revision {%s}'
155
 
                                    % (path, rev_id))
156
 
            seen_names[path] = True
 
139
        tree = self.branch.revision_tree(rev_id)
 
140
        inv = tree.inventory
 
141
        seen_ids = {}
 
142
        for file_id in inv:
 
143
            if file_id in seen_ids:
 
144
                raise BzrCheckError('duplicated file_id {%s} '
 
145
                                    'in inventory for revision {%s}'
 
146
                                    % (file_id, rev_id))
 
147
            seen_ids[file_id] = True
 
148
        for file_id in inv:
 
149
            self._check_one_entry(rev_id, inv, tree, file_id)
 
150
        seen_names = {}
 
151
        for path, ie in inv.iter_entries():
 
152
            if path in seen_names:
 
153
                raise BzrCheckError('duplicated path %s '
 
154
                                    'in inventory for revision {%s}'
 
155
                                    % (path, rev_id))
 
156
            seen_names[path] = True
157
157
 
158
 
        
 
158
        
159
159
    def _check_one_entry(self, rev_id, inv, tree, file_id):
160
 
        ie = inv[file_id]
161
 
        if ie.parent_id != None:
162
 
            if not inv.has_id(ie.parent_id):
163
 
                raise BzrCheckError('missing parent {%s} in inventory for revision {%s}'
164
 
                        % (ie.parent_id, rev_id))
165
 
        if ie.kind == 'file':
 
160
        ie = inv[file_id]
 
161
        if ie.parent_id != None:
 
162
            if not inv.has_id(ie.parent_id):
 
163
                raise BzrCheckError('missing parent {%s} in inventory for revision {%s}'
 
164
                        % (ie.parent_id, rev_id))
 
165
        if ie.kind == 'file':
166
166
            text_version = ie.text_version
167
167
            t = (file_id, text_version)
168
168
            if t in self.checked_texts:
172
172
                                        (file_id, rev_id))
173
173
                else:
174
174
                    self.repeated_text_cnt += 1
175
 
                    return
 
175
                    return
176
176
            mutter('check version {%s} of {%s}', rev_id, file_id)
177
 
            file_lines = tree.get_file_lines(file_id)
178
 
            self.checked_text_cnt += 1 
179
 
            if ie.text_size != sum(map(len, file_lines)):
180
 
                raise BzrCheckError('text {%s} wrong size' % ie.text_id)
181
 
            if ie.text_sha1 != sha_strings(file_lines):
182
 
                raise BzrCheckError('text {%s} wrong sha1' % ie.text_id)
 
177
            file_lines = tree.get_file_lines(file_id)
 
178
            self.checked_text_cnt += 1 
 
179
            if ie.text_size != sum(map(len, file_lines)):
 
180
                raise BzrCheckError('text {%s} wrong size' % ie.text_id)
 
181
            if ie.text_sha1 != sha_strings(file_lines):
 
182
                raise BzrCheckError('text {%s} wrong sha1' % ie.text_id)
183
183
            self.checked_texts[t] = ie.text_sha1
184
 
        elif ie.kind == 'directory':
185
 
            if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
186
 
                raise BzrCheckError('directory {%s} has text in revision {%s}'
187
 
                        % (file_id, rev_id))
188
 
        elif ie.kind == 'root_directory':
189
 
            pass
190
 
        else:
191
 
            raise BzrCheckError('unknown entry kind %r in revision {%s}' % 
192
 
                                (ie.kind, rev_id))
 
184
        elif ie.kind == 'directory':
 
185
            if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
 
186
                raise BzrCheckError('directory {%s} has text in revision {%s}'
 
187
                        % (file_id, rev_id))
 
188
        elif ie.kind == 'root_directory':
 
189
            pass
 
190
        else:
 
191
            raise BzrCheckError('unknown entry kind %r in revision {%s}' % 
 
192
                                (ie.kind, rev_id))
193
193
 
194
194
 
195
195
def check(branch):