200
252
def find_difference(self, left_revision, right_revision):
201
253
"""Determine the graph difference between two revisions"""
202
border, common, (left, right) = self._find_border_ancestors(
254
border, common, searchers = self._find_border_ancestors(
203
255
[left_revision, right_revision])
204
return (left.difference(right).difference(common),
205
right.difference(left).difference(common))
207
@symbol_versioning.deprecated_method(symbol_versioning.one_one)
208
def get_parents(self, revisions):
209
"""Find revision ids of the parents of a list of revisions
211
A list is returned of the same length as the input. Each entry
212
is a list of parent ids for the corresponding input revision.
214
[NULL_REVISION] is used as the parent of the first user-committed
215
revision. Its parent list is empty.
217
If the revision is not present (i.e. a ghost), None is used in place
218
of the list of parents.
220
Deprecated in bzr 1.2 - please see get_parent_map.
222
parents = self.get_parent_map(revisions)
223
return [parent.get(r, None) for r in revisions]
256
self._search_for_extra_common(common, searchers)
257
left = searchers[0].seen
258
right = searchers[1].seen
259
return (left.difference(right), right.difference(left))
261
def find_descendants(self, old_key, new_key):
262
"""Find descendants of old_key that are ancestors of new_key."""
263
child_map = self.get_child_map(self._find_descendant_ancestors(
265
graph = Graph(DictParentsProvider(child_map))
266
searcher = graph._make_breadth_first_searcher([old_key])
270
def _find_descendant_ancestors(self, old_key, new_key):
271
"""Find ancestors of new_key that may be descendants of old_key."""
272
stop = self._make_breadth_first_searcher([old_key])
273
descendants = self._make_breadth_first_searcher([new_key])
274
for revisions in descendants:
275
old_stop = stop.seen.intersection(revisions)
276
descendants.stop_searching_any(old_stop)
277
seen_stop = descendants.find_seen_ancestors(stop.step())
278
descendants.stop_searching_any(seen_stop)
279
return descendants.seen.difference(stop.seen)
281
def get_child_map(self, keys):
282
"""Get a mapping from parents to children of the specified keys.
284
This is simply the inversion of get_parent_map. Only supplied keys
285
will be discovered as children.
286
:return: a dict of key:child_list for keys.
288
parent_map = self._parents_provider.get_parent_map(keys)
290
for child, parents in sorted(parent_map.items()):
291
for parent in parents:
292
parent_child.setdefault(parent, []).append(child)
295
def find_distance_to_null(self, target_revision_id, known_revision_ids):
296
"""Find the left-hand distance to the NULL_REVISION.
298
(This can also be considered the revno of a branch at
301
:param target_revision_id: A revision_id which we would like to know
303
:param known_revision_ids: [(revision_id, revno)] A list of known
304
revno, revision_id tuples. We'll use this to seed the search.
306
# Map from revision_ids to a known value for their revno
307
known_revnos = dict(known_revision_ids)
308
cur_tip = target_revision_id
310
NULL_REVISION = revision.NULL_REVISION
311
known_revnos[NULL_REVISION] = 0
313
searching_known_tips = list(known_revnos.keys())
315
unknown_searched = {}
317
while cur_tip not in known_revnos:
318
unknown_searched[cur_tip] = num_steps
320
to_search = set([cur_tip])
321
to_search.update(searching_known_tips)
322
parent_map = self.get_parent_map(to_search)
323
parents = parent_map.get(cur_tip, None)
324
if not parents: # An empty list or None is a ghost
325
raise errors.GhostRevisionsHaveNoRevno(target_revision_id,
329
for revision_id in searching_known_tips:
330
parents = parent_map.get(revision_id, None)
334
next_revno = known_revnos[revision_id] - 1
335
if next in unknown_searched:
336
# We have enough information to return a value right now
337
return next_revno + unknown_searched[next]
338
if next in known_revnos:
340
known_revnos[next] = next_revno
341
next_known_tips.append(next)
342
searching_known_tips = next_known_tips
344
# We reached a known revision, so just add in how many steps it took to
346
return known_revnos[cur_tip] + num_steps
348
def find_lefthand_distances(self, keys):
349
"""Find the distance to null for all the keys in keys.
351
:param keys: keys to lookup.
352
:return: A dict key->distance for all of keys.
354
# Optimisable by concurrent searching, but a random spread should get
355
# some sort of hit rate.
362
(key, self.find_distance_to_null(key, known_revnos)))
363
except errors.GhostRevisionsHaveNoRevno:
366
known_revnos.append((key, -1))
367
return dict(known_revnos)
369
def find_unique_ancestors(self, unique_revision, common_revisions):
370
"""Find the unique ancestors for a revision versus others.
372
This returns the ancestry of unique_revision, excluding all revisions
373
in the ancestry of common_revisions. If unique_revision is in the
374
ancestry, then the empty set will be returned.
376
:param unique_revision: The revision_id whose ancestry we are
378
XXX: Would this API be better if we allowed multiple revisions on
380
:param common_revisions: Revision_ids of ancestries to exclude.
381
:return: A set of revisions in the ancestry of unique_revision
383
if unique_revision in common_revisions:
386
# Algorithm description
387
# 1) Walk backwards from the unique node and all common nodes.
388
# 2) When a node is seen by both sides, stop searching it in the unique
389
# walker, include it in the common walker.
390
# 3) Stop searching when there are no nodes left for the unique walker.
391
# At this point, you have a maximal set of unique nodes. Some of
392
# them may actually be common, and you haven't reached them yet.
393
# 4) Start new searchers for the unique nodes, seeded with the
394
# information you have so far.
395
# 5) Continue searching, stopping the common searches when the search
396
# tip is an ancestor of all unique nodes.
397
# 6) Aggregate together unique searchers when they are searching the
398
# same tips. When all unique searchers are searching the same node,
399
# stop move it to a single 'all_unique_searcher'.
400
# 7) The 'all_unique_searcher' represents the very 'tip' of searching.
401
# Most of the time this produces very little important information.
402
# So don't step it as quickly as the other searchers.
403
# 8) Search is done when all common searchers have completed.
405
unique_searcher, common_searcher = self._find_initial_unique_nodes(
406
[unique_revision], common_revisions)
408
unique_nodes = unique_searcher.seen.difference(common_searcher.seen)
412
(all_unique_searcher,
413
unique_tip_searchers) = self._make_unique_searchers(unique_nodes,
414
unique_searcher, common_searcher)
416
self._refine_unique_nodes(unique_searcher, all_unique_searcher,
417
unique_tip_searchers, common_searcher)
418
true_unique_nodes = unique_nodes.difference(common_searcher.seen)
419
if 'graph' in debug.debug_flags:
420
trace.mutter('Found %d truly unique nodes out of %d',
421
len(true_unique_nodes), len(unique_nodes))
422
return true_unique_nodes
424
def _find_initial_unique_nodes(self, unique_revisions, common_revisions):
425
"""Steps 1-3 of find_unique_ancestors.
427
Find the maximal set of unique nodes. Some of these might actually
428
still be common, but we are sure that there are no other unique nodes.
430
:return: (unique_searcher, common_searcher)
433
unique_searcher = self._make_breadth_first_searcher(unique_revisions)
434
# we know that unique_revisions aren't in common_revisions, so skip
436
unique_searcher.next()
437
common_searcher = self._make_breadth_first_searcher(common_revisions)
439
# As long as we are still finding unique nodes, keep searching
440
while unique_searcher._next_query:
441
next_unique_nodes = set(unique_searcher.step())
442
next_common_nodes = set(common_searcher.step())
444
# Check if either searcher encounters new nodes seen by the other
446
unique_are_common_nodes = next_unique_nodes.intersection(
447
common_searcher.seen)
448
unique_are_common_nodes.update(
449
next_common_nodes.intersection(unique_searcher.seen))
450
if unique_are_common_nodes:
451
ancestors = unique_searcher.find_seen_ancestors(
452
unique_are_common_nodes)
453
# TODO: This is a bit overboard, we only really care about
454
# the ancestors of the tips because the rest we
455
# already know. This is *correct* but causes us to
456
# search too much ancestry.
457
ancestors.update(common_searcher.find_seen_ancestors(ancestors))
458
unique_searcher.stop_searching_any(ancestors)
459
common_searcher.start_searching(ancestors)
461
return unique_searcher, common_searcher
463
def _make_unique_searchers(self, unique_nodes, unique_searcher,
465
"""Create a searcher for all the unique search tips (step 4).
467
As a side effect, the common_searcher will stop searching any nodes
468
that are ancestors of the unique searcher tips.
470
:return: (all_unique_searcher, unique_tip_searchers)
472
unique_tips = self._remove_simple_descendants(unique_nodes,
473
self.get_parent_map(unique_nodes))
475
if len(unique_tips) == 1:
476
unique_tip_searchers = []
477
ancestor_all_unique = unique_searcher.find_seen_ancestors(unique_tips)
479
unique_tip_searchers = []
480
for tip in unique_tips:
481
revs_to_search = unique_searcher.find_seen_ancestors([tip])
482
revs_to_search.update(
483
common_searcher.find_seen_ancestors(revs_to_search))
484
searcher = self._make_breadth_first_searcher(revs_to_search)
485
# We don't care about the starting nodes.
486
searcher._label = tip
488
unique_tip_searchers.append(searcher)
490
ancestor_all_unique = None
491
for searcher in unique_tip_searchers:
492
if ancestor_all_unique is None:
493
ancestor_all_unique = set(searcher.seen)
495
ancestor_all_unique = ancestor_all_unique.intersection(
497
# Collapse all the common nodes into a single searcher
498
all_unique_searcher = self._make_breadth_first_searcher(
500
if ancestor_all_unique:
501
# We've seen these nodes in all the searchers, so we'll just go to
503
all_unique_searcher.step()
505
# Stop any search tips that are already known as ancestors of the
507
stopped_common = common_searcher.stop_searching_any(
508
common_searcher.find_seen_ancestors(ancestor_all_unique))
511
for searcher in unique_tip_searchers:
512
total_stopped += len(searcher.stop_searching_any(
513
searcher.find_seen_ancestors(ancestor_all_unique)))
514
if 'graph' in debug.debug_flags:
515
trace.mutter('For %d unique nodes, created %d + 1 unique searchers'
516
' (%d stopped search tips, %d common ancestors'
517
' (%d stopped common)',
518
len(unique_nodes), len(unique_tip_searchers),
519
total_stopped, len(ancestor_all_unique),
521
return all_unique_searcher, unique_tip_searchers
523
def _step_unique_and_common_searchers(self, common_searcher,
524
unique_tip_searchers,
526
"""Step all the searchers"""
527
newly_seen_common = set(common_searcher.step())
528
newly_seen_unique = set()
529
for searcher in unique_tip_searchers:
530
next = set(searcher.step())
531
next.update(unique_searcher.find_seen_ancestors(next))
532
next.update(common_searcher.find_seen_ancestors(next))
533
for alt_searcher in unique_tip_searchers:
534
if alt_searcher is searcher:
536
next.update(alt_searcher.find_seen_ancestors(next))
537
searcher.start_searching(next)
538
newly_seen_unique.update(next)
539
return newly_seen_common, newly_seen_unique
541
def _find_nodes_common_to_all_unique(self, unique_tip_searchers,
543
newly_seen_unique, step_all_unique):
544
"""Find nodes that are common to all unique_tip_searchers.
546
If it is time, step the all_unique_searcher, and add its nodes to the
549
common_to_all_unique_nodes = newly_seen_unique.copy()
550
for searcher in unique_tip_searchers:
551
common_to_all_unique_nodes.intersection_update(searcher.seen)
552
common_to_all_unique_nodes.intersection_update(
553
all_unique_searcher.seen)
554
# Step all-unique less frequently than the other searchers.
555
# In the common case, we don't need to spider out far here, so
556
# avoid doing extra work.
558
tstart = time.clock()
559
nodes = all_unique_searcher.step()
560
common_to_all_unique_nodes.update(nodes)
561
if 'graph' in debug.debug_flags:
562
tdelta = time.clock() - tstart
563
trace.mutter('all_unique_searcher step() took %.3fs'
564
'for %d nodes (%d total), iteration: %s',
565
tdelta, len(nodes), len(all_unique_searcher.seen),
566
all_unique_searcher._iterations)
567
return common_to_all_unique_nodes
569
def _collapse_unique_searchers(self, unique_tip_searchers,
570
common_to_all_unique_nodes):
571
"""Combine searchers that are searching the same tips.
573
When two searchers are searching the same tips, we can stop one of the
574
searchers. We also know that the maximal set of common ancestors is the
575
intersection of the two original searchers.
577
:return: A list of searchers that are searching unique nodes.
579
# Filter out searchers that don't actually search different
580
# nodes. We already have the ancestry intersection for them
581
unique_search_tips = {}
582
for searcher in unique_tip_searchers:
583
stopped = searcher.stop_searching_any(common_to_all_unique_nodes)
584
will_search_set = frozenset(searcher._next_query)
585
if not will_search_set:
586
if 'graph' in debug.debug_flags:
587
trace.mutter('Unique searcher %s was stopped.'
588
' (%s iterations) %d nodes stopped',
590
searcher._iterations,
592
elif will_search_set not in unique_search_tips:
593
# This searcher is searching a unique set of nodes, let it
594
unique_search_tips[will_search_set] = [searcher]
596
unique_search_tips[will_search_set].append(searcher)
597
# TODO: it might be possible to collapse searchers faster when they
598
# only have *some* search tips in common.
599
next_unique_searchers = []
600
for searchers in unique_search_tips.itervalues():
601
if len(searchers) == 1:
602
# Searching unique tips, go for it
603
next_unique_searchers.append(searchers[0])
605
# These searchers have started searching the same tips, we
606
# don't need them to cover the same ground. The
607
# intersection of their ancestry won't change, so create a
608
# new searcher, combining their histories.
609
next_searcher = searchers[0]
610
for searcher in searchers[1:]:
611
next_searcher.seen.intersection_update(searcher.seen)
612
if 'graph' in debug.debug_flags:
613
trace.mutter('Combining %d searchers into a single'
614
' searcher searching %d nodes with'
617
len(next_searcher._next_query),
618
len(next_searcher.seen))
619
next_unique_searchers.append(next_searcher)
620
return next_unique_searchers
622
def _refine_unique_nodes(self, unique_searcher, all_unique_searcher,
623
unique_tip_searchers, common_searcher):
624
"""Steps 5-8 of find_unique_ancestors.
626
This function returns when common_searcher has stopped searching for
629
# We step the ancestor_all_unique searcher only every
630
# STEP_UNIQUE_SEARCHER_EVERY steps.
631
step_all_unique_counter = 0
632
# While we still have common nodes to search
633
while common_searcher._next_query:
635
newly_seen_unique) = self._step_unique_and_common_searchers(
636
common_searcher, unique_tip_searchers, unique_searcher)
637
# These nodes are common ancestors of all unique nodes
638
common_to_all_unique_nodes = self._find_nodes_common_to_all_unique(
639
unique_tip_searchers, all_unique_searcher, newly_seen_unique,
640
step_all_unique_counter==0)
641
step_all_unique_counter = ((step_all_unique_counter + 1)
642
% STEP_UNIQUE_SEARCHER_EVERY)
644
if newly_seen_common:
645
# If a 'common' node is an ancestor of all unique searchers, we
646
# can stop searching it.
647
common_searcher.stop_searching_any(
648
all_unique_searcher.seen.intersection(newly_seen_common))
649
if common_to_all_unique_nodes:
650
common_to_all_unique_nodes.update(
651
common_searcher.find_seen_ancestors(
652
common_to_all_unique_nodes))
653
# The all_unique searcher can start searching the common nodes
654
# but everyone else can stop.
655
# This is the sort of thing where we would like to not have it
656
# start_searching all of the nodes, but only mark all of them
657
# as seen, and have it search only the actual tips. Otherwise
658
# it is another get_parent_map() traversal for it to figure out
659
# what we already should know.
660
all_unique_searcher.start_searching(common_to_all_unique_nodes)
661
common_searcher.stop_searching_any(common_to_all_unique_nodes)
663
next_unique_searchers = self._collapse_unique_searchers(
664
unique_tip_searchers, common_to_all_unique_nodes)
665
if len(unique_tip_searchers) != len(next_unique_searchers):
666
if 'graph' in debug.debug_flags:
667
trace.mutter('Collapsed %d unique searchers => %d'
669
len(unique_tip_searchers),
670
len(next_unique_searchers),
671
all_unique_searcher._iterations)
672
unique_tip_searchers = next_unique_searchers
225
674
def get_parent_map(self, revisions):
226
675
"""Get a map of key:parent_list for revisions.
444
1013
return set([candidate_descendant]) == self.heads(
445
1014
[candidate_ancestor, candidate_descendant])
1016
def is_between(self, revid, lower_bound_revid, upper_bound_revid):
1017
"""Determine whether a revision is between two others.
1019
returns true if and only if:
1020
lower_bound_revid <= revid <= upper_bound_revid
1022
return ((upper_bound_revid is None or
1023
self.is_ancestor(revid, upper_bound_revid)) and
1024
(lower_bound_revid is None or
1025
self.is_ancestor(lower_bound_revid, revid)))
1027
def _search_for_extra_common(self, common, searchers):
1028
"""Make sure that unique nodes are genuinely unique.
1030
After _find_border_ancestors, all nodes marked "common" are indeed
1031
common. Some of the nodes considered unique are not, due to history
1032
shortcuts stopping the searches early.
1034
We know that we have searched enough when all common search tips are
1035
descended from all unique (uncommon) nodes because we know that a node
1036
cannot be an ancestor of its own ancestor.
1038
:param common: A set of common nodes
1039
:param searchers: The searchers returned from _find_border_ancestors
1042
# Basic algorithm...
1043
# A) The passed in searchers should all be on the same tips, thus
1044
# they should be considered the "common" searchers.
1045
# B) We find the difference between the searchers, these are the
1046
# "unique" nodes for each side.
1047
# C) We do a quick culling so that we only start searching from the
1048
# more interesting unique nodes. (A unique ancestor is more
1049
# interesting than any of its children.)
1050
# D) We start searching for ancestors common to all unique nodes.
1051
# E) We have the common searchers stop searching any ancestors of
1052
# nodes found by (D)
1053
# F) When there are no more common search tips, we stop
1055
# TODO: We need a way to remove unique_searchers when they overlap with
1056
# other unique searchers.
1057
if len(searchers) != 2:
1058
raise NotImplementedError(
1059
"Algorithm not yet implemented for > 2 searchers")
1060
common_searchers = searchers
1061
left_searcher = searchers[0]
1062
right_searcher = searchers[1]
1063
unique = left_searcher.seen.symmetric_difference(right_searcher.seen)
1064
if not unique: # No unique nodes, nothing to do
1066
total_unique = len(unique)
1067
unique = self._remove_simple_descendants(unique,
1068
self.get_parent_map(unique))
1069
simple_unique = len(unique)
1071
unique_searchers = []
1072
for revision_id in unique:
1073
if revision_id in left_searcher.seen:
1074
parent_searcher = left_searcher
1076
parent_searcher = right_searcher
1077
revs_to_search = parent_searcher.find_seen_ancestors([revision_id])
1078
if not revs_to_search: # XXX: This shouldn't be possible
1079
revs_to_search = [revision_id]
1080
searcher = self._make_breadth_first_searcher(revs_to_search)
1081
# We don't care about the starting nodes.
1083
unique_searchers.append(searcher)
1085
# possible todo: aggregate the common searchers into a single common
1086
# searcher, just make sure that we include the nodes into the .seen
1087
# properties of the original searchers
1089
ancestor_all_unique = None
1090
for searcher in unique_searchers:
1091
if ancestor_all_unique is None:
1092
ancestor_all_unique = set(searcher.seen)
1094
ancestor_all_unique = ancestor_all_unique.intersection(
1097
trace.mutter('Started %s unique searchers for %s unique revisions',
1098
simple_unique, total_unique)
1100
while True: # If we have no more nodes we have nothing to do
1101
newly_seen_common = set()
1102
for searcher in common_searchers:
1103
newly_seen_common.update(searcher.step())
1104
newly_seen_unique = set()
1105
for searcher in unique_searchers:
1106
newly_seen_unique.update(searcher.step())
1107
new_common_unique = set()
1108
for revision in newly_seen_unique:
1109
for searcher in unique_searchers:
1110
if revision not in searcher.seen:
1113
# This is a border because it is a first common that we see
1114
# after walking for a while.
1115
new_common_unique.add(revision)
1116
if newly_seen_common:
1117
# These are nodes descended from one of the 'common' searchers.
1118
# Make sure all searchers are on the same page
1119
for searcher in common_searchers:
1120
newly_seen_common.update(
1121
searcher.find_seen_ancestors(newly_seen_common))
1122
# We start searching the whole ancestry. It is a bit wasteful,
1123
# though. We really just want to mark all of these nodes as
1124
# 'seen' and then start just the tips. However, it requires a
1125
# get_parent_map() call to figure out the tips anyway, and all
1126
# redundant requests should be fairly fast.
1127
for searcher in common_searchers:
1128
searcher.start_searching(newly_seen_common)
1130
# If a 'common' node is an ancestor of all unique searchers, we
1131
# can stop searching it.
1132
stop_searching_common = ancestor_all_unique.intersection(
1134
if stop_searching_common:
1135
for searcher in common_searchers:
1136
searcher.stop_searching_any(stop_searching_common)
1137
if new_common_unique:
1138
# We found some ancestors that are common
1139
for searcher in unique_searchers:
1140
new_common_unique.update(
1141
searcher.find_seen_ancestors(new_common_unique))
1142
# Since these are common, we can grab another set of ancestors
1144
for searcher in common_searchers:
1145
new_common_unique.update(
1146
searcher.find_seen_ancestors(new_common_unique))
1148
# We can tell all of the unique searchers to start at these
1149
# nodes, and tell all of the common searchers to *stop*
1150
# searching these nodes
1151
for searcher in unique_searchers:
1152
searcher.start_searching(new_common_unique)
1153
for searcher in common_searchers:
1154
searcher.stop_searching_any(new_common_unique)
1155
ancestor_all_unique.update(new_common_unique)
1157
# Filter out searchers that don't actually search different
1158
# nodes. We already have the ancestry intersection for them
1159
next_unique_searchers = []
1160
unique_search_sets = set()
1161
for searcher in unique_searchers:
1162
will_search_set = frozenset(searcher._next_query)
1163
if will_search_set not in unique_search_sets:
1164
# This searcher is searching a unique set of nodes, let it
1165
unique_search_sets.add(will_search_set)
1166
next_unique_searchers.append(searcher)
1167
unique_searchers = next_unique_searchers
1168
for searcher in common_searchers:
1169
if searcher._next_query:
1172
# All common searcher have stopped searching
1175
def _remove_simple_descendants(self, revisions, parent_map):
1176
"""remove revisions which are children of other ones in the set
1178
This doesn't do any graph searching, it just checks the immediate
1179
parent_map to find if there are any children which can be removed.
1181
:param revisions: A set of revision_ids
1182
:return: A set of revision_ids with the children removed
1184
simple_ancestors = revisions.copy()
1185
# TODO: jam 20071214 we *could* restrict it to searching only the
1186
# parent_map of revisions already present in 'revisions', but
1187
# considering the general use case, I think this is actually
1190
# This is the same as the following loop. I don't know that it is any
1192
## simple_ancestors.difference_update(r for r, p_ids in parent_map.iteritems()
1193
## if p_ids is not None and revisions.intersection(p_ids))
1194
## return simple_ancestors
1196
# Yet Another Way, invert the parent map (which can be cached)
1198
## for revision_id, parent_ids in parent_map.iteritems():
1199
## for p_id in parent_ids:
1200
## descendants.setdefault(p_id, []).append(revision_id)
1201
## for revision in revisions.intersection(descendants):
1202
## simple_ancestors.difference_update(descendants[revision])
1203
## return simple_ancestors
1204
for revision, parent_ids in parent_map.iteritems():
1205
if parent_ids is None:
1207
for parent_id in parent_ids:
1208
if parent_id in revisions:
1209
# This node has a parent present in the set, so we can
1211
simple_ancestors.discard(revision)
1213
return simple_ancestors
448
1216
class HeadsCache(object):
449
1217
"""A cache of results for graph heads calls."""
741
1588
return self._keys
1591
"""Return false if the search lists 1 or more revisions."""
1592
return self._recipe[3] == 0
1594
def refine(self, seen, referenced):
1595
"""Create a new search by refining this search.
1597
:param seen: Revisions that have been satisfied.
1598
:param referenced: Revision references observed while satisfying some
1601
start = self._recipe[1]
1602
exclude = self._recipe[2]
1603
count = self._recipe[3]
1604
keys = self.get_keys()
1605
# New heads = referenced + old heads - seen things - exclude
1606
pending_refs = set(referenced)
1607
pending_refs.update(start)
1608
pending_refs.difference_update(seen)
1609
pending_refs.difference_update(exclude)
1610
# New exclude = old exclude + satisfied heads
1611
seen_heads = start.intersection(seen)
1612
exclude.update(seen_heads)
1613
# keys gets seen removed
1615
# length is reduced by len(seen)
1617
return SearchResult(pending_refs, exclude, count, keys)
1620
class PendingAncestryResult(object):
1621
"""A search result that will reconstruct the ancestry for some graph heads.
1623
Unlike SearchResult, this doesn't hold the complete search result in
1624
memory, it just holds a description of how to generate it.
1627
def __init__(self, heads, repo):
1630
:param heads: an iterable of graph heads.
1631
:param repo: a repository to use to generate the ancestry for the given
1634
self.heads = frozenset(heads)
1637
def get_recipe(self):
1638
"""Return a recipe that can be used to replay this search.
1640
The recipe allows reconstruction of the same results at a later date.
1642
:seealso SearchResult.get_recipe:
1644
:return: A tuple ('proxy-search', start_keys_set, set(), -1)
1645
To recreate this result, create a PendingAncestryResult with the
1648
return ('proxy-search', self.heads, set(), -1)
1651
"""See SearchResult.get_keys.
1653
Returns all the keys for the ancestry of the heads, excluding
1656
return self._get_keys(self.repo.get_graph())
1658
def _get_keys(self, graph):
1659
NULL_REVISION = revision.NULL_REVISION
1660
keys = [key for (key, parents) in graph.iter_ancestry(self.heads)
1661
if key != NULL_REVISION and parents is not None]
1665
"""Return false if the search lists 1 or more revisions."""
1666
if revision.NULL_REVISION in self.heads:
1667
return len(self.heads) == 1
1669
return len(self.heads) == 0
1671
def refine(self, seen, referenced):
1672
"""Create a new search by refining this search.
1674
:param seen: Revisions that have been satisfied.
1675
:param referenced: Revision references observed while satisfying some
1678
referenced = self.heads.union(referenced)
1679
return PendingAncestryResult(referenced - seen, self.repo)
1682
def collapse_linear_regions(parent_map):
1683
"""Collapse regions of the graph that are 'linear'.
1689
can be collapsed by removing B and getting::
1693
:param parent_map: A dictionary mapping children to their parents
1694
:return: Another dictionary with 'linear' chains collapsed
1696
# Note: this isn't a strictly minimal collapse. For example:
1704
# Will not have 'D' removed, even though 'E' could fit. Also:
1710
# A and C are both kept because they are edges of the graph. We *could* get
1711
# rid of A if we wanted.
1719
# Will not have any nodes removed, even though you do have an
1720
# 'uninteresting' linear D->B and E->C
1722
for child, parents in parent_map.iteritems():
1723
children.setdefault(child, [])
1725
children.setdefault(p, []).append(child)
1727
orig_children = dict(children)
1729
result = dict(parent_map)
1730
for node in parent_map:
1731
parents = result[node]
1732
if len(parents) == 1:
1733
parent_children = children[parents[0]]
1734
if len(parent_children) != 1:
1735
# This is not the only child
1737
node_children = children[node]
1738
if len(node_children) != 1:
1740
child_parents = result.get(node_children[0], None)
1741
if len(child_parents) != 1:
1742
# This is not its only parent
1744
# The child of this node only points at it, and the parent only has
1745
# this as a child. remove this node, and join the others together
1746
result[node_children[0]] = parents
1747
children[parents[0]] = node_children
1755
class GraphThunkIdsToKeys(object):
1756
"""Forwards calls about 'ids' to be about keys internally."""
1758
def __init__(self, graph):
1761
def topo_sort(self):
1762
return [r for (r,) in self._graph.topo_sort()]
1764
def heads(self, ids):
1765
"""See Graph.heads()"""
1766
as_keys = [(i,) for i in ids]
1767
head_keys = self._graph.heads(as_keys)
1768
return set([h[0] for h in head_keys])
1770
def merge_sort(self, tip_revision):
1771
return self._graph.merge_sort((tip_revision,))
1774
_counters = [0,0,0,0,0,0,0]
1776
from bzrlib._known_graph_pyx import KnownGraph
1777
except ImportError, e:
1778
osutils.failed_to_load_extension(e)
1779
from bzrlib._known_graph_py import KnownGraph