~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Martin Pool
  • Date: 2005-05-15 02:36:04 UTC
  • Revision ID: mbp@sourcefrog.net-20050515023603-7328f6cbabd2b09a
- Merge aaron's merge command

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/python
2
 
 
3
 
 
4
1
# Copyright (C) 2004, 2005 by Martin Pool
5
2
# Copyright (C) 2005 by Canonical Ltd
6
3
 
7
 
 
8
4
# This program is free software; you can redistribute it and/or modify
9
5
# it under the terms of the GNU General Public License as published by
10
6
# the Free Software Foundation; either version 2 of the License, or
24
20
######################################################################
25
21
# consistency checks
26
22
 
27
 
def check():
28
 
    """Consistency check of tree."""
29
 
    assert_in_tree()
30
 
    mutter("checking tree")
31
 
    check_patches_exist()
32
 
    check_patch_chaining()
33
 
    check_patch_uniqueness()
34
 
    check_inventory()
35
 
    mutter("tree looks OK")
36
 
    ## TODO: Check that previous-inventory and previous-manifest
37
 
    ## are the same as those stored in the previous changeset.
38
 
 
39
 
    ## TODO: Check all patches present in patch directory are
40
 
    ## mentioned in patch history; having an orphaned patch only gives
41
 
    ## a warning.
42
 
 
43
 
    ## TODO: Check cached data is consistent with data reconstructed
44
 
    ## from scratch.
45
 
 
46
 
    ## TODO: Check no control files are versioned.
47
 
 
48
 
    ## TODO: Check that the before-hash of each file in a later
49
 
    ## revision matches the after-hash in the previous revision to
50
 
    ## touch it.
51
 
 
52
 
 
53
 
def check_inventory():
54
 
    mutter("checking inventory file and ids...")
55
 
    seen_ids = Set()
56
 
    seen_names = Set()
57
 
    
58
 
    for l in controlfile('inventory').readlines():
59
 
        parts = l.split()
60
 
        if len(parts) != 2:
61
 
            bailout("malformed inventory line: " + `l`)
62
 
        file_id, name = parts
63
 
        
64
 
        if file_id in seen_ids:
65
 
            bailout("duplicated file id " + file_id)
66
 
        seen_ids.add(file_id)
67
 
 
68
 
        if name in seen_names:
69
 
            bailout("duplicated file name in inventory: " + quotefn(name))
70
 
        seen_names.add(name)
71
 
        
72
 
        if is_control_file(name):
73
 
            raise BzrError("control file %s present in inventory" % quotefn(name))
74
 
 
75
 
 
76
 
def check_patches_exist():
77
 
    """Check constraint of current version: all patches exist"""
78
 
    mutter("checking all patches are present...")
79
 
    for pid in revision_history():
80
 
        read_patch_header(pid)
81
 
 
82
 
 
83
 
def check_patch_chaining():
84
 
    """Check ancestry of patches and history file is consistent"""
85
 
    mutter("checking patch chaining...")
86
 
    prev = None
87
 
    for pid in revision_history():
88
 
        log_prev = read_patch_header(pid).precursor
89
 
        if log_prev != prev:
90
 
            bailout("inconsistent precursor links on " + pid)
91
 
        prev = pid
92
 
 
93
 
 
94
 
def check_patch_uniqueness():
95
 
    """Make sure no patch is listed twice in the history.
96
 
 
97
 
    This should be implied by having correct ancestry but I'll check it
98
 
    anyhow."""
99
 
    mutter("checking history for duplicates...")
100
 
    seen = Set()
101
 
    for pid in revision_history():
102
 
        if pid in seen:
103
 
            bailout("patch " + pid + " appears twice in history")
104
 
        seen.add(pid)
105
 
        
 
23
import sys
 
24
from sets import Set
 
25
 
 
26
from trace import mutter
 
27
from errors import bailout
 
28
import osutils
 
29
 
 
30
def check(branch, progress=True):
 
31
    out = sys.stdout
 
32
 
 
33
    # TODO: factor out
 
