~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Robert Collins
  • Date: 2005-10-11 08:31:29 UTC
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051011083129-fa720bc6cd6c039f
inline and simplify branch.find_branch_root, it should just try to create a branch at each step, which is simpler than probing for a specific dir and has less round trips.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
"""
51
51
 
52
52
 
 
53
import bzrlib.errors as errors
53
54
from bzrlib.tree import EmptyTree
54
55
from bzrlib.delta import compare_trees
55
56
from bzrlib.trace import mutter
109
110
    return rh
110
111
 
111
112
 
 
113
def _get_revision_delta(branch, revno):
 
114
    """Return the delta for a mainline revision.
 
115
    
 
116
    This is used to show summaries in verbose logs, and also for finding 
 
117
    revisions which touch a given file."""
 
118
    # XXX: What are we supposed to do when showing a summary for something 
 
119
    # other than a mainline revision.  The delta to it's first parent, or
 
120
    # (more useful) the delta to a nominated other revision.
 
121
    return branch.get_revision_delta(revno)
 
122
 
 
123
 
112
124
def show_log(branch,
113
125
             lf,
114
126
             specific_fileid=None,
139
151
    end_revision
140
152
        If not None, only show revisions <= end_revision
141
153
    """
 
154
    branch.lock_read()
 
155
    try:
 
156
        _show_log(branch, lf, specific_fileid, verbose, direction,
 
157
                  start_revision, end_revision, search)
 
158
    finally:
 
159
        branch.unlock()
 
160
    
 
161
def _show_log(branch,
 
162
             lf,
 
163
             specific_fileid=None,
 
164
             verbose=False,
 
165
             direction='reverse',
 
166
             start_revision=None,
 
167
             end_revision=None,
 
168
             search=None):
 
169
    """Worker function for show_log - see show_log."""
142
170
    from bzrlib.osutils import format_date
143
171
    from bzrlib.errors import BzrCheckError
144
172
    from bzrlib.textui import show_status
179
207
    else:
180
208
        raise ValueError('invalid direction %r' % direction)
181
209
 
 
210
    revision_history = branch.revision_history()
182
211
    for revno, rev_id in cut_revs:
183
212
        if verbose or specific_fileid:
184
 
            delta = branch.get_revision_delta(revno)
 
213
            delta = _get_revision_delta(branch, revno)
185
214
            
186
215
        if specific_fileid:
187
216
            if not delta.touches_file_id(specific_fileid):
198
227
                continue
199
228
 
200
229
        lf.show(revno, rev, delta)
201
 
 
 
230
        if revno == 1:
 
231
            excludes = set()
 
232
        else:
 
233
            # revno is 1 based, so -2 to get back 1 less.
 
234
            excludes = set(branch.get_ancestry(revision_history[revno - 2]))
 
235
        pending = list(rev.parent_ids)
 
236
        while pending:
 
237
            rev_id = pending.pop()
 
238
            if rev_id in excludes:
 
239
                continue
 
240
            # prevent showing merged revs twice if they multi-path.
 
241
            excludes.add(rev_id)
 
242
            try:
 
243
                rev = branch.get_revision(rev_id)
 
244
            except errors.NoSuchRevision:
 
245
                continue
 
246
            pending.extend(rev.parent_ids)
 
247
            lf.show_merge(rev)
202
248
 
203
249
 
204
250
def deltas_for_log_dummy(branch, which_revs):
293
339
 
294
340
    def show(self, revno, rev, delta):
295
341
        raise NotImplementedError('not implemented in abstract base')
296
 
        
297
 
 
298
 
 
299
 
 
300
 
 
301
 
 
 
342
 
 
343
    def show_merge(self, rev):
 
344
        pass
 
345
 
 
346
    
302
347
class LongLogFormatter(LogFormatter):
303
348
    def show(self, revno, rev, delta):
304
349
        from osutils import format_date
310
355
        if self.show_ids:
311
356
            print >>to_file,  'revision-id:', rev.revision_id
312
357
 
313
 
            for parent in rev.parents:
314
 
                print >>to_file, 'parent:', parent.revision_id
 
358
            for parent_id in rev.parent_ids:
 
359
                print >>to_file, 'parent:', parent_id
315
360
            
316
361
        print >>to_file,  'committer:', rev.committer
317
362
 
330
375
        if delta != None:
331
376
            delta.show(to_file, self.show_ids)
332
377
 
 
378
    def show_merge(self, rev):
 
379
        from osutils import format_date
 
380
 
 
381
        to_file = self.to_file
 
382
 
 
383
        indent = '    '
 
384
 
 
385
        print >>to_file,  indent+'-' * 60
 
386
        print >>to_file,  indent+'merged:', rev.revision_id
 
387
        if self.show_ids:
 
388
            for parent_id in rev.parent_ids:
 
389
                print >>to_file, indent+'parent:', parent_id
 
390
            
 
391
        print >>to_file,  indent+'committer:', rev.committer
 
392
 
 
393
        date_str = format_date(rev.timestamp,
 
394
                               rev.timezone or 0,
 
395
                               self.show_timezone)
 
396
        print >>to_file,  indent+'timestamp: %s' % date_str
 
397
 
 
398
        print >>to_file,  indent+'message:'
 
399
        if not rev.message:
 
400
            print >>to_file,  indent+'  (no message)'
 
401
        else:
 
402
            for l in rev.message.split('\n'):
 
403
                print >>to_file,  indent+'  ' + l
333
404
 
334
405
 
335
406
class ShortLogFormatter(LogFormatter):
363
434
 
364
435
 
365
436
def log_formatter(name, *args, **kwargs):
 
437
    """Construct a formatter from arguments.
 
438
 
 
439
    name -- Name of the formatter to construct; currently 'long' and
 
440
        'short' are supported.
 
441
    """
366
442
    from bzrlib.errors import BzrCommandError
367
 
    
368
443
    try:
369
444
        return FORMATTERS[name](*args, **kwargs)
370
445
    except IndexError: