Class: Gem::Resolver::Molinillo::DependencyGraph

Inherits:
Object
  • Object
show all
Includes:
Enumerable, TSort
Defined in:
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb,
lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb

Overview

A directed acyclic graph that is tuned to hold named dependencies

Defined Under Namespace

Classes: Action, Edge, Log, Vertex

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDependencyGraph

Initializes an empty dependency graph



55
56
57
58
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 55

def initialize
  @vertices = {}
  @log = Log.new
end

Instance Attribute Details

#logLog (readonly)

Returns the op log for this graph.

Returns:

  • (Log)

    the op log for this graph



52
53
54
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 52

def log
  @log
end

#vertices{String => Vertex} (readonly)

Returns the vertices of the dependency graph, keyed by Gem::Resolver::Molinillo::DependencyGraph::Vertex#name.

Returns:



49
50
51
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 49

def vertices
  @vertices
end

Class Method Details

.tsort(vertices) ⇒ Array<Vertex>

Topologically sorts the given vertices.

Parameters:

  • vertices (Enumerable<Vertex>)

    the vertices to be sorted, which must all belong to the same graph.

Returns:

  • (Array<Vertex>)

    The sorted vertices.



34
35
36
37
38
39
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 34

def self.tsort(vertices)
  TSort.tsort(
    lambda { |b| vertices.each(&b) },
    lambda { |v, &b| (v.successors & vertices).each(&b) }
  )
end

Instance Method Details

#==(other) ⇒ Boolean

Returns whether the two dependency graphs are equal, determined by a recursive traversal of each #root_vertices and its Gem::Resolver::Molinillo::DependencyGraph::Vertex#successors.

Returns:



120
121
122
123
124
125
126
127
128
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 120

def ==(other)
  return false unless other
  return true if equal?(other)
  vertices.each do |name, vertex|
    other_vertex = other.vertex_named(name)
    return false unless other_vertex
    return false unless other_vertex.successors.map(&:name).to_set == vertex.successors.map(&:name).to_set
  end
end

#add_child_vertex(name, payload, parent_names, requirement) ⇒ void

This method returns an undefined value.

Parameters:

  • name (String)
  • payload (Object)
  • parent_names (Array<String>)
  • requirement (Object)

    the requirement that is requiring the child



135
136
137
138
139
140
141
142
143
144
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 135

def add_child_vertex(name, payload, parent_names, requirement)
  root = !parent_names.delete(nil) { true }
  vertex = add_vertex(name, payload, root)
  vertex.explicit_requirements << requirement if root
  parent_names.each do |parent_name|
    parent_node = vertex_named(parent_name)
    add_edge(parent_node, vertex, requirement)
  end
  vertex
end

#add_edge(origin, destination, requirement) ⇒ Edge

Adds a new Edge to the dependency graph

Parameters:

  • origin (Vertex)
  • destination (Vertex)
  • requirement (Object)

    the requirement that this edge represents

Returns:

  • (Edge)

    the added edge



180
181
182
183
184
185
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 180

def add_edge(origin, destination, requirement)
  if destination.path_to?(origin)
    raise CircularDependencyError.new([origin, destination])
  end
  add_edge_no_circular(origin, destination, requirement)
end

#add_vertex(name, payload, root = false) ⇒ Vertex

Adds a vertex with the given name, or updates the existing one.

Parameters:

  • name (String)
  • payload (Object)

Returns:

  • (Vertex)

    the vertex that was added to ‘self`



150
151
152
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 150

def add_vertex(name, payload, root = false)
  log.add_vertex(self, name, payload, root)
end

#delete_edge(edge) ⇒ Void

Deletes an Edge from the dependency graph

Parameters:

Returns:

  • (Void)


190
191
192
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 190

def delete_edge(edge)
  log.delete_edge(self, edge.origin.name, edge.destination.name, edge.requirement)
end

#detach_vertex_named(name) ⇒ Array<Vertex>

Detaches the #vertex_named ‘name` Vertex from the graph, recursively removing any non-root vertices that were orphaned in the process

