~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Aaron Bentley
  • Date: 2006-02-22 14:39:42 UTC
  • mto: (2027.1.2 revert-subpath-56549)
  • mto: This revision was merged to the branch mainline in revision 1570.
  • Revision ID: abentley@panoramicfeedback.com-20060222143942-ae72299f2de66767
Fixed build_tree with symlinks

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
 
19
__all__ = ['show_bzrdir_info']
 
20
 
19
21
import time
20
22
 
 
23
 
 
24
import bzrlib.diff as diff
21
25
from bzrlib.osutils import format_date
 
26
from bzrlib.symbol_versioning import *
22
27
 
23
28
 
24
29
def _countiter(it):
29
34
    return i        
30
35
 
31
36
 
32
 
 
 
37
@deprecated_function(zero_eight)
33
38
def show_info(b):
34
 
    import diff
 
39
    """Please see show_bzrdir_info."""
 
40
    return show_bzrdir_info(b.bzrdir)
 
41
 
 
42
def show_bzrdir_info(a_bzrdir):
 
43
    """Output to stdout the 'info' for a_bzrdir."""
 
44
 
 
45
    working = a_bzrdir.open_workingtree()
 
46
    b = a_bzrdir.open_branch()
35
47
    
36
 
    print 'branch format:', b.controlfile('branch-format', 'r').readline().rstrip('\n')
 
48
    if working.bzrdir != b.bzrdir:
 
49
        print 'working tree format:', working._format
 
50
        print 'branch location:', b.bzrdir.root_transport.base
 
51
    try:
 
52
        b._format.get_format_string()
 
53
        format = b._format
 
54
    except NotImplementedError:
 
55
        format = b.bzrdir._format
 
56
    print 'branch format:', format
37
57
 
38
58
    def plural(n, base='', pl=None):
39
59
        if n == 1:
45
65
 
46
66
    count_version_dirs = 0
47
67
 
48
 
    basis = b.basis_tree()
49
 
    working = b.working_tree()
 
68
    basis = working.basis_tree()
50
69
    work_inv = working.inventory
51
70
    delta = diff.compare_trees(basis, working, want_unchanged=True)
 
71
    history = b.revision_history()
52
72
    
53
73
    print
 
74
    if len(history) and working.last_revision() != history[-1]:
 
75
        try:
 
76
            missing_count = len(history) - history.index(working.last_revision())
 
77
        except ValueError:
 
78
            # consider it all out of date
 
79
            missing_count = len(history)
 
80
        print 'Working tree is out of date: missing %d revision%s.' % (
 
81
            missing_count, plural(missing_count))
54
82
    print 'in the working tree:'
55
83
    print '  %8s unchanged' % len(delta.unchanged)
56
84
    print '  %8d modified' % len(delta.modified)
78
106
 
79
107
    print
80
108
    print 'branch history:'
81
 
    history = b.revision_history()
82
109
    revno = len(history)
83
110
    print '  %8d revision%s' % (revno, plural(revno))
84
111
    committers = {}
85
112
    for rev in history:
86
 
        committers[b.get_revision(rev).committer] = True
 
113
        committers[b.repository.get_revision(rev).committer] = True
87
114
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
88
115
    if revno > 0:
89
 
        firstrev = b.get_revision(history[0])
 
116
        firstrev = b.repository.get_revision(history[0])
90
117
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
91
118
        print '  %8d day%s old' % (age, plural(age))
92
119
        print '   first revision: %s' % format_date(firstrev.timestamp,
93
120
                                                    firstrev.timezone)
94
121
 
95
 
        lastrev = b.get_revision(history[-1])
 
122
        lastrev = b.repository.get_revision(history[-1])
96
123
        print '  latest revision: %s' % format_date(lastrev.timestamp,
97
124
                                                    lastrev.timezone)
98
125
 
104
131
 
105
132
    print
106
133
    print 'revision store:'
107
 
    c, t = b.revision_store.total_size()
108
 
    print '  %8d revisions' % c
 
134
    c, t = b.repository.revision_store.total_size()
 
135
    print '  %8d revision%s' % (c, plural(c))
109
136
    print '  %8d kB' % (t/1024)
110
137
 
111
138