~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Andrew Bennetts
  • Date: 2009-07-27 05:35:00 UTC
  • mfrom: (4570 +trunk)
  • mto: (4634.6.29 2.0)
  • mto: This revision was merged to the branch mainline in revision 4680.
  • Revision ID: andrew.bennetts@canonical.com-20090727053500-q76zsn2dx33jhmj5
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
__all__ = ['show_bzrdir_info']
18
18
 
 
19
from cStringIO import StringIO
19
20
import os
20
21
import time
21
22
import sys
24
25
    bzrdir,
25
26
    diff,
26
27
    errors,
 
28
    hooks as _mod_hooks,
27
29
    osutils,
28
30
    urlutils,
29
31
    )
299
301
            'the repository.\n')
300
302
 
301
303
 
302
 
def _show_repository_stats(stats, outfile):
 
304
def _show_repository_stats(repository, stats, outfile):
303
305
    """Show statistics about a repository."""
304
 
    if 'revisions' in stats or 'size' in stats:
305
 
        outfile.write('\n')
306
 
        outfile.write('Repository:\n')
 
306
    f = StringIO()
307
307
    if 'revisions' in stats:
308
308
        revisions = stats['revisions']
309
 
        outfile.write('  %8d revision%s\n' % (revisions, plural(revisions)))
 
309
        f.write('  %8d revision%s\n' % (revisions, plural(revisions)))
310
310
    if 'size' in stats:
311
 
        outfile.write('  %8d KiB\n' % (stats['size']/1024))
 
311
        f.write('  %8d KiB\n' % (stats['size']/1024))
 
312
    for hook in hooks['repository']:
 
313
        hook(repository, stats, f)
 
314
    if f.getvalue() != "":
 
315
        outfile.write('\n')
 
316
        outfile.write('Repository:\n')
 
317
        outfile.write(f.getvalue())
312
318
 
313
319
 
314
320
def show_bzrdir_info(a_bzrdir, verbose=False, outfile=None):
382
388
        stats = repository.gather_stats()
383
389
    if branch is None and working is None:
384
390
        _show_repository_info(repository, outfile)
385
 
    _show_repository_stats(stats, outfile)
 
391
    _show_repository_stats(repository, stats, outfile)
386
392
 
387
393
 
388
394
def describe_layout(repository=None, branch=None, tree=None):
472
478
        # do.
473
479
        candidates = new_candidates
474
480
    return ' or '.join(candidates)
 
481
 
 
482
 
 
483
class InfoHooks(_mod_hooks.Hooks):
 
484
    """Hooks for the info command."""
 
485
 
 
486
    def __init__(self):
 
487
        self.create_hook(_mod_hooks.HookPoint('repository',
 
488
            "Invoked when displaying the statistics for a repository. "
 
489
            "repository is called with a statistics dictionary as returned "
 
490
            "by the repository and a file-like object to write to.", (1, 15), 
 
491
            None))
 
492
 
 
493
 
 
494
hooks = InfoHooks()