~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

Make bzr info command work on both local and remote locations. Support
branches and repositories, next to working trees.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
 
24
24
import bzrlib.diff as diff
 
25
from bzrlib.errors import (NoWorkingTree, NotBranchError,
 
26
                           NoRepositoryPresent, NotLocalUrl)
25
27
from bzrlib.missing import find_unmerged
26
28
from bzrlib.osutils import format_date
27
29
from bzrlib.symbol_versioning import *
44
46
        return 's'
45
47
 
46
48
 
47
 
@deprecated_function(zero_eight)
48
 
def show_info(b):
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
 
    branch = working.branch
68
 
    repository = branch.repository
69
 
    control_format = working.bzrdir._format.get_format_description()
70
 
    working_format = working._format.get_format_description()
71
 
    branch_format = branch._format.get_format_description()
72
 
    repository_format = repository._format.get_format_description()
73
 
 
 
49
def _show_location_info(repository=None, branch=None, working=None):
 
50
    """Show known locations for working, branch and repository."""
74
51
    print 'Location:'
75
 
    if working.bzrdir != branch.bzrdir:
 
52
    if working and branch and working.bzrdir != branch.bzrdir:
76
53
        # Lightweight checkout
77
54
        print '       checkout root: %s' % (
78
55
            working.bzrdir.root_transport.base)
79
56
        print '  checkout of branch: %s' % (
80
57
            branch.bzrdir.root_transport.base)
81
 
    else:
 
58
    elif branch:
82
59
        # Standalone or bound branch (normal checkout)
83
60
        print '         branch root: %s' % (
84
61
            branch.bzrdir.root_transport.base)
85
62
        if branch.get_bound_location():
86
63
            print '     bound to branch: %s' % branch.get_bound_location()
87
64
 
88
 
    if repository.bzrdir != branch.bzrdir:
 
65
    if repository and (not branch or repository.bzrdir != branch.bzrdir):
89
66
        if repository.is_shared():
90
67
            print '   shared repository: %s' % (
91
68
                repository.bzrdir.root_transport.base)
93
70
            print '          repository: %s' % (
94
71
                repository.bzrdir.root_transport.base)
95
72
 
96
 
    if branch.get_parent():
97
 
        print '       parent branch: %s' % branch.get_parent()
98
 
    if branch.get_push_location():
99
 
        print '      push to branch: %s' % branch.get_push_location()
100
 
 
 
73
    if branch:
 
74
        if branch.get_parent():
 
75
            print '       parent branch: %s' % branch.get_parent()
 
76
        if branch.get_push_location():
 
77
            print '      push to branch: %s' % branch.get_push_location()
 
78
 
 
79
 
 
80
def _show_format_info(control=None, repository=None, branch=None, working=None):
 
81
    """Show known formats for control, working, branch and repository."""
101
82
    print
102
83
    print 'Format:'
103
 
    print '       control: %s' % control_format
104
 
    print '  working tree: %s' % working_format
105
 
    print '        branch: %s' % branch_format
106
 
    print '    repository: %s' % repository_format
107
 
 
108
 
    basis = working.basis_tree()
109
 
    work_inv = working.inventory
110
 
    delta = diff.compare_trees(basis, working, want_unchanged=True)
111
 
    history = branch.revision_history()
112
 
    
113
 
    print
 
84
    if control:
 
85
        print '       control: %s' % control._format.get_format_description()
 
86
    if working:
 
87
        print '  working tree: %s' % working._format.get_format_description()
 
88
    if branch:
 
89
        print '        branch: %s' % branch._format.get_format_description()
 
90
    if repository:
 
91
        print '    repository: %s' % repository._format.get_format_description()
 
92
 
 
93
 
 
94
def _show_missing_revisions_branch(branch):
 
95
    """Show missing master revisions in branch."""
114
96
    # Try with inaccessible branch ?
115
97
    master = branch.get_master_branch()
116
98
    if master:
117
99
        local_extra, remote_extra = find_unmerged(branch, master)
118
100
        if remote_extra:
 
101
            print
119
102
            print 'Branch is out of date: missing %d revision%s.' % (
120
103
                len(remote_extra), plural(len(remote_extra)))
121
 
            print
122
 
 
 
104
 
 
105
 
 
106
def _show_missing_revisions_working(working):
 
107
    """Show missing revisions in working tree."""
 
108
    branch = working.branch
 
109
    basis = working.basis_tree()
 
110
    work_inv = working.inventory
 
111
    delta = diff.compare_trees(basis, working, want_unchanged=True)
 
112
    history = branch.revision_history()
123
113
    tree_last_id = working.last_revision()
 
114
 
124
115
    if len(history) and tree_last_id != history[-1]:
125
116
        tree_last_revno = branch.revision_id_to_revno(tree_last_id)
126
117
        missing_count = len(history) - tree_last_revno
 
118
        print
127
119
        print 'Working tree is out of date: missing %d revision%s.' % (
128
120
            missing_count, plural(missing_count))
129
 
        print
130
 
 
 
121
 
 
122
 
 
123
def _show_working_stats(working):
 
124
    """Show statistics about a working tree."""
 
125
    basis = working.basis_tree()
 
126
    work_inv = working.inventory
 
127
    delta = diff.compare_trees(basis, working, want_unchanged=True)
 
128
 
 
129
    print
131
130
    print 'In the working tree:'
132
131
    print '  %8s unchanged' % len(delta.unchanged)
