~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Aaron Bentley
  • Date: 2005-10-03 16:53:39 UTC
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: abentley@panoramicfeedback.com-20051003165339-9ee4d484477fd164
Ignored user-installed plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
"""
51
51
 
52
52
 
53
 
import bzrlib.errors as errors
54
53
from bzrlib.tree import EmptyTree
55
54
from bzrlib.delta import compare_trees
56
55
from bzrlib.trace import mutter
57
 
import re
58
56
 
59
57
 
60
58
def find_touching_revisions(branch, file_id):
111
109
    return rh
112
110
 
113
111
 
114
 
def _get_revision_delta(branch, revno):
115
 
    """Return the delta for a mainline revision.
116
 
    
117
 
    This is used to show summaries in verbose logs, and also for finding 
118
 
    revisions which touch a given file."""
119
 
    # XXX: What are we supposed to do when showing a summary for something 
120
 
    # other than a mainline revision.  The delta to it's first parent, or
121
 
    # (more useful) the delta to a nominated other revision.
122
 
    return branch.get_revision_delta(revno)
123
 
 
124
 
 
125
112
def show_log(branch,
126
113
             lf,
127
114
             specific_fileid=None,
152
139
    end_revision
153
140
        If not None, only show revisions <= end_revision
154
141
    """
155
 
    branch.lock_read()
156
 
    try:
157
 
        _show_log(branch, lf, specific_fileid, verbose, direction,
158
 
                  start_revision, end_revision, search)
159
 
    finally:
160
 
        branch.unlock()
161
 
    
162
 
def _show_log(branch,
163
 
             lf,
164
 
             specific_fileid=None,
165
 
             verbose=False,
166
 
             direction='reverse',
167
 
             start_revision=None,
168
 
             end_revision=None,
169
 
             search=None):
170
 
    """Worker function for show_log - see show_log."""
171
142
    from bzrlib.osutils import format_date
172
143
    from bzrlib.errors import BzrCheckError
173
144
    from bzrlib.textui import show_status
208
179
    else:
209
180
        raise ValueError('invalid direction %r' % direction)
210
181
 
211
 
    revision_history = branch.revision_history()
212
182
    for revno, rev_id in cut_revs:
213
183
        if verbose or specific_fileid:
214
 
            delta = _get_revision_delta(branch, revno)
 
184
            delta = branch.get_revision_delta(revno)
215
185
            
216
186
        if specific_fileid:
217
187
            if not delta.touches_file_id(specific_fileid):
228
198
                continue
229
199
 
230
200
        lf.show(revno, rev, delta)
231
 
        if hasattr(lf, 'show_merge'):
232
 
            if revno == 1:
233
 
                excludes = set()
234
 
            else:
235
 
                # revno is 1 based, so -2 to get back 1 less.
236
 
                excludes = set(branch.get_ancestry(revision_history[revno - 2]))
237
 
            pending = list(rev.parent_ids)
238
 
            while pending:
239
 
                rev_id = pending.pop()
240
 
                if rev_id in excludes:
241
 
                    continue
242
 
                # prevent showing merged revs twice if they multi-path.
243
 
                excludes.add(rev_id)
244
 
                try:
245
 
                    rev = branch.get_revision(rev_id)
246
 
                except errors.NoSuchRevision:
247
 
                    continue
248
 
                pending.extend(rev.parent_ids)
249
 
                lf.show_merge(rev)
 
201
 
250
202
 
251
203
 
252
204
def deltas_for_log_dummy(branch, which_revs):
341
293
 
342
294
    def show(self, revno, rev, delta):
343
295
        raise NotImplementedError('not implemented in abstract base')
344
 
 
345
 
    
 
296
        
 
297
 
 
298
 
 
299
 
 
300
 
 
301
 
346
302
class LongLogFormatter(LogFormatter):
347
303
    def show(self, revno, rev, delta):
348
304
        from osutils import format_date
