~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
__all__ = ['show_bzrdir_info']
18
18
 
19
 
import os
 
19
from cStringIO import StringIO
20
20
import time
21
21
import sys
22
22
 
23
23
from bzrlib import (
24
24
    bzrdir,
25
 
    diff,
26
25
    errors,
 
26
    hooks as _mod_hooks,
27
27
    osutils,
28
28
    urlutils,
29
29
    )
78
78
 
79
79
def gather_location_info(repository, branch=None, working=None):
80
80
    locs = {}
81
 
    repository_path = repository.bzrdir.root_transport.base
 
81
    repository_path = repository.user_url
82
82
    if branch is not None:
83
 
        branch_path = branch.bzrdir.root_transport.base
 
83
        branch_path = branch.user_url
84
84
        master_path = branch.get_bound_location()
85
85
        if master_path is None:
86
86
            master_path = branch_path
88
88
        branch_path = None
89
89
        master_path = None
90
90
    if working:
91
 
        working_path = working.bzrdir.root_transport.base
 
91
        working_path = working.user_url
92
92
        if working_path != branch_path:
93
93
            locs['light checkout root'] = working_path
94
94
        if master_path != branch_path:
299
299
            'the repository.\n')
300
300
 
301
301
 
302
 
def _show_repository_stats(stats, outfile):
 
302
def _show_repository_stats(repository, stats, outfile):
303
303
    """Show statistics about a repository."""
304
 
    if 'revisions' in stats or 'size' in stats:
305
 
        outfile.write('\n')
306
 
        outfile.write('Repository:\n')
 
304
    f = StringIO()
307
305
    if 'revisions' in stats:
308
306
        revisions = stats['revisions']
309
 
        outfile.write('  %8d revision%s\n' % (revisions, plural(revisions)))
 
307
        f.write('  %8d revision%s\n' % (revisions, plural(revisions)))
310
308
    if 'size' in stats:
311
 
        outfile.write('  %8d KiB\n' % (stats['size']/1024))
 
309
        f.write('  %8d KiB\n' % (stats['size']/1024))
 
310
    for hook in hooks['repository']:
 
311
        hook(repository, stats, f)
 
312
    if f.getvalue() != "":
 
313
        outfile.write('\n')
 
314
        outfile.write('Repository:\n')
 
315
        outfile.write(f.getvalue())
312
316
 
313
317
 
314
318
def show_bzrdir_info(a_bzrdir, verbose=False, outfile=None):
382
386
        stats = repository.gather_stats()
383
387
    if branch is None and working is None:
384
388
        _show_repository_info(repository, outfile)
385
 
    _show_repository_stats(stats, outfile)
 
389
    _show_repository_stats(repository, stats, outfile)
386
390
 
387
391
 
388
392
def describe_layout(repository=None, branch=None, tree=None):
414
418
        if branch is None and tree is not None:
415
419
            phrase = "branchless tree"
416
420
        else:
417
 
            if (tree is not None and tree.bzrdir.root_transport.base !=
418
 
                branch.bzrdir.root_transport.base):
 
421
            if (tree is not None and tree.user_url !=
 
422
                branch.user_url):
419
423
                independence = ''
420
424
                phrase = "Lightweight checkout"
421
425
            elif branch.get_bound_location() is not None:
440
444
    """
441
445
    candidates  = []
442
446
    if (branch is not None and tree is not None and
443
 
        branch.bzrdir.root_transport.base !=
444
 
        tree.bzrdir.root_transport.base):
 
447
        branch.user_url != tree.user_url):
445
448
        branch = None
446
449
        repository = None
447
450
    non_aliases = set(bzrdir.format_registry.keys())
472
475
        # do.
473
476
        candidates = new_candidates
474
477
    return ' or '.join(candidates)
 
478
 
 
479
 
 
480
class InfoHooks(_mod_hooks.Hooks):
 
481
    """Hooks for the info command."""
 
482
 
 
483
    def __init__(self):
 
484
        super(InfoHooks, self).__init__()
 
485
        self.create_hook(_mod_hooks.HookPoint('repository',
 
486
            "Invoked when displaying the statistics for a repository. "
 
487
            "repository is called with a statistics dictionary as returned "
 
488
            "by the repository and a file-like object to write to.", (1, 15), 
 
489
            None))
 
490
 
 
491
 
 
492
hooks = InfoHooks()