Parameters:

  • name (String)

Returns:

  • (Array<Vertex>)

    the vertices which have been detached



158
159
160
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 158

def detach_vertex_named(name)
  log.detach_vertex_named(self, name)
end

#eachArray<Vertex> Also known as: tsort_each_node

Enumerates through the vertices of the graph.

Returns:

  • (Array<Vertex>)

    The graph’s vertices.



15
16
17
18
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 15

def each
  return vertices.values.each unless block_given?
  vertices.values.each { |v| yield v }
end

#initialize_copy(other) ⇒ Object

Initializes a copy of a Gem::Resolver::Molinillo::DependencyGraph, ensuring that all #vertices are properly copied.

Parameters:



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 77

def initialize_copy(other)
  super
  @vertices = {}
  @log = other.log.dup
  traverse = lambda do |new_v, old_v|
    return if new_v.outgoing_edges.size == old_v.outgoing_edges.size
    old_v.outgoing_edges.each do |edge|
      destination = add_vertex(edge.destination.name, edge.destination.payload)
      add_edge_no_circular(new_v, destination, edge.requirement)
      traverse.call(destination, edge.destination)
    end
  end
  other.vertices.each do |name, vertex|
    new_vertex = add_vertex(name, vertex.payload, vertex.root?)
    new_vertex.explicit_requirements.replace(vertex.explicit_requirements)
    traverse.call(new_vertex, vertex)
  end
end

#inspectString

Returns a string suitable for debugging.

Returns:

  • (String)

    a string suitable for debugging



97
98
99
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 97

def inspect
  "#{self.class}:#{vertices.values.inspect}"
end

#rewind_to(tag) ⇒ Void

Rewinds the graph to the state tagged as ‘tag`

Parameters:

  • tag (Object)

    the tag to rewind to

Returns:

  • (Void)


70
71
72
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 70

def rewind_to(tag)
  log.rewind_to(self, tag)
end

#root_vertex_named(name) ⇒ Vertex?

Returns the root vertex with the given name.

Parameters:

  • name (String)

Returns:

  • (Vertex, nil)

    the root vertex with the given name



170
171
172
173
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 170

def root_vertex_named(name)
  vertex = vertex_named(name)
  vertex if vertex && vertex.root?
end

#set_payload(name, payload) ⇒ Void

Sets the payload of the vertex with the given name

Parameters:

  • name (String)

    the name of the vertex

  • payload (Object)

    the payload

Returns:

  • (Void)


198
199
200
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 198

def set_payload(name, payload)
  log.set_payload(self, name, payload)
end

#tag(tag) ⇒ Void

Tags the current state of the dependency as the given tag

Parameters:

  • tag (Object)

    an opaque tag for the current state of the graph

Returns:

  • (Void)


63
64
65
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 63

def tag(tag)
  log.tag(self, tag)
end

#to_dotString

Returns a dot format representation of the graph

Returns:

  • (String)

    Returns a dot format representation of the graph



102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 102

def to_dot
  dot_vertices = []
  dot_edges = []
  vertices.each do |n, v|
    dot_vertices << "  #{n} [label=\"{#{n}|#{v.payload}}\"]"
    v.outgoing_edges.each do |e|
      dot_edges << "  #{e.origin.name} -> #{e.destination.name} [label=\"#{e.requirement}\"]"
    end
  end
  dot_vertices.sort!
  dot_edges.sort!
  dot = dot_vertices.unshift('digraph G {').push('') + dot_edges.push('}')
  dot.join("\n")
end

#vertex_named(name) ⇒ Vertex?

Returns the vertex with the given name.

Parameters:

  • name (String)

Returns:

  • (Vertex, nil)

    the vertex with the given name



164
165
166
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 164

def vertex_named(name)
  vertices[name]
end