~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Olaf Conradi
  • Date: 2006-03-28 23:30:02 UTC
  • mto: (1661.1.1 bzr.mbp.remember)
  • mto: This revision was merged to the branch mainline in revision 1663.
  • Revision ID: olaf@conradi.org-20060328233002-f6262df0e19c1963
Added testcases for using pull with --remember. Moved remember code to
beginning of cmd_pull. This remembers the location in case of a failure
during pull.

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
 
25
from bzrlib.missing import find_unmerged
21
26
from bzrlib.osutils import format_date
 
27
from bzrlib.symbol_versioning import *
22
28
 
23
29
 
24
30
def _countiter(it):
29
35
    return i        
30
36
 
31
37
 
32
 
 
 
38
def plural(n, base='', pl=None):
 
39
    if n == 1:
 
40
        return base
 
41
    elif pl != None:
 
42
        return pl
 
43
    else:
 
44
        return 's'
 
45
 
 
46
 
 
47
@deprecated_function(zero_eight)
33
48
def show_info(b):
34
 
    import diff
 
49
    """Please see show_bzrdir_info."""
 
50
    return show_bzrdir_info(b.bzrdir)
 
51
 
 
52
 
 
53
def show_bzrdir_info(a_bzrdir):
 
54
    """Output to stdout the 'info' for a_bzrdir."""
 
55
 
 
56
    working = a_bzrdir.open_workingtree()
 
57
    working.lock_read()
 
58
    try:
 
59
        show_tree_info(working)
 
60
    finally:
 
61
        working.unlock()
 
62
 
 
63
 
 
64
def show_tree_info(working):
 
65
    """Output to stdout the 'info' for working."""
 
66
 
 
67
    b = working.branch
35
68
    
36
 
    print 'branch format:', b.controlfile('branch-format', 'r').readline().rstrip('\n')
 
69
    if working.bzrdir != b.bzrdir:
 
70
        print 'working tree format:', working._format
 
71
        print 'branch location:', b.bzrdir.root_transport.base
 
72
    try:
 
73
        b._format.get_format_string()
 
74
        format = b._format
 
75
    except NotImplementedError:
 
76
        format = b.bzrdir._format
 
77
    print 'branch format:', format
37
78
 
38
 
    def plural(n, base='', pl=None):
39
 
        if n == 1:
40
 
            return base
41
 
        elif pl != None:
42
 
            return pl
43
 
        else:
44
 
            return 's'
 
79
    if b.get_bound_location():
 
80
        print 'bound to branch:',  b.get_bound_location()
45
81
 
46
82
    count_version_dirs = 0
47
83
 
48
 
    basis = b.basis_tree()
49
 
    working = b.working_tree()
 
84
    basis = working.basis_tree()
50
85
    work_inv = working.inventory
51
86
    delta = diff.compare_trees(basis, working, want_unchanged=True)
 
87
    history = b.revision_history()
52
88
    
53
89
    print
 
90
    # Try with inaccessible branch ?
 
91
    master = b.get_master_branch()
 
92
    if master:
 
93
        local_extra, remote_extra = find_unmerged(b, b.get_master_branch())
 
94
        if remote_extra:
 
95
            print 'Branch is out of date: missing %d revision%s.' % (
 
96
                len(remote_extra), plural(len(remote_extra)))
 
97
 
 
98
    if len(history) and working.last_revision() != history[-1]:
 
99
        try:
 
100
            missing_count = len(history) - history.index(working.last_revision())
 
101
        except ValueError:
 
102
            # consider it all out of date
 
103
            missing_count = len(history)
 
104
        print 'Working tree is out of date: missing %d revision%s.' % (
 
105
            missing_count, plural(missing_count))
54
106
    print 'in the working tree:'
55
107
    print '  %8s unchanged' % len(delta.unchanged)
56
108
    print '  %8d modified' % len(delta.modified)
78
130
 
79
131
    print
80
132
    print 'branch history:'
81
 
    history = b.revision_history()
82
133
    revno = len(history)
83
134
    print '  %8d revision%s' % (revno, plural(revno))
84
135
    committers = {}
85
136
    for rev in history:
86
 
        committers[b.get_revision(rev).committer] = True
 
137
        committers[b.repository.get_revision(rev).committer] = True
87
138
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
88
139
    if revno > 0:
89
 
        firstrev = b.get_revision(history[0])
 
140
        firstrev = b.repository.get_revision(history[0])
90
141
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
91
142
        print '  %8d day%s old' % (age, plural(age))
92
143
        print '   first revision: %s' % format_date(firstrev.timestamp,
93
144
                                                    firstrev.timezone)
94
145
 
95
 
        lastrev = b.get_revision(history[-1])
 
146
        lastrev = b.repository.get_revision(history[-1])
96
147
        print '  latest revision: %s' % format_date(lastrev.timestamp,
97
148
                                                    lastrev.timezone)
98
149
 
104
155
 
105
156
    print
106
157
    print 'revision store:'
107
 
    c, t = b.revision_store.total_size()
108
 
    print '  %8d revisions' % c
 
158
    c, t = b.repository._revision_store.total_size(b.repository.get_transaction())
 
159
    print '  %8d revision%s' % (c, plural(c))
109
160
    print '  %8d kB' % (t/1024)
110
161
 
111
162
 
115
166
#     print '  %8d inventories' % c
116
167
#     print '  %8d kB' % (t/1024)
117
168
 
 
169
    loc = b.get_parent()
 
170
    if loc is not None:
 
171
        print
 
172
        print 'parent location:'
 
173
        print '  %s' % loc
 
174