~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-24 00:13:07 UTC
  • Revision ID: mbp@sourcefrog.net-20050324001307-90a30f7939a6a6f6
- split info command out into separate file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/python
2
 
 
3
 
 
4
1
# Copyright (C) 2004, 2005 by Martin Pool
5
2
# Copyright (C) 2005 by Canonical Ltd
6
3
 
212
209
 
213
210
 
214
211
def cmd_info():
215
 
    b = Branch('.')
216
 
    print 'branch format:', b.controlfile('branch-format', 'r').readline().rstrip('\n')
217
 
 
218
 
    def plural(n, base='', pl=None):
219
 
        if n == 1:
220
 
            return base
221
 
        elif pl is not None:
222
 
            return pl
223
 
        else:
224
 
            return 's'
225
 
 
226
 
    count_version_dirs = 0
227
 
 
228
 
    count_status = {'A': 0, 'D': 0, 'M': 0, 'R': 0, '?': 0, 'I': 0, '.': 0}
229
 
    for st_tup in bzrlib.diff_trees(b.basis_tree(), b.working_tree()):
230
 
        fs = st_tup[0]
231
 
        count_status[fs] += 1
232
 
        if fs not in ['I', '?'] and st_tup[4] == 'directory':
233
 
            count_version_dirs += 1
234
 
 
235
 
    print
236
 
    print 'in the working tree:'
237
 
    for name, fs in (('unchanged', '.'),
238
 
                     ('modified', 'M'), ('added', 'A'), ('removed', 'D'),
239
 
                     ('renamed', 'R'), ('unknown', '?'), ('ignored', 'I'),
240
 
                     ):
241
 
        print '  %5d %s' % (count_status[fs], name)
242
 
    print '  %5d versioned subdirector%s' % (count_version_dirs,
243
 
                                             plural(count_version_dirs, 'y', 'ies'))
244
 
 
245
 
    print
246
 
    print 'branch history:'
247
 
    history = b.revision_history()
248
 
    revno = len(history)
249
 
    print '  %5d revision%s' % (revno, plural(revno))
250
 
    committers = Set()
251
 
    for rev in history:
252
 
        committers.add(b.get_revision(rev).committer)
253
 
    print '  %5d committer%s' % (len(committers), plural(len(committers)))
254
 
    if revno > 0:
255
 
        firstrev = b.get_revision(history[0])
256
 
        age = int((time.time() - firstrev.timestamp) / 3600 / 24)
257
 
        print '  %5d day%s old' % (age, plural(age))
258
 
        print '  first revision: %s' % format_date(firstrev.timestamp,
259
 
                                                 firstrev.timezone)
260
 
 
261
 
        lastrev = b.get_revision(history[-1])
262
 
        print '  latest revision: %s' % format_date(lastrev.timestamp,
263
 
                                                    lastrev.timezone)
264
 
        
 
212
    import info
 
213
    info.show_info(Branch('.'))        
265
214
    
266
215
 
267
216