~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Martin Pool
  • Date: 2005-09-16 09:19:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050916091954-aee6d7be00db6354
- more docs in commit code

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
import bzrlib.ui
19
19
from bzrlib.trace import note, warning
 
20
from bzrlib.osutils import rename, sha_string
20
21
 
21
22
def _update_store_entry(obj, obj_id, branch, store_name, store):
22
23
    """This is just a meta-function, which handles both revision entries
24
25
    """
25
26
    from bzrlib.trace import mutter
26
27
    import tempfile, os, errno
27
 
    from osutils import rename
28
28
    obj_tmp = tempfile.TemporaryFile()
29
29
    obj.write_xml(obj_tmp)
30
30
    obj_tmp.seek(0)
72
72
    :param inv_id:  The inventory id for this inventory
73
73
    :param branch:  The Branch where this entry will be stored.
74
74
    """
75
 
    _update_store_entry(inv, inv_id, branch,
76
 
            'inventory-store', branch.inventory_store)
 
75
    raise NotImplementedError("can't update existing inventory entry")
77
76
 
78
77
 
79
78
def check(branch):
101
100
        history = branch.revision_history()
102
101
        revno = 0
103
102
        revcount = len(history)
104
 
        mismatch_inv_id = []
105
103
 
106
 
        # for all texts checked, text_id -> sha1
107
 
        checked_texts = {}
 
104
        checked_text_count = 0
108
105
 
109
106
        progress = bzrlib.ui.ui_factory.progress_bar()
110
107
 
155
152
                                    "by {%s}"
156
153
                                    % (rev_id, last_rev_id))
157
154
 
158
 
            if rev.inventory_id != rev_id:
159
 
                mismatch_inv_id.append(rev_id)
160
 
 
161
155
            ## TODO: Check all the required fields are present on the revision.
162
156
 
163
157
            if rev.inventory_sha1:
164
 
                inv_sha1 = branch.get_inventory_sha1(rev.inventory_id)
 
158
                inv_sha1 = branch.get_inventory_sha1(rev_id)
165
159
                if inv_sha1 != rev.inventory_sha1:
166
160
                    raise BzrCheckError('Inventory sha1 hash doesn\'t match'
167
161
                        ' value in revision {%s}' % rev_id)
169
163
                missing_inventory_sha_cnt += 1
170
164
                mutter("no inventory_sha1 on revision {%s}" % rev_id)
171
165
 
172
 
            inv = branch.get_inventory(rev.inventory_id)
 
166
            tree = branch.revision_tree(rev_id)
 
167
            inv = tree.inventory
173
168
            seen_ids = {}
174
169
            seen_names = {}
175
170
 
195
190
                                % (ie.parent_id, rev_id))
196
191
 
197
192
                if ie.kind == 'file':
198
 
                    if ie.text_id in checked_texts:
199
 
                        fp = checked_texts[ie.text_id]
200
 
                    else:
201
 
                        if not ie.text_id in branch.text_store:
202
 
                            raise BzrCheckError('text {%s} not in text_store' % ie.text_id)
203
 
 
204
 
                        tf = branch.text_store[ie.text_id]
205
 
                        fp = fingerprint_file(tf)
206
 
                        checked_texts[ie.text_id] = fp
207
 
 
208
 
                    if ie.text_size != fp['size']:
 
193
                    text = tree.get_file_text(file_id)
 
194
                    checked_text_count += 1 
 
195
                    if ie.text_size != len(text):
209
196
                        raise BzrCheckError('text {%s} wrong size' % ie.text_id)
210
 
                    if ie.text_sha1 != fp['sha1']:
 
197
                    if ie.text_sha1 != sha_string(text):
211
198
                        raise BzrCheckError('text {%s} wrong sha1' % ie.text_id)
212
199
                elif ie.kind == 'directory':
213
200
                    if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
220
207
                    raise BzrCheckError('duplicated path %s '
221
208
                                        'in inventory for revision {%s}'
222
209
                                        % (path, rev_id))
223
 
            seen_names[path] = True
 
210
                seen_names[path] = True
224
211
            last_rev_id = rev_id
225
212
 
226
213
    finally:
228
215
 
229
216
    progress.clear()
230
217
 
231
 
    note('checked %d revisions, %d file texts' % (revcount, len(checked_texts)))
 
218
    note('checked %d revisions, %d file texts' % (revcount, checked_text_count))
232
219
    
233
220
    if missing_inventory_sha_cnt:
234
221
        note('%d revisions are missing inventory_sha1' % missing_inventory_sha_cnt)
235
222
 
236
 
    if missing_revision_sha_cnt:
237
 
        note('%d parent links are missing revision_sha1' % missing_revision_sha_cnt)
 
223
    ##if missing_revision_sha_cnt:
 
224
    ##    note('%d parent links are missing revision_sha1' % missing_revision_sha_cnt)
238
225
 
239
226
    if missing_revision_cnt:
240
227
        note('%d revisions are mentioned but not present' % missing_revision_cnt)
247
234
#    if (missing_inventory_sha_cnt
248
235
#        or missing_revision_sha_cnt):
249
236
#        print '  (use "bzr upgrade" to fix them)'
250
 
 
251
 
    if mismatch_inv_id:
252
 
        warning('%d revisions have mismatched inventory ids:' % len(mismatch_inv_id))
253
 
        for rev_id in mismatch_inv_id:
254
 
            warning('  %s', rev_id)