18
18
# perhaps show them in log -v and allow them as options to the commit command.
25
from bzrlib.deprecated_graph import (
21
import bzrlib.errors as errors
22
from bzrlib.graph import node_distances, select_farthest, all_descendants, Graph
31
23
from bzrlib.osutils import contains_whitespace
32
24
from bzrlib.progress import DummyProgress
33
25
from bzrlib.symbol_versioning import (deprecated_function,
36
29
NULL_REVISION="null:"
114
107
def get_summary(self):
115
108
"""Get the first line of the log message for this revision.
117
return self.message.lstrip().split('\n', 1)[0]
119
def get_apparent_author(self):
120
"""Return the apparent author of this revision.
122
If the revision properties contain the author name,
123
return it. Otherwise return the committer name.
125
return self.properties.get('author', self.committer)
128
@deprecated_function(symbol_versioning.one_zero)
110
return self.message.split('\n', 1)[0]
129
113
def is_ancestor(revision_id, candidate_id, branch):
130
114
"""Return true if candidate_id is an ancestor of revision_id.
135
119
revisions_source is an object supporting a get_revision operation that
136
120
behaves like Branch's.
138
This function is deprecated, it is better for callers to directly use
139
Graph.is_ancestor() (just watch out that the parameter order is switched)
141
return branch.repository.get_graph().is_ancestor(candidate_id, revision_id)
122
return (candidate_id in branch.repository.get_ancestry(revision_id))
144
125
def iter_ancestors(revision_id, revision_source, only_present=False):
272
253
[revision_a, revision_b])
273
254
# Shortcut the case where one of the tips is already included in
274
255
# the other graphs ancestry.
275
ancestry_a = graph.get_ancestry(revision_a, topo_sorted=False)
256
ancestry_a = graph.get_ancestry(revision_a)
276
257
if revision_b in ancestry_a:
277
258
return revision_b
278
ancestry_b = graph.get_ancestry(revision_b, topo_sorted=False)
259
ancestry_b = graph.get_ancestry(revision_b)
279
260
if revision_a in ancestry_b:
280
261
return revision_a
281
262
# convert to a NULL_REVISION based graph.
422
@deprecated_function(zero_eight)
423
def get_intervening_revisions(ancestor_id, rev_id, rev_source,
424
revision_history=None):
425
"""Find the longest line of descent from maybe_ancestor to revision.
426
Revision history is followed where possible.
428
If ancestor_id == rev_id, list will be empty.
429
Otherwise, rev_id will be the last entry. ancestor_id will never appear.
430
If ancestor_id is not an ancestor, NotAncestor will be thrown
432
root, ancestors, descendants = revision_graph(rev_id, rev_source)
433
if len(descendants) == 0:
434
raise errors.NoSuchRevision(rev_source, rev_id)
435
if ancestor_id not in descendants:
436
rev_source.get_revision(ancestor_id)
437
raise errors.NotAncestor(rev_id, ancestor_id)
438
root_descendants = all_descendants(descendants, ancestor_id)
439
root_descendants.add(ancestor_id)
440
if rev_id not in root_descendants:
441
raise errors.NotAncestor(rev_id, ancestor_id)
442
distances = node_distances(descendants, ancestors, ancestor_id,
443
root_descendants=root_descendants)
445
def best_ancestor(rev_id):
447
for anc_id in ancestors[rev_id]:
449
distance = distances[anc_id]
452
if revision_history is not None and anc_id in revision_history:
454
elif best is None or distance > best[1]:
455
best = (anc_id, distance)
460
while next != ancestor_id:
462
next = best_ancestor(next)
441
467
def is_reserved_id(revision_id):
442
468
"""Determine whether a revision id is reserved
450
476
"""Raise ReservedId if the supplied revision_id is reserved"""
451
477
if is_reserved_id(revision_id):
452
478
raise errors.ReservedId(revision_id)
455
def ensure_null(revision_id):
456
"""Ensure only NULL_REVISION is used to represent the null revision"""
457
if revision_id is None:
458
symbol_versioning.warn('NULL_REVISION should be used for the null'
459
' revision instead of None, as of bzr 0.91.',
460
DeprecationWarning, stacklevel=2)
466
def is_null(revision_id):
467
if revision_id is None:
468
symbol_versioning.warn('NULL_REVISION should be used for the null'
469
' revision instead of None, as of bzr 0.90.',
470
DeprecationWarning, stacklevel=2)
471
return revision_id in (None, NULL_REVISION)