~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/annotate.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-12-14 22:26:50 UTC
  • mfrom: (2182.3.11 annotate_show_ids)
  • Revision ID: pqm@pqm.ubuntu.com-20061214222650-3fb161bed571e550
(John Arbash Meinel) Update 'bzr annotate' to show dotted revnos, or revision ids on request

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import sys
29
29
import time
30
30
 
 
31
from bzrlib import (
 
32
    errors,
 
33
    tsort,
 
34
    )
31
35
from bzrlib.config import extract_email_address
32
 
from bzrlib.errors import NoEmailInUsername
33
36
 
34
37
 
35
38
def annotate_file(branch, rev_id, file_id, verbose=False, full=False,
36
 
        to_file=None):
 
39
                  to_file=None, show_ids=False):
37
40
    if to_file is None:
38
41
        to_file = sys.stdout
39
42
 
40
43
    prevanno=''
 
44
    last_rev_id = None
 
45
    if show_ids:
 
46
        w = branch.repository.weave_store.get_weave(file_id,
 
47
            branch.repository.get_transaction())
 
48
        annotations = list(w.annotate_iter(rev_id))
 
49
        max_origin_len = max(len(origin) for origin, text in annotations)
 
50
        for origin, text in annotations:
 
51
            if full or last_rev_id != origin:
 
52
                this = origin
 
53
            else:
 
54
                this = ''
 
55
            to_file.write('%*s | %s' % (max_origin_len, this, text))
 
56
            last_rev_id = origin
 
57
        return
 
58
 
41
59
    annotation = list(_annotate_file(branch, rev_id, file_id))
42
60
    if len(annotation) == 0:
43
 
        max_origin_len = 0
 
61
        max_origin_len = max_revno_len = max_revid_len = 0
44
62
    else:
45
 
        max_origin_len = max(len(origin) for origin in set(x[1] for x in annotation))
46
 
    for (revno_str, author, date_str, line_rev_id, text ) in annotation:
 
63
        max_origin_len = max(len(x[1]) for x in annotation)
 
64
        max_revno_len = max(len(x[0]) for x in annotation)
 
65
        max_revid_len = max(len(x[3]) for x in annotation)
 
66
 
 
67
    if not verbose:
 
68
        max_revno_len = min(max_revno_len, 12)
 
69
    max_revno_len = max(max_revno_len, 3)
 
70
 
 
71
    for (revno_str, author, date_str, line_rev_id, text) in annotation:
47
72
        if verbose:
48
 
            anno = '%5s %-*s %8s ' % (revno_str, max_origin_len, author, date_str)
 
73
            anno = '%-*s %-*s %8s ' % (max_revno_len, revno_str,
 
74
                                       max_origin_len, author, date_str)
49
75
        else:
50
 
            anno = "%5s %-7s " % ( revno_str, author[:7] )
 
76
            if len(revno_str) > max_revno_len:
 
77
                revno_str = revno_str[:max_revno_len-1] + '>'
 
78
            anno = "%-*s %-7s " % (max_revno_len, revno_str, author[:7])
51
79
 
52
80
        if anno.lstrip() == "" and full: anno = prevanno
53
81
        print >>to_file, '%s| %s' % (anno, text)
54
82
        prevanno=anno
55
83
 
 
84
 
56
85
def _annotate_file(branch, rev_id, file_id ):
 
86
    """Yield the origins for each line of a file.
 
87
 
 
88
    This includes detailed information, such as the committer name, and
 
89
    date string for the commit, rather than just the revision id.
 
90
    """
57
91
 
58
92
    rh = branch.revision_history()
59
 
    w = branch.repository.weave_store.get_weave(file_id, 
 
93
    revision_graph = branch.repository.get_revision_graph(rev_id)
 
94
    merge_sorted_revisions = tsort.merge_sort(
 
95
        revision_graph,
 
96
        rev_id,
 
97
        None,
 
98
        generate_revno=True)
 
99
    revision_id_to_revno = dict((rev_id, revno)
 
100
                                for seq_num, rev_id, depth, revno, end_of_merge
 
101
                                 in merge_sorted_revisions)
 
102
    w = branch.repository.weave_store.get_weave(file_id,
60
103
        branch.repository.get_transaction())
61
104
    last_origin = None
62
105
    annotations = list(w.annotate_iter(rev_id))
74
117
            if origin not in revisions:
75
118
                (revno_str, author, date_str) = ('?','?','?')
76
119
            else:
77
 
                if origin in rh:
78
 
                    revno_str = str(rh.index(origin) + 1)
79
 
                else:
80
 
                    revno_str = 'merge'
 
120
                revno_str = '.'.join(str(i) for i in
 
121
                                            revision_id_to_revno[origin])
81
122
            rev = revisions[origin]
82
123
            tz = rev.timezone or 0
83
 
            date_str = time.strftime('%Y%m%d', 
 
124
            date_str = time.strftime('%Y%m%d',
84
125
                                     time.gmtime(rev.timestamp + tz))
85
126
            # a lazy way to get something like the email address
86
127
            # TODO: Get real email address
87
128
            author = rev.committer
88
129
            try:
89
130
                author = extract_email_address(author)
90
 
            except NoEmailInUsername:
 
131
            except errors.NoEmailInUsername:
91
132
                pass        # use the whole name
92
133
        yield (revno_str, author, date_str, origin, text)