~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-14 17:02:35 UTC
  • mto: (1587.1.6 bound-branches)
  • mto: This revision was merged to the branch mainline in revision 1590.
  • Revision ID: john@arbash-meinel.com-20051114170235-f85afa458bae956e
Fixing up the error message for a failed bind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# TODO: Show which revision caused a line to merge into the parent
24
24
 
 
25
# TODO: With --long, show entire email address, not just the first bit
 
26
 
25
27
# TODO: perhaps abbreviate timescales depending on how recent they are
26
28
# e.g. "3:12 Tue", "13 Oct", "Oct 2005", etc.  
27
29
 
28
30
import sys
 
31
import os
29
32
import time
30
33
 
 
34
import bzrlib.weave
31
35
from bzrlib.config import extract_email_address
32
 
from bzrlib.errors import BzrError
33
36
 
34
37
 
35
38
def annotate_file(branch, rev_id, file_id, verbose=False, full=False,
38
41
        to_file = sys.stdout
39
42
 
40
43
    prevanno=''
41
 
    annotation = list(_annotate_file(branch, rev_id, file_id))
42
 
    max_origin_len = max(len(origin) for origin in set(x[1] for x in annotation))
43
 
    for (revno_str, author, date_str, line_rev_id, text ) in annotation:
 
44
    for (revno_str, author, date_str, line_rev_id, text ) in \
 
45
            _annotate_file(branch, rev_id, file_id ):
 
46
 
44
47
        if verbose:
45
 
            anno = '%5s %-*s %8s ' % (revno_str, max_origin_len, author, date_str)
 
48
            anno = '%5s %-12s %8s ' % (revno_str, author[:12], date_str)
46
49
        else:
47
50
            anno = "%5s %-7s " % ( revno_str, author[:7] )
48
51
 
53
56
def _annotate_file(branch, rev_id, file_id ):
54
57
 
55
58
    rh = branch.revision_history()
56
 
    w = branch.repository.weave_store.get_weave(file_id, 
57
 
        branch.repository.get_transaction())
 
59
    w = branch.weave_store.get_weave(file_id, branch.get_transaction())
58
60
    last_origin = None
59
61
    for origin, text in w.annotate_iter(rev_id):
60
62
        text = text.rstrip('\r\n')
62
64
            (revno_str, author, date_str) = ('','','')
63
65
        else:
64
66
            last_origin = origin
65
 
            if not branch.repository.has_revision(origin):
 
67
            line_rev_id = w.idx_to_name(origin)
 
68
            if not branch.has_revision(line_rev_id):
66
69
                (revno_str, author, date_str) = ('?','?','?')
67
70
            else:
68
 
                if origin in rh:
69
 
                    revno_str = str(rh.index(origin) + 1)
 
71
                if line_rev_id in rh:
 
72
                    revno_str = str(rh.index(line_rev_id) + 1)
70
73
                else:
71
74
                    revno_str = 'merge'
72
 
            rev = branch.repository.get_revision(origin)
 
75
            rev = branch.get_revision(line_rev_id)
73
76
            tz = rev.timezone or 0
74
77
            date_str = time.strftime('%Y%m%d', 
75
78
                                     time.gmtime(rev.timestamp + tz))
80
83
                author = extract_email_address(author)
81
84
            except BzrError:
82
85
                pass        # use the whole name
83
 
        yield (revno_str, author, date_str, origin, text)
 
86
        yield (revno_str, author, date_str, line_rev_id, text)
 
87
 
 
88
 
 
89
if __name__ == '__main__':
 
90
    from bzrlib.branch import Branch
 
91
    from bzrlib.trace import enable_default_logging
 
92
    from bzrlib.workingtree import WorkingTree
 
93
 
 
94
    enable_default_logging()
 
95
    b = Branch.open_containing(sys.argv[1])[0]
 
96
    tree = WorkingTree(b.base, b)
 
97
    rp = tree.relpath(sys.argv[1])
 
98
    tree = b.revision_tree(b.last_revision())
 
99
    file_id = tree.inventory.path2id(rp)
 
100
    file_version = tree.inventory[file_id].revision
 
101
    annotate_file(b, file_version, file_id, to_file = sys.stdout)