374
330
        if delta != None:
375
331
            delta.show(to_file, self.show_ids)
376
332
 
377
 
    def show_merge(self, rev):
378
 
        from osutils import format_date
379
 
 
380
 
        to_file = self.to_file
381
 
 
382
 
        indent = '    '
383
 
 
384
 
        print >>to_file,  indent+'-' * 60
385
 
        print >>to_file,  indent+'merged:', rev.revision_id
386
 
        if self.show_ids:
387
 
            for parent_id in rev.parent_ids:
388
 
                print >>to_file, indent+'parent:', parent_id
389
 
            
390
 
        print >>to_file,  indent+'committer:', rev.committer
391
 
 
392
 
        date_str = format_date(rev.timestamp,
393
 
                               rev.timezone or 0,
394
 
                               self.show_timezone)
395
 
        print >>to_file,  indent+'timestamp: %s' % date_str
396
 
 
397
 
        print >>to_file,  indent+'message:'
398
 
        if not rev.message:
399
 
            print >>to_file,  indent+'  (no message)'
400
 
        else:
401
 
            for l in rev.message.split('\n'):
402
 
                print >>to_file,  indent+'  ' + l
403
333
 
404
334
 
405
335
class ShortLogFormatter(LogFormatter):
407
337
        from bzrlib.osutils import format_date
408
338
 
409
339
        to_file = self.to_file
410
 
        date_str = format_date(rev.timestamp, rev.timezone or 0,
411
 
                            self.show_timezone)
 
340
 
412
341
        print >>to_file, "%5d %s\t%s" % (revno, rev.committer,
413
342
                format_date(rev.timestamp, rev.timezone or 0,
414
343
                            self.show_timezone))
426
355
            delta.show(to_file, self.show_ids)
427
356
        print
428
357
 
429
 
class LineLogFormatter(LogFormatter):
430
 
    def truncate(self, str, max_len):
431
 
        if len(str) <= max_len:
432
 
            return str
433
 
        return str[:max_len-3]+'...'
434
 
 
435
 
    def date_string(self, rev):
436
 
        from bzrlib.osutils import format_date
437
 
        return format_date(rev.timestamp, rev.timezone or 0, 
438
 
                           self.show_timezone, date_fmt="%Y-%m-%d",
439
 
                           show_offset=False)
440
 
 
441
 
    def message(self, rev):
442
 
        if not rev.message:
443
 
            return '(no message)'
444
 
        else:
445
 
            return rev.message
446
 
 
447
 
    def short_committer(self, rev):
448
 
        return re.sub('<.*@.*>', '', rev.committer).strip(' ')
449
 
    
450
 
    def show(self, revno, rev, delta):
451
 
        print >> self.to_file, self.log_string(rev, 79) 
452
 
 
453
 
    def log_string(self, rev, max_chars):
454
 
        out = [self.truncate(self.short_committer(rev), 20)]
455
 
        out.append(self.date_string(rev))
456
 
        out.append(self.message(rev).replace('\n', ' '))
457
 
        return self.truncate(" ".join(out).rstrip('\n'), max_chars)
458
 
 
459
 
def line_log(rev, max_chars):
460
 
    lf = LineLogFormatter(None)
461
 
    return lf.log_string(rev, max_chars)
 
358
 
462
359
 
463
360
FORMATTERS = {'long': LongLogFormatter,
464
361
              'short': ShortLogFormatter,
465
 
              'line': LineLogFormatter,
466
362
              }
467
363
 
468
364
 
469
365
def log_formatter(name, *args, **kwargs):
470
 
    """Construct a formatter from arguments.
471
 
 
472
 
    name -- Name of the formatter to construct; currently 'long', 'short' and
473
 
        'line' are supported.
474
 
    """
475
366
    from bzrlib.errors import BzrCommandError
 
367
    
476
368
    try:
477
369
        return FORMATTERS[name](*args, **kwargs)
478
370
    except IndexError: