~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 00:19:45 UTC
  • Revision ID: mbp@sourcefrog.net-20050922001945-04934f479aab6675
- more refactoring of check code

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# TODO: Check for extra files in the control directory.
24
24
 
 
25
# TODO: Check revision, inventory and entry objects have all 
 
26
# required fields.
 
27
 
25
28
 
26
29
import bzrlib.ui
27
30
from bzrlib.trace import note, warning
42
45
    def run(self):
43
46
        branch = self.branch
44
47
 
45
 
        last_rev_id = None
46
 
 
47
 
        missing_inventory_sha_cnt = 0
48
 
        missing_revision_sha_cnt = 0
49
 
        missing_revision_cnt = 0
 
48
        self.checked_text_cnt = 0
 
49
        self.checked_rev_cnt = 0
 
50
        self.missing_inventory_sha_cnt = 0
 
51
        self.missing_revision_cnt = 0
50
52
 
51
53
        history = branch.revision_history()
52
54
        revno = 0
53
55
        revcount = len(history)
54
56
 
55
 
        checked_text_count = 0
56
 
 
57
 
        progress = bzrlib.ui.ui_factory.progress_bar()
58
 
 
 
57
        last_rev_id = None
 
58
        self.progress = bzrlib.ui.ui_factory.progress_bar()
59
59
        for rev_id in history:
 
60
            self.progress.update('checking revision', revno, revcount)
60
61
            revno += 1
61
 
            progress.update('checking revision', revno, revcount)
62
 
            # mutter('    revision {%s}' % rev_id)
63
 
            rev = branch.get_revision(rev_id)
64
 
            if rev.revision_id != rev_id:
65
 
                raise BzrCheckError('wrong internal revision id in revision {%s}'
66
 
                                    % rev_id)
67
 
 
68
 
            # check the previous history entry is a parent of this entry
69
 
            if rev.parent_ids:
70
 
                if last_rev_id is None:
71
 
                    raise BzrCheckError("revision {%s} has %d parents, but is the "
72
 
                                        "start of the branch"
73
 
                                        % (rev_id, len(rev.parent_ids)))
74
 
                for parent_id in rev.parent_ids:
75
 
                    if parent_id == last_rev_id:
76
 
                        break
77
 
                else:
78
 
                    raise BzrCheckError("previous revision {%s} not listed among "
79
 
                                        "parents of {%s}"
80
 
                                        % (last_rev_id, rev_id))
81
 
            elif last_rev_id:
82
 
                raise BzrCheckError("revision {%s} has no parents listed "
83
 
                                    "but preceded by {%s}"
84
 
                                    % (rev_id, last_rev_id))
85
 
 
86
 
            ## TODO: Check all the required fields are present on the revision.
87
 
 
88
 
            if rev.inventory_sha1:
89
 
                inv_sha1 = branch.get_inventory_sha1(rev_id)
90
 
                if inv_sha1 != rev.inventory_sha1:
91
 
                    raise BzrCheckError('Inventory sha1 hash doesn\'t match'
92
 
                        ' value in revision {%s}' % rev_id)
93
 
            else:
94
 
                missing_inventory_sha_cnt += 1
95
 
                mutter("no inventory_sha1 on revision {%s}" % rev_id)
96
 
 
97
 
            tree = branch.revision_tree(rev_id)
98
 
            inv = tree.inventory
99
 
            seen_ids = {}
100
 
            seen_names = {}
101
 
 
102
 
            ## p('revision %d/%d file ids' % (revno, revcount))
103
 
            for file_id in inv:
104
 
                if file_id in seen_ids:
105
 
                    raise BzrCheckError('duplicated file_id {%s} '
106
 
                                        'in inventory for revision {%s}'
107
 
                                        % (file_id, rev_id))
108
 
                seen_ids[file_id] = True
109
 
 
110
 
            i = 0
111
 
            for file_id in inv:
112
 
                i += 1
113
 
                if i & 31 == 0:
114
 
                    progress.tick()
115
 
 
116
 
                ie = inv[file_id]
117
 
 
118
 
                if ie.parent_id != None:
119
 
                    if ie.parent_id not in seen_ids:
120
 
                        raise BzrCheckError('missing parent {%s} in inventory for revision {%s}'
121
 
                                % (ie.parent_id, rev_id))
122
 
 
123
 
                if ie.kind == 'file':
124
 
                    text = tree.get_file_text(file_id)
125
 
                    checked_text_count += 1 
126
 
                    if ie.text_size != len(text):
127
 
                        raise BzrCheckError('text {%s} wrong size' % ie.text_id)
128
 
                    if ie.text_sha1 != sha_string(text):
129
 
                        raise BzrCheckError('text {%s} wrong sha1' % ie.text_id)
130
 
                elif ie.kind == 'directory':
131
 
                    if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
132
 
                        raise BzrCheckError('directory {%s} has text in revision {%s}'
133
 
                                % (file_id, rev_id))
134
 
 
135
 
            progress.tick()
136
 
            for path, ie in inv.iter_entries():
137
 
                if path in seen_names:
138
 
                    raise BzrCheckError('duplicated path %s '
139
 
                                        'in inventory for revision {%s}'
140
 
                                        % (path, rev_id))
141
 
                seen_names[path] = True
142
 
            last_rev_id = rev_id
143
 
 
144
 
 
145
 
        progress.clear()
146
 
 
147
 
        note('checked %d revisions, %d file texts' % (revcount, checked_text_count))
148
 
 
149
 
        if missing_inventory_sha_cnt:
150
 
            note('%d revisions are missing inventory_sha1' % missing_inventory_sha_cnt)