133
132
    print '  %8d modified' % len(delta.modified)
152
151
          % (dir_cnt,
153
152
             plural(dir_cnt, 'subdirectory', 'subdirectories'))
154
153
 
 
154
 
 
155
def _show_branch_stats(branch, verbose):
 
156
    """Show statistics about a branch."""
 
157
    repository = branch.repository
 
158
    history = branch.revision_history()
 
159
 
155
160
    print
156
161
    print 'Branch history:'
157
162
    revno = len(history)
158
163
    print '  %8d revision%s' % (revno, plural(revno))
159
 
    committers = {}
160
 
    for rev in history:
161
 
        committers[repository.get_revision(rev).committer] = True
162
 
    print '  %8d committer%s' % (len(committers), plural(len(committers)))
 
164
    if verbose:
 
165
        committers = {}
 
166
        for rev in history:
 
167
            committers[repository.get_revision(rev).committer] = True
 
168
        print '  %8d committer%s' % (len(committers), plural(len(committers)))
163
169
    if revno > 0:
164
170
        firstrev = repository.get_revision(history[0])
165
171
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
177
183
#     print '  %8d file texts' % c
178
184
#     print '  %8d KiB' % (t/1024)
179
185
 
180
 
    print
181
 
    print 'Revision store:'
182
 
    c, t = repository._revision_store.total_size(repository.get_transaction())
183
 
    print '  %8d revision%s' % (c, plural(c))
184
 
    print '  %8d KiB' % (t/1024)
185
 
 
186
186
#     print
187
187
#     print 'Inventory store:'
188
188
#     c, t = branch.inventory_store.total_size()
189
189
#     print '  %8d inventories' % c
190
190
#     print '  %8d KiB' % (t/1024)
 
191
 
 
192
 
 
193
def _show_repository_info(repository):
 
194
    """Show settings of a repository."""
 
195
    if repository.make_working_trees():
 
196
        print
 
197
        print 'Create working tree for new branches inside the repository.'
 
198
 
 
199
 
 
200
def _show_repository_stats(repository):
 
201
    """Show statistics about a repository."""
 
202
    if repository.bzrdir.root_transport.listable():
 
203
        print
 
204
        print 'Revision store:'
 
205
        c, t = repository._revision_store.total_size(repository.get_transaction())
 
206
        print '  %8d revision%s' % (c, plural(c))
 
207
        print '  %8d KiB' % (t/1024)
 
208
 
 
209
 
 
210
@deprecated_function(zero_eight)
 
211
def show_info(b):
 
212
    """Please see show_bzrdir_info."""
 
213
    return show_bzrdir_info(b.bzrdir)
 
214
 
 
215
 
 
216
def show_bzrdir_info(a_bzrdir, verbose=False):
 
217
    """Output to stdout the 'info' for a_bzrdir."""
 
218
    try:
 
219
        working = a_bzrdir.open_workingtree()
 
220
        working.lock_read()
 
221
        try:
 
222
            show_tree_info(working, verbose)
 
223
        finally:
 
224
            working.unlock()
 
225
        return
 
226
    except (NoWorkingTree, NotLocalUrl):
 
227
        pass
 
228
 
 
229
    try:
 
230
        branch = a_bzrdir.open_branch()
 
231
        branch.lock_read()
 
232
        try:
 
233
            show_branch_info(branch, verbose)
 
234
        finally:
 
235
            branch.unlock()
 
236
        return
 
237
    except NotBranchError:
 
238
        pass
 
239
 
 
240
    try:
 
241
        repository = a_bzrdir.open_repository()
 
242
        repository.lock_read()
 
243
        try:
 
244
            show_repository_info(repository, verbose)
 
245
        finally:
 
246
            repository.unlock()
 
247
        return
 
248
    except NoRepositoryPresent:
 
249
        pass
 
250
 
 
251
    # Return silently, cmd_info returns NotBranchError if no bzrdir
 
252
    # could be opened.
 
253
 
 
254
 
 
255
def show_tree_info(working, verbose):
 
256
    """Output to stdout the 'info' for working."""
 
257
    branch = working.branch
 
258
    repository = branch.repository
 
259
    control = working.bzrdir
 
260
 
 
261
    _show_location_info(repository, branch, working)
 
262
    _show_format_info(control, repository, branch, working)
 
263
    _show_missing_revisions_branch(branch)
 
264
    _show_missing_revisions_working(working)
 
265
    _show_working_stats(working)
 
266
    _show_branch_stats(branch, verbose)
 
267
    _show_repository_stats(repository)
 
268
 
 
269
 
 
270
def show_branch_info(branch, verbose):
 
271
    """Output to stdout the 'info' for branch."""
 
272
    repository = branch.repository
 
273
    control = branch.bzrdir
 
274
 
 
275
    _show_location_info(repository, branch)
 
276
    _show_format_info(control, repository, branch)
 
277
    _show_missing_revisions_branch(branch)
 
278
    _show_branch_stats(branch, verbose)
 
279
    _show_repository_stats(repository)
 
280
 
 
281
 
 
282
def show_repository_info(repository, verbose):
 
283
    """Output to stdout the 'info' for branch."""
 
284
    control = repository.bzrdir
 
285
 
 
286
    _show_location_info(repository)
 
287
    _show_format_info(control, repository)
 
288
    _show_repository_info(repository)
 
289
    _show_repository_stats(repository)