~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Martin Pool
  • Date: 2006-02-22 04:29:54 UTC
  • mfrom: (1566 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1569.
  • Revision ID: mbp@sourcefrog.net-20060222042954-60333f08dd56a646
[merge] from bzr.dev before integration
Fix undefined ordering in sign_my_revisions breaking tests

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.control_files.get_utf8(
37
 
        'branch-format').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
38
57
 
39
58
    def plural(n, base='', pl=None):
40
59
        if n == 1:
46
65
 
47
66
    count_version_dirs = 0
48
67
 
49
 
    basis = b.basis_tree()
50
 
    working = b.working_tree()
 
68
    basis = working.basis_tree()
51
69
    work_inv = working.inventory
52
70
    delta = diff.compare_trees(basis, working, want_unchanged=True)
 
71
    history = b.revision_history()
53
72
    
54
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))
55
82
    print 'in the working tree:'
56
83
    print '  %8s unchanged' % len(delta.unchanged)
57
84
    print '  %8d modified' % len(delta.modified)
79
106
 
80
107
    print
81
108
    print 'branch history:'
82
 
    history = b.revision_history()
83
109
    revno = len(history)
84
110
    print '  %8d revision%s' % (revno, plural(revno))
85
111
    committers = {}
106
132
    print
107
133
    print 'revision store:'
108
134
    c, t = b.repository.revision_store.total_size()
109
 
    print '  %8d revisions' % c
 
135
    print '  %8d revision%s' % (c, plural(c))
110
136
    print '  %8d kB' % (t/1024)
111
137
 
112
138