151
 
 
152
 
        ##if missing_revision_sha_cnt:
153
 
        ##    note('%d parent links are missing revision_sha1' % missing_revision_sha_cnt)
154
 
 
155
 
        if missing_revision_cnt:
156
 
            note('%d revisions are mentioned but not present' % missing_revision_cnt)
157
 
 
158
 
        if missing_revision_cnt:
159
 
            print '%d revisions are mentioned but not present' % missing_revision_cnt
160
 
 
161
 
        # stub this out for now because the main bzr branch has references
162
 
        # to revisions that aren't present in the store -- mbp 20050804
163
 
    #    if (missing_inventory_sha_cnt
164
 
    #        or missing_revision_sha_cnt):
165
 
    #        print '  (use "bzr upgrade" to fix them)'
166
 
 
167
 
 
168
 
 
169
 
 
 
62
            self.check_one_rev(rev_id, last_rev_id)
 
63
            last_rev_id = rev_id
 
64
        self.progress.clear()
 
65
        self.report_results()
 
66
 
 
67
 
 
68
    def report_results(self):
 
69
        note('checked branch %s format %d',
 
70
             self.branch.base, 
 
71
             self.branch._branch_format)
 
72
 
 
73
        note('checked %d revisions, %d file texts',
 
74
             self.checked_rev_cnt,
 
75
             self.checked_text_cnt)
 
76
 
 
77
        if self.missing_inventory_sha_cnt:
 
78
            note('%d revisions are missing inventory_sha1',
 
79
                 self.missing_inventory_sha_cnt)
 
80
 
 
81
        if self.missing_revision_cnt:
 
82
            note('%d revisions are mentioned but not present',
 
83
                 self.missing_revision_cnt)
 
84
 
 
85
 
 
86
    def check_one_rev(self, rev_id, last_rev_id):
 
87
        # mutter('    revision {%s}' % rev_id)
 
88
        branch = self.branch
 
89
        rev = branch.get_revision(rev_id)
 
90
        if rev.revision_id != rev_id:
 
91
            raise BzrCheckError('wrong internal revision id in revision {%s}'
 
92
                                % rev_id)
 
93
 
 
94
        # check the previous history entry is a parent of this entry
 
95
        if rev.parent_ids:
 
96
            if last_rev_id is None:
 
97
                raise BzrCheckError("revision {%s} has %d parents, but is the "
 
98
                                    "start of the branch"
 
99
                                    % (rev_id, len(rev.parent_ids)))
 
100
            for parent_id in rev.parent_ids:
 
101
                if parent_id == last_rev_id:
 
102
                    break
 
103
            else:
 
104
                raise BzrCheckError("previous revision {%s} not listed among "
 
105
                                    "parents of {%s}"
 
106
                                    % (last_rev_id, rev_id))
 
107
        elif last_rev_id:
 
108
            raise BzrCheckError("revision {%s} has no parents listed "
 
109
                                "but preceded by {%s}"
 
110
                                % (rev_id, last_rev_id))
 
111
 
 
112
        if rev.inventory_sha1:
 
113
            inv_sha1 = branch.get_inventory_sha1(rev_id)
 
114
            if inv_sha1 != rev.inventory_sha1:
 
115
                raise BzrCheckError('Inventory sha1 hash doesn\'t match'
 
116
                    ' value in revision {%s}' % rev_id)
 
117
        else:
 
118
            missing_inventory_sha_cnt += 1
 
119
            mutter("no inventory_sha1 on revision {%s}" % rev_id)
 
120
 
 
121
        tree = branch.revision_tree(rev_id)
 
122
        inv = tree.inventory
 
123
        seen_ids = {}
 
124
        seen_names = {}
 
125
 
 
126
        ## p('revision %d/%d file ids' % (revno, revcount))
 
127
        for file_id in inv:
 
128
            if file_id in seen_ids:
 
129
                raise BzrCheckError('duplicated file_id {%s} '
 
130
                                    'in inventory for revision {%s}'
 
131
                                    % (file_id, rev_id))
 
132
            seen_ids[file_id] = True
 
133
 
 
134
        i = 0
 
135
        for file_id in inv:
 
136
            i += 1
 
137
            if i & 31 == 0:
 
138
                self.progress.tick()
 
139
 
 
140
            ie = inv[file_id]
 
141
 
 
142
            if ie.parent_id != None:
 
143
                if ie.parent_id not in seen_ids:
 
144
                    raise BzrCheckError('missing parent {%s} in inventory for revision {%s}'
 
145
                            % (ie.parent_id, rev_id))
 
146
 
 
147
            if ie.kind == 'file':
 
148
                text = tree.get_file_text(file_id)
 
149
                self.checked_text_cnt += 1 
 
150
                if ie.text_size != len(text):
 
151
                    raise BzrCheckError('text {%s} wrong size' % ie.text_id)
 
152
                if ie.text_sha1 != sha_string(text):
 
153
                    raise BzrCheckError('text {%s} wrong sha1' % ie.text_id)
 
154
            elif ie.kind == 'directory':
 
155
                if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
 
156
                    raise BzrCheckError('directory {%s} has text in revision {%s}'
 
157
                            % (file_id, rev_id))
 
158
 
 
159
        self.progress.tick()
 
160
        for path, ie in inv.iter_entries():
 
161
            if path in seen_names:
 
162
                raise BzrCheckError('duplicated path %s '
 
163
                                    'in inventory for revision {%s}'
 
164
                                    % (path, rev_id))
 
165
            seen_names[path] = True
170
166
        
171
167
 
172
168