482
498
def _calc_view_revisions(branch, start_rev_id, end_rev_id, direction,
483
generate_merge_revisions, allow_single_merge_revision,
484
delayed_graph_generation=False):
499
generate_merge_revisions,
500
delayed_graph_generation=False,
501
exclude_common_ancestry=False,
485
503
"""Calculate the revisions to view.
487
505
:return: An iterator of (revision_id, dotted_revno, merge_depth) tuples OR
488
506
a list of the same tuples.
508
if (exclude_common_ancestry and start_rev_id == end_rev_id):
509
raise errors.BzrCommandError(
510
'--exclude-common-ancestry requires two different revisions')
511
if direction not in ('reverse', 'forward'):
512
raise ValueError('invalid direction %r' % direction)
490
513
br_revno, br_rev_id = branch.last_revision_info()
491
514
if br_revno == 0:
494
# If a single revision is requested, check we can handle it
495
generate_single_revision = (end_rev_id and start_rev_id == end_rev_id and
496
(not generate_merge_revisions or not _has_merges(branch, end_rev_id)))
497
if generate_single_revision:
498
return _generate_one_revision(branch, end_rev_id, br_rev_id, br_revno,
499
allow_single_merge_revision)
501
# If we only want to see linear revisions, we can iterate ...
502
if not generate_merge_revisions:
503
return _generate_flat_revisions(branch, start_rev_id, end_rev_id,
517
if (end_rev_id and start_rev_id == end_rev_id
518
and (not generate_merge_revisions
519
or not _has_merges(branch, end_rev_id))):
520
# If a single revision is requested, check we can handle it
521
iter_revs = _generate_one_revision(branch, end_rev_id, br_rev_id,
523
elif not generate_merge_revisions:
524
# If we only want to see linear revisions, we can iterate ...
525
iter_revs = _generate_flat_revisions(branch, start_rev_id, end_rev_id,
526
direction, exclude_common_ancestry)
527
if direction == 'forward':
528
iter_revs = reversed(iter_revs)
506
return _generate_all_revisions(branch, start_rev_id, end_rev_id,
507
direction, delayed_graph_generation)
510
def _generate_one_revision(branch, rev_id, br_rev_id, br_revno,
511
allow_single_merge_revision):
530
iter_revs = _generate_all_revisions(branch, start_rev_id, end_rev_id,
531
direction, delayed_graph_generation,
532
exclude_common_ancestry)
533
if direction == 'forward':
534
iter_revs = _rebase_merge_depth(reverse_by_depth(list(iter_revs)))
538
def _generate_one_revision(branch, rev_id, br_rev_id, br_revno):
512
539
if rev_id == br_rev_id:
514
541
return [(br_rev_id, br_revno, 0)]
516
543
revno = branch.revision_id_to_dotted_revno(rev_id)
517
if len(revno) > 1 and not allow_single_merge_revision:
518
# It's a merge revision and the log formatter is
519
# completely brain dead. This "feature" of allowing
520
# log formatters incapable of displaying dotted revnos
521
# ought to be deprecated IMNSHO. IGC 20091022
522
raise errors.BzrCommandError('Selected log formatter only'
523
' supports mainline revisions.')
524
544
revno_str = '.'.join(str(n) for n in revno)
525
545
return [(rev_id, revno_str, 0)]
528
def _generate_flat_revisions(branch, start_rev_id, end_rev_id, direction):
529
result = _linear_view_revisions(branch, start_rev_id, end_rev_id)
548
def _generate_flat_revisions(branch, start_rev_id, end_rev_id, direction,
549
exclude_common_ancestry=False):
550
result = _linear_view_revisions(
551
branch, start_rev_id, end_rev_id,
552
exclude_common_ancestry=exclude_common_ancestry)
530
553
# If a start limit was given and it's not obviously an
531
554
# ancestor of the end limit, check it before outputting anything
532
555
if direction == 'forward' or (start_rev_id
536
559
except _StartNotLinearAncestor:
537
560
raise errors.BzrCommandError('Start revision not found in'
538
561
' left-hand history of end revision.')
539
if direction == 'forward':
540
result = reversed(result)
544
565
def _generate_all_revisions(branch, start_rev_id, end_rev_id, direction,
545
delayed_graph_generation):
566
delayed_graph_generation,
567
exclude_common_ancestry=False):
546
568
# On large trees, generating the merge graph can take 30-60 seconds
547
569
# so we delay doing it until a merge is detected, incrementally
548
570
# returning initial (non-merge) revisions while we can.
572
# The above is only true for old formats (<= 0.92), for newer formats, a
573
# couple of seconds only should be needed to load the whole graph and the
574
# other graph operations needed are even faster than that -- vila 100201
549
575
initial_revisions = []
550
576
if delayed_graph_generation:
552
for rev_id, revno, depth in \
553
_linear_view_revisions(branch, start_rev_id, end_rev_id):
578
for rev_id, revno, depth in _linear_view_revisions(
579
branch, start_rev_id, end_rev_id, exclude_common_ancestry):
554
580
if _has_merges(branch, rev_id):
581
# The end_rev_id can be nested down somewhere. We need an
582
# explicit ancestry check. There is an ambiguity here as we
583
# may not raise _StartNotLinearAncestor for a revision that
584
# is an ancestor but not a *linear* one. But since we have
585
# loaded the graph to do the check (or calculate a dotted
586
# revno), we may as well accept to show the log... We need
587
# the check only if start_rev_id is not None as all
588
# revisions have _mod_revision.NULL_REVISION as an ancestor
590
graph = branch.repository.get_graph()
591
if (start_rev_id is not None
592
and not graph.is_ancestor(start_rev_id, end_rev_id)):
593
raise _StartNotLinearAncestor()
594
# Since we collected the revisions so far, we need to
555
596
end_rev_id = rev_id
558
599
initial_revisions.append((rev_id, revno, depth))
560
601
# No merged revisions found
561
if direction == 'reverse':
562
return initial_revisions
563
elif direction == 'forward':
564
return reversed(initial_revisions)
566
raise ValueError('invalid direction %r' % direction)
602
return initial_revisions
567
603
except _StartNotLinearAncestor:
568
604
# A merge was never detected so the lower revision limit can't
569
605
# be nested down somewhere
570
606
raise errors.BzrCommandError('Start revision not found in'
571
607
' history of end revision.')
609
# We exit the loop above because we encounter a revision with merges, from
610
# this revision, we need to switch to _graph_view_revisions.
573
612
# A log including nested merges is required. If the direction is reverse,
574
613
# we rebase the initial merge depths so that the development line is
575
614
# shown naturally, i.e. just like it is for linear logging. We can easily
676
720
depth_adjustment = merge_depth
677
721
if depth_adjustment:
678
722
if merge_depth < depth_adjustment:
723
# From now on we reduce the depth adjustement, this can be
724
# surprising for users. The alternative requires two passes
725
# which breaks the fast display of the first revision
679
727
depth_adjustment = merge_depth
680
728
merge_depth -= depth_adjustment
681
729
yield rev_id, '.'.join(map(str, revno)), merge_depth
732
@deprecated_function(deprecated_in((2, 2, 0)))
684
733
def calculate_view_revisions(branch, start_revision, end_revision, direction,
685
specific_fileid, generate_merge_revisions, allow_single_merge_revision):
734
specific_fileid, generate_merge_revisions):
686
735
"""Calculate the revisions to view.
688
737
:return: An iterator of (revision_id, dotted_revno, merge_depth) tuples OR
689
738
a list of the same tuples.
691
# This method is no longer called by the main code path.
692
# It is retained for API compatibility and may be deprecated
694
740
start_rev_id, end_rev_id = _get_revision_limits(branch, start_revision,
696
742
view_revisions = list(_calc_view_revisions(branch, start_rev_id, end_rev_id,
697
direction, generate_merge_revisions or specific_fileid,
698
allow_single_merge_revision))
743
direction, generate_merge_revisions or specific_fileid))
699
744
if specific_fileid:
700
745
view_revisions = _filter_revisions_touching_file_id(branch,
701
746
specific_fileid, view_revisions,
1311
1347
preferred_levels = 0
1313
1349
def __init__(self, to_file, show_ids=False, show_timezone='original',
1314
delta_format=None, levels=None):
1350
delta_format=None, levels=None, show_advice=False,
1351
to_exact_file=None, author_list_handler=None):
1315
1352
"""Create a LogFormatter.
1317
1354
:param to_file: the file to output to
1355
:param to_exact_file: if set, gives an output stream to which
1356
non-Unicode diffs are written.
1318
1357
:param show_ids: if True, revision-ids are to be displayed
1319
1358
:param show_timezone: the timezone to use
1320
1359
:param delta_format: the level of delta information to display
1321
or None to leave it u to the formatter to decide
1360
or None to leave it to the formatter to decide
1322
1361
:param levels: the number of levels to display; None or -1 to
1323
1362
let the log formatter decide.
1363
:param show_advice: whether to show advice at the end of the
1365
:param author_list_handler: callable generating a list of
1366
authors to display for a given revision
1325
1368
self.to_file = to_file
1326
1369
# 'exact' stream used to show diff, it should print content 'as is'
1327
1370
# and should not try to decode/encode it to unicode to avoid bug #328007
1328
self.to_exact_file = getattr(to_file, 'stream', to_file)
1371
if to_exact_file is not None:
1372
self.to_exact_file = to_exact_file
1374
# XXX: somewhat hacky; this assumes it's a codec writer; it's better
1375
# for code that expects to get diffs to pass in the exact file
1377
self.to_exact_file = getattr(to_file, 'stream', to_file)
1329
1378
self.show_ids = show_ids
1330
1379
self.show_timezone = show_timezone
1331
1380
if delta_format is None:
1359
1424
def short_author(self, rev):
1360
name, address = config.parse_username(rev.get_apparent_authors()[0])
1425
return self.authors(rev, 'first', short=True, sep=', ')
1427
def authors(self, rev, who, short=False, sep=None):
1428
"""Generate list of authors, taking --authors option into account.
1430
The caller has to specify the name of a author list handler,
1431
as provided by the author list registry, using the ``who``
1432
argument. That name only sets a default, though: when the
1433
user selected a different author list generation using the
1434
``--authors`` command line switch, as represented by the
1435
``author_list_handler`` constructor argument, that value takes
1438
:param rev: The revision for which to generate the list of authors.
1439
:param who: Name of the default handler.
1440
:param short: Whether to shorten names to either name or address.
1441
:param sep: What separator to use for automatic concatenation.
1443
if self._author_list_handler is not None:
1444
# The user did specify --authors, which overrides the default
1445
author_list_handler = self._author_list_handler
1447
# The user didn't specify --authors, so we use the caller's default
1448
author_list_handler = author_list_registry.get(who)
1449
names = author_list_handler(rev)
1451
for i in range(len(names)):
1452
name, address = config.parse_username(names[i])
1458
names = sep.join(names)
1461
def merge_marker(self, revision):
1462
"""Get the merge marker to include in the output or '' if none."""
1463
if len(revision.rev.parent_ids) > 1:
1464
self._merge_count += 1
1365
1469
def show_properties(self, revision, indent):
1366
1470
"""Displays the custom properties returned by each registered handler.
1368
1472
If a registered handler raises an error it is propagated.
1474
for line in self.custom_properties(revision):
1475
self.to_file.write("%s%s\n" % (indent, line))
1477
def custom_properties(self, revision):
1478
"""Format the custom properties returned by each registered handler.
1480
If a registered handler raises an error it is propagated.
1482
:return: a list of formatted lines (excluding trailing newlines)
1484
lines = self._foreign_info_properties(revision)
1370
1485
for key, handler in properties_handler_registry.iteritems():
1371
for key, value in handler(revision).items():
1372
self.to_file.write(indent + key + ': ' + value + '\n')
1486
lines.extend(self._format_properties(handler(revision)))
1489
def _foreign_info_properties(self, rev):
1490
"""Custom log displayer for foreign revision identifiers.
1492
:param rev: Revision object.
1494
# Revision comes directly from a foreign repository
1495
if isinstance(rev, foreign.ForeignRevision):
1496
return self._format_properties(
1497
rev.mapping.vcs.show_foreign_revid(rev.foreign_revid))
1499
# Imported foreign revision revision ids always contain :
1500
if not ":" in rev.revision_id:
1503
# Revision was once imported from a foreign repository
1505
foreign_revid, mapping = \
1506
foreign.foreign_vcs_registry.parse_revision_id(rev.revision_id)
1507
except errors.InvalidRevisionId:
1510
return self._format_properties(
1511
mapping.vcs.show_foreign_revid(foreign_revid))
1513
def _format_properties(self, properties):
1515
for key, value in properties.items():
1516
lines.append(key + ': ' + value)
1374
1519
def show_diff(self, to_file, diff, indent):
1375
1520
for l in diff.rstrip().split('\n'):
1376
1521
to_file.write(indent + '%s\n' % (l,))
1524
# Separator between revisions in long format
1525
_LONG_SEP = '-' * 60
1379
1528
class LongLogFormatter(LogFormatter):
1381
1530
supports_merge_revisions = True
1531
preferred_levels = 1
1382
1532
supports_delta = True
1383
1533
supports_tags = True
1384
1534
supports_diff = True
1536
def __init__(self, *args, **kwargs):
1537
super(LongLogFormatter, self).__init__(*args, **kwargs)
1538
if self.show_timezone == 'original':
1539
self.date_string = self._date_string_original_timezone
1541
self.date_string = self._date_string_with_timezone
1543
def _date_string_with_timezone(self, rev):
1544
return format_date(rev.timestamp, rev.timezone or 0,
1547
def _date_string_original_timezone(self, rev):
1548
return format_date_with_offset_in_original_timezone(rev.timestamp,
1386
1551
def log_revision(self, revision):
1387
1552
"""Log a revision, either merged or not."""
1388
1553
indent = ' ' * revision.merge_depth
1389
to_file = self.to_file
1390
to_file.write(indent + '-' * 60 + '\n')
1391
1555
if revision.revno is not None:
1392
to_file.write(indent + 'revno: %s\n' % (revision.revno,))
1556
lines.append('revno: %s%s' % (revision.revno,
1557
self.merge_marker(revision)))
1393
1558
if revision.tags:
1394
to_file.write(indent + 'tags: %s\n' % (', '.join(revision.tags)))
1559
lines.append('tags: %s' % (', '.join(revision.tags)))
1395
1560
if self.show_ids:
1396
to_file.write(indent + 'revision-id: ' + revision.rev.revision_id)
1561
lines.append('revision-id: %s' % (revision.rev.revision_id,))
1398
1562
for parent_id in revision.rev.parent_ids:
1399
to_file.write(indent + 'parent: %s\n' % (parent_id,))
1400
self.show_properties(revision.rev, indent)
1563
lines.append('parent: %s' % (parent_id,))
1564
lines.extend(self.custom_properties(revision.rev))
1402
1566
committer = revision.rev.committer
1403
authors = revision.rev.get_apparent_authors()
1567
authors = self.authors(revision.rev, 'all')
1404
1568
if authors != [committer]:
1405
to_file.write(indent + 'author: %s\n' % (", ".join(authors),))
1406
to_file.write(indent + 'committer: %s\n' % (committer,))
1569
lines.append('author: %s' % (", ".join(authors),))
1570
lines.append('committer: %s' % (committer,))
1408
1572
branch_nick = revision.rev.properties.get('branch-nick', None)
1409
1573
if branch_nick is not None:
1410
to_file.write(indent + 'branch nick: %s\n' % (branch_nick,))
1412
date_str = format_date(revision.rev.timestamp,
1413
revision.rev.timezone or 0,
1415
to_file.write(indent + 'timestamp: %s\n' % (date_str,))
1417
to_file.write(indent + 'message:\n')
1574
lines.append('branch nick: %s' % (branch_nick,))
1576
lines.append('timestamp: %s' % (self.date_string(revision.rev),))
1578
lines.append('message:')
1418
1579
if not revision.rev.message:
1419
to_file.write(indent + ' (no message)\n')
1580
lines.append(' (no message)')
1421
1582
message = revision.rev.message.rstrip('\r\n')
1422
1583
for l in message.split('\n'):
1423
to_file.write(indent + ' %s\n' % (l,))
1584
lines.append(' %s' % (l,))
1586
# Dump the output, appending the delta and diff if requested
1587
to_file = self.to_file
1588
to_file.write("%s%s\n" % (indent, ('\n' + indent).join(lines)))
1424
1589
if revision.delta is not None:
1425
# We don't respect delta_format for compatibility
1426
revision.delta.show(to_file, self.show_ids, indent=indent,
1590
# Use the standard status output to display changes
1591
from bzrlib.delta import report_delta
1592
report_delta(to_file, revision.delta, short_status=False,
1593
show_ids=self.show_ids, indent=indent)
1428
1594
if revision.diff is not None:
1429
1595
to_file.write(indent + 'diff:\n')
1430
1597
# Note: we explicitly don't indent the diff (relative to the
1431
1598
# revision information) so that the output can be fed to patch -p0
1432
1599
self.show_diff(self.to_exact_file, revision.diff, indent)
1600
self.to_exact_file.flush()
1602
def get_advice_separator(self):
1603
"""Get the text separating the log from the closing advice."""
1604
return '-' * 60 + '\n'
1435
1607
class ShortLogFormatter(LogFormatter):