2052.3.1
by John Arbash Meinel
Add tests to cleanup the copyright of all source files |
1 |
# Copyright (C) 2005 Canonical Ltd
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
2 |
#
|
974.1.68
by Aaron Bentley
Added GPL notice |
3 |
# This program is free software; you can redistribute it and/or modify
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
7 |
#
|
974.1.68
by Aaron Bentley
Added GPL notice |
8 |
# This program is distributed in the hope that it will be useful,
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
1887.1.1
by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines, |
12 |
#
|
974.1.68
by Aaron Bentley
Added GPL notice |
13 |
# You should have received a copy of the GNU General Public License
|
14 |
# along with this program; if not, write to the Free Software
|
|
15 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
16 |
||
1594.2.15
by Robert Collins
Unfuck performance. |
17 |
|
18 |
from bzrlib.tsort import topo_sort |
|
19 |
||
20 |
||
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
21 |
def max_distance(node, ancestors, distances, root_descendants): |
974.1.66
by Aaron Bentley
more cleanups, docs, sorting stuff |
22 |
"""Calculate the max distance to an ancestor.
|
23 |
Return None if not all possible ancestors have known distances"""
|
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
24 |
best = None |
25 |
if node in distances: |
|
26 |
best = distances[node] |
|
27 |
for ancestor in ancestors[node]: |
|
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
28 |
# skip ancestors we will never traverse:
|
29 |
if root_descendants is not None and ancestor not in root_descendants: |
|
30 |
continue
|
|
974.1.66
by Aaron Bentley
more cleanups, docs, sorting stuff |
31 |
# An ancestor which is not listed in ancestors will never be in
|
32 |
# distances, so we pretend it never existed.
|
|
974.1.64
by Aaron Bentley
Handled ancestors that are missing when finding a base |
33 |
if ancestor not in ancestors: |
34 |
continue
|
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
35 |
if ancestor not in distances: |
36 |
return None |
|
1185.8.3
by Aaron Bentley
Fixed bug in distance-from-root graph operation |
37 |
if best is None or distances[ancestor]+1 > best: |
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
38 |
best = distances[ancestor] + 1 |
39 |
return best |
|
40 |
||
41 |
||
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
42 |
def node_distances(graph, ancestors, start, root_descendants=None): |
974.1.66
by Aaron Bentley
more cleanups, docs, sorting stuff |
43 |
"""Produce a list of nodes, sorted by distance from a start node.
|
44 |
This is an algorithm devised by Aaron Bentley, because applying Dijkstra
|
|
45 |
backwards seemed too complicated.
|
|
46 |
||
47 |
For each node, we walk its descendants. If all the descendant's ancestors
|
|
48 |
have a max-distance-to-start, (excluding ones that can never reach start),
|
|
49 |
we calculate their max-distance-to-start, and schedule their descendants.
|
|
50 |
||
51 |
So when a node's last parent acquires a distance, it will acquire a
|
|
52 |
distance on the next iteration.
|
|
53 |
||
54 |
Once we know the max distances for all nodes, we can return a list sorted
|
|
55 |
by distance, farthest first.
|
|
56 |
"""
|
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
57 |
distances = {start: 0} |
974.1.60
by aaron.bentley at utoronto
Initial import of common-ancestor detection |
58 |
lines = set([start]) |
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
59 |
while len(lines) > 0: |
60 |
new_lines = set() |
|
61 |
for line in lines: |
|
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
62 |
line_descendants = graph[line] |
63 |
assert line not in line_descendants, "%s refers to itself" % line |
|
64 |
for descendant in line_descendants: |
|
65 |
distance = max_distance(descendant, ancestors, distances, |
|
66 |
root_descendants) |
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
67 |
if distance is None: |
68 |
continue
|
|
69 |
distances[descendant] = distance |
|
70 |
new_lines.add(descendant) |
|
71 |
lines = new_lines |
|
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
72 |
return distances |
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
73 |
|
974.1.87
by Aaron Bentley
Refactored and documented graph stuff |
74 |
def nodes_by_distance(distances): |
75 |
"""Return a list of nodes sorted by distance"""
|
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
76 |
def by_distance(n): |
974.1.66
by Aaron Bentley
more cleanups, docs, sorting stuff |
77 |
return distances[n],n |
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
78 |
|
974.1.59
by aaron.bentley at utoronto
Created yet another longest-patch-picker |
79 |
node_list = distances.keys() |
80 |
node_list.sort(key=by_distance, reverse=True) |
|
81 |
return node_list |
|
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
82 |
|
974.1.87
by Aaron Bentley
Refactored and documented graph stuff |
83 |
def select_farthest(distances, common): |
84 |
"""Return the farthest common node, or None if no node qualifies."""
|
|
85 |
node_list = nodes_by_distance(distances) |
|
86 |
for node in node_list: |
|
87 |
if node in common: |
|
88 |
return node |
|
89 |
||
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
90 |
def all_descendants(descendants, start): |
974.1.87
by Aaron Bentley
Refactored and documented graph stuff |
91 |
"""Produce a set of all descendants of the start node.
|
92 |
The input is a map of node->list of descendants for a graph encompassing
|
|
93 |
start.
|
|
94 |
"""
|
|
974.1.72
by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist |
95 |
result = set() |
96 |
lines = set([start]) |
|
97 |
while len(lines) > 0: |
|
98 |
new_lines = set() |
|
99 |
for line in lines: |
|
100 |
if line not in descendants: |
|
101 |
continue
|
|
102 |
for descendant in descendants[line]: |
|
103 |
if descendant in result: |
|
104 |
continue
|
|
105 |
result.add(descendant) |
|
106 |
new_lines.add(descendant) |
|
107 |
lines = new_lines |
|
108 |
return result |
|
1594.2.3
by Robert Collins
bugfix revision.MultipleRevisionSources.get_revision_graph to integrate ghosts between sources. [slow on weaves, fast on knits. |
109 |
|
110 |
||
111 |
class Graph(object): |
|
1759.2.2
by Jelmer Vernooij
Revert some of my spelling fixes and fix some typos after review by Aaron. |
112 |
"""A graph object which can memoise and cache results for performance."""
|
1594.2.3
by Robert Collins
bugfix revision.MultipleRevisionSources.get_revision_graph to integrate ghosts between sources. [slow on weaves, fast on knits. |
113 |
|
114 |
def __init__(self): |
|
115 |
super(Graph, self).__init__() |
|
116 |
self.roots = set([]) |
|
117 |
self.ghosts = set([]) |
|
118 |
self._graph_ancestors = {} |
|
119 |
self._graph_descendants = {} |
|
120 |
||
121 |
def add_ghost(self, node_id): |
|
122 |
"""Add a ghost to the graph."""
|
|
123 |
self.ghosts.add(node_id) |
|
124 |
self._ensure_descendant(node_id) |
|
125 |
||
126 |
def add_node(self, node_id, parent_ids): |
|
127 |
"""Add node_id to the graph with parent_ids as its parents."""
|
|
2625.8.1
by Robert Collins
LIBRARY API BREAKS: |
128 |
if len(parent_ids) == 0: |
1594.2.3
by Robert Collins
bugfix revision.MultipleRevisionSources.get_revision_graph to integrate ghosts between sources. [slow on weaves, fast on knits. |
129 |
self.roots.add(node_id) |
130 |
self._graph_ancestors[node_id] = list(parent_ids) |
|
131 |
self._ensure_descendant(node_id) |
|
132 |
for parent in parent_ids: |
|
133 |
self._ensure_descendant(parent) |
|
134 |
self._graph_descendants[parent][node_id] = 1 |
|
135 |
||
136 |
def _ensure_descendant(self, node_id): |
|
137 |
"""Ensure that a descendant lookup for node_id will work."""
|
|
138 |
if not node_id in self._graph_descendants: |
|
139 |
self._graph_descendants[node_id] = {} |
|
140 |
||
141 |
def get_ancestors(self): |
|
142 |
"""Return a dictionary of graph node:ancestor_list entries."""
|
|
143 |
return dict(self._graph_ancestors.items()) |
|
144 |
||
2530.1.1
by Aaron Bentley
Make topological sorting optional for get_ancestry |
145 |
def get_ancestry(self, node_id, topo_sorted=True): |
1594.2.15
by Robert Collins
Unfuck performance. |
146 |
"""Return the inclusive ancestors of node_id in topological order."""
|
147 |
# maybe optimise this ?
|
|
148 |
result = {} |
|
149 |
pending = set([node_id]) |
|
150 |
while len(pending): |
|
151 |
current = pending.pop() |
|
152 |
parents = self._graph_ancestors[current] |
|
153 |
parents = [parent for parent in parents if parent not in self.ghosts] |
|
154 |
result[current] = parents |
|
155 |
for parent in parents: |
|
156 |
if parent not in result and parent not in pending: |
|
157 |
pending.add(parent) |
|
2530.1.1
by Aaron Bentley
Make topological sorting optional for get_ancestry |
158 |
if not topo_sorted: |
159 |
return result.keys() |
|
1594.2.15
by Robert Collins
Unfuck performance. |
160 |
return topo_sort(result.items()) |
161 |
||
1594.2.3
by Robert Collins
bugfix revision.MultipleRevisionSources.get_revision_graph to integrate ghosts between sources. [slow on weaves, fast on knits. |
162 |
def get_descendants(self): |
163 |
"""Return a dictionary of graph node:child_node:distance entries."""
|
|
164 |
return dict(self._graph_descendants.items()) |