34
    if not (hasattr(out, 'isatty') and out.isatty()):
 
35
        progress=False
 
36
 
 
37
    if progress:
 
38
        def p(m):
 
39
            mutter('checking ' + m)
 
40
            out.write('\rchecking: %-50.50s' % m)
 
41
            out.flush()
 
42
    else:
 
43
        def p(m):
 
44
            mutter('checking ' + m)
 
45
 
 
46
    p('history of %r' % branch.base)
 
47
    last_ptr = None
 
48
    checked_revs = Set()
 
49
    
 
50
    history = branch.revision_history()
 
51
    revno = 0
 
52
    revcount = len(history)
 
53
 
 
54
    checked_texts = {}
 
55
    
 
56
    for rid in history:
 
57
        revno += 1
 
58
        p('revision %d/%d' % (revno, revcount))
 
59
        mutter('    revision {%s}' % rid)
 
60
        rev = branch.get_revision(rid)
 
61
        if rev.revision_id != rid:
 
62
            bailout('wrong internal revision id in revision {%s}' % rid)
 
63
        if rev.precursor != last_ptr:
 
64
            bailout('mismatched precursor in revision {%s}' % rid)
 
65
        last_ptr = rid
 
66
        if rid in checked_revs:
 
67
            bailout('repeated revision {%s}' % rid)
 
68
        checked_revs.add(rid)
 
69
 
 
70
        ## TODO: Check all the required fields are present on the revision.
 
71
 
 
72
        inv = branch.get_inventory(rev.inventory_id)
 
73
        seen_ids = Set()
 
74
        seen_names = Set()
 
75
 
 
76
        p('revision %d/%d file ids' % (revno, revcount))
 
77
        for file_id in inv:
 
78
            if file_id in seen_ids:
 
79
                bailout('duplicated file_id {%s} in inventory for revision {%s}'
 
80
                        % (file_id, rid))
 
81
            seen_ids.add(file_id)
 
82
 
 
83
        i = 0
 
84
        len_inv = len(inv)
 
85
        for file_id in inv:
 
86
            i += 1
 
87
            if (i % 100) == 0:
 
88
                p('revision %d/%d file text %d/%d' % (revno, revcount, i, len_inv))
 
89
 
 
90
            ie = inv[file_id]
 
91
 
 
92
            if ie.parent_id != None:
 
93
                if ie.parent_id not in seen_ids:
 
94
                    bailout('missing parent {%s} in inventory for revision {%s}'
 
95
                            % (ie.parent_id, rid))
 
96
 
 
97
            if ie.kind == 'file':
 
98
                if ie.text_id in checked_texts:
 
99
                    fp = checked_texts[ie.text_id]
 
100
                else:
 
101
                    if not ie.text_id in branch.text_store:
 
102
                        bailout('text {%s} not in text_store' % ie.text_id)
 
103
 
 
104
                    tf = branch.text_store[ie.text_id]
 
105
                    fp = osutils.fingerprint_file(tf)
 
106
                    checked_texts[ie.text_id] = fp
 
107
 
 
108
                if ie.text_size != fp['size']:
 
109
                    bailout('text {%s} wrong size' % ie.text_id)
 
110
                if ie.text_sha1 != fp['sha1']:
 
111
                    bailout('text {%s} wrong sha1' % ie.text_id)
 
112
            elif ie.kind == 'directory':
 
113
                if ie.text_sha1 != None or ie.text_size != None or ie.text_id != None:
 
114
                    bailout('directory {%s} has text in revision {%s}'
 
115
                            % (file_id, rid))
 
116
 
 
117
        p('revision %d/%d file paths' % (revno, revcount))
 
118
        for path, ie in inv.iter_entries():
 
119
            if path in seen_names:
 
120
                bailout('duplicated path %r in inventory for revision {%s}' % (path, revid))
 
121
            seen_names.add(path)
 
122
 
 
123
 
 
124
    p('done')
 
125
    if progress:
 
126
        print 
 
127
    print 'checked %d revisions, %d file texts' % (revcount, len(checked_texts))
106
128