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:



129
130
131
132
133
134
135
136
137
138
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 129

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 vertex.payload == other_vertex.payload
    return false unless other_vertex.successors.to_set == vertex.successors.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



145
146
147
148
149
150
151
152
153
154
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 145

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



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

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`



160
161
162
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 160

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)


200
201
202
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 200

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



168
169
170
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 168

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



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

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)


208
209
210
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 208

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_dot(options = {}) ⇒ String

Returns a dot format representation of the graph

Parameters:

  • options (Hash) (defaults to: {})

    options for dot output.

Returns:

  • (String)

    Returns a dot format representation of the graph

Raises:

  • (ArgumentError)


103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 103

def to_dot(options = {})
  edge_label = options.delete(:edge_label)
  raise ArgumentError, "Unknown options: #{options.keys}" unless options.empty?

  dot_vertices = []
  dot_edges = []
  vertices.each do |n, v|
    dot_vertices << "  #{n} [label=\"{#{n}|#{v.payload}}\"]"
    v.outgoing_edges.each do |e|
      label = edge_label ? edge_label.call(e) : e.requirement
      dot_edges << "  #{e.origin.name} -> #{e.destination.name} [label=#{label.to_s.dump}]"
    end
  end

  dot_vertices.uniq!
  dot_vertices.sort!
  dot_edges.uniq!
  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



174
175
176
# File 'lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb', line 174

def vertex_named(name)
  vertices[name]
end