~bzr-pqm/bzr/bzr.dev

974.1.68 by Aaron Bentley
Added GPL notice
1
# (C) 2005 Canonical
2
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.
7
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.
12
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
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
17
def max_distance(node, ancestors, distances, root_descendants):
974.1.66 by Aaron Bentley
more cleanups, docs, sorting stuff
18
    """Calculate the max distance to an ancestor.  
19
    Return None if not all possible ancestors have known distances"""
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
20
    best = None
21
    if node in distances:
22
        best = distances[node]
23
    for ancestor in ancestors[node]:
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
24
        # skip ancestors we will never traverse:
25
        if root_descendants is not None and ancestor not in root_descendants:
26
            continue
974.1.66 by Aaron Bentley
more cleanups, docs, sorting stuff
27
        # An ancestor which is not listed in ancestors will never be in
28
        # distances, so we pretend it never existed.
974.1.64 by Aaron Bentley
Handled ancestors that are missing when finding a base
29
        if ancestor not in ancestors:
30
            continue
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
31
        if ancestor not in distances:
32
            return None
1185.8.3 by Aaron Bentley
Fixed bug in distance-from-root graph operation
33
        if best is None or distances[ancestor]+1 > best:
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
34
            best = distances[ancestor] + 1
35
    return best
36
37
    
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
38
def node_distances(graph, ancestors, start, root_descendants=None):
974.1.66 by Aaron Bentley
more cleanups, docs, sorting stuff
39
    """Produce a list of nodes, sorted by distance from a start node.
40
    This is an algorithm devised by Aaron Bentley, because applying Dijkstra
41
    backwards seemed too complicated.
42
43
    For each node, we walk its descendants.  If all the descendant's ancestors
44
    have a max-distance-to-start, (excluding ones that can never reach start),
45
    we calculate their max-distance-to-start, and schedule their descendants.
46
47
    So when a node's last parent acquires a distance, it will acquire a
48
    distance on the next iteration.
49
50
    Once we know the max distances for all nodes, we can return a list sorted
51
    by distance, farthest first.
52
    """
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
53
    distances = {start: 0}
974.1.60 by aaron.bentley at utoronto
Initial import of common-ancestor detection
54
    lines = set([start])
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
55
    while len(lines) > 0:
56
        new_lines = set()
57
        for line in lines:
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
58
            line_descendants = graph[line]
59
            assert line not in line_descendants, "%s refers to itself" % line
60
            for descendant in line_descendants:
61
                distance = max_distance(descendant, ancestors, distances,
62
                                        root_descendants)
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
63
                if distance is None:
64
                    continue
65
                distances[descendant] = distance
66
                new_lines.add(descendant)
67
        lines = new_lines
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
68
    return distances
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
69
974.1.87 by Aaron Bentley
Refactored and documented graph stuff
70
def nodes_by_distance(distances):
71
    """Return a list of nodes sorted by distance"""
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
72
    def by_distance(n):
974.1.66 by Aaron Bentley
more cleanups, docs, sorting stuff
73
        return distances[n],n
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
74
974.1.59 by aaron.bentley at utoronto
Created yet another longest-patch-picker
75
    node_list = distances.keys()
76
    node_list.sort(key=by_distance, reverse=True)
77
    return node_list
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
78
974.1.87 by Aaron Bentley
Refactored and documented graph stuff
79
def select_farthest(distances, common):
80
    """Return the farthest common node, or None if no node qualifies."""
81
    node_list = nodes_by_distance(distances)
82
    for node in node_list:
83
        if node in common:
84
            return node
85
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
86
def all_descendants(descendants, start):
974.1.87 by Aaron Bentley
Refactored and documented graph stuff
87
    """Produce a set of all descendants of the start node.
88
    The input is a map of node->list of descendants for a graph encompassing
89
    start.
90
    """
974.1.72 by Aaron Bentley
added all_descendants and node_distances, exception when root doesn't exist
91
    result = set()
92
    lines = set([start])
93
    while len(lines) > 0:
94
        new_lines = set()
95
        for line in lines:
96
            if line not in descendants:
97
                continue
98
            for descendant in descendants[line]:
99
                if descendant in result:
100
                    continue
101
                result.add(descendant)
102
                new_lines.add(descendant)
103
        lines = new_lines
104
    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.
105
106
107
class Graph(object):
108
    """A graph object which can memoise and cache results for performance."""
109
110
    def __init__(self):
111
        super(Graph, self).__init__()
112
        self.roots = set([])
113
        self.ghosts = set([])
114
        self._graph_ancestors = {}
115
        self._graph_descendants = {}
116
117
    def add_ghost(self, node_id):
118
        """Add a ghost to the graph."""
119
        self.ghosts.add(node_id)
120
        self._ensure_descendant(node_id)
121
122
    def add_node(self, node_id, parent_ids):
123
        """Add node_id to the graph with parent_ids as its parents."""
124
        if parent_ids == []:
125
            self.roots.add(node_id)
126
        self._graph_ancestors[node_id] = list(parent_ids)
127
        self._ensure_descendant(node_id)
128
        for parent in parent_ids:
129
            self._ensure_descendant(parent)
130
            self._graph_descendants[parent][node_id] = 1
131
        
132
    def _ensure_descendant(self, node_id):
133
        """Ensure that a descendant lookup for node_id will work."""
134
        if not node_id in self._graph_descendants:
135
            self._graph_descendants[node_id] = {}
136
137
    def get_ancestors(self):
138
        """Return a dictionary of graph node:ancestor_list entries."""
139
        return dict(self._graph_ancestors.items())
140
141
    def get_descendants(self):
142
        """Return a dictionary of graph node:child_node:distance entries."""
143
        return dict(self._graph_descendants.items())