In Files

  • bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb

Class/Module Index [+]

Quicksearch

Bundler::Molinillo::DependencyGraph::Vertex

A vertex in a {DependencyGraph} that encapsulates a {#name} and a {#payload}

Attributes

explicit_requirements[R]

@return [Array<Object>] the explicit requirements that required

this vertex
incoming_edges[RW]

@return [Array<Edge>] the edges of {#graph} that have `self` as their

{Edge#destination}
name[RW]

@return [String] the name of the vertex

outgoing_edges[RW]

@return [Array<Edge>] the edges of {#graph} that have `self` as their

{Edge#origin}
payload[RW]

@return [Object] the payload the vertex holds

root[RW]

@return [Boolean] whether the vertex is considered a root vertex

root?[RW]

@return [Boolean] whether the vertex is considered a root vertex

Public Class Methods

new(name, payload) click to toggle source

Initializes a vertex with the given name and payload. @param [String] name see {#name} @param [Object] payload see {#payload}

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 25
def initialize(name, payload)
  @name = name.frozen? ? name : name.dup.freeze
  @payload = payload
  @explicit_requirements = []
  @outgoing_edges = []
  @incoming_edges = []
end
            

Public Instance Methods

==(other) click to toggle source

@return [Boolean] whether the two vertices are equal, determined

by a recursive traversal of each {Vertex#successors}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 106
def ==(other)
  return true if equal?(other)
  shallow_eql?(other) &&
    successors.to_set == other.successors.to_set
end
            
Also aliased as: eql?
ancestor?(other) click to toggle source

Is there a path from `other` to `self` following edges in the dependency graph? @return whether there is a path following edges within this {#graph}

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 151
def ancestor?(other)
  other.path_to?(self)
end
            
Also aliased as: is_reachable_from?
descendent?(other) click to toggle source
Alias for: path_to?
eql?(other) click to toggle source
Alias for: ==
hash() click to toggle source

@return [Fixnum] a hash for the vertex based upon its {#name}

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 125
def hash
  name.hash
end
            
inspect() click to toggle source

@return [String] a string suitable for debugging

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 100
def inspect
  "#{self.class}:#{name}(#{payload.inspect})"
end
            
is_reachable_from?(other) click to toggle source
Alias for: ancestor?
path_to?(other) click to toggle source

Is there a path from `self` to `other` following edges in the dependency graph? @return whether there is a path following edges within this {#graph}

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 132
def path_to?(other)
  _path_to?(other)
end
            
Also aliased as: descendent?
predecessors() click to toggle source

@return [Array<Vertex>] the vertices of {#graph} that have an edge with

`self` as their {Edge#destination}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 49
def predecessors
  incoming_edges.map(&:origin)
end
            
recursive_predecessors() click to toggle source

@return [Set<Vertex>] the vertices of {#graph} where `self` is a

{#descendent?}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 55
def recursive_predecessors
  _recursive_predecessors
end
            
recursive_successors() click to toggle source

@return [Set<Vertex>] the vertices of {#graph} where `self` is an

{#ancestor?}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 81
def recursive_successors
  _recursive_successors
end
            
requirements() click to toggle source

@return [Array<Object>] all of the requirements that required

this vertex
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 35
def requirements
  (incoming_edges.map(&:requirement) + explicit_requirements).uniq
end
            
shallow_eql?(other) click to toggle source

@param [Vertex] other the other vertex to compare to @return [Boolean] whether the two vertices are equal, determined

solely by {#name} and {#payload} equality
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 115
def shallow_eql?(other)
  return true if equal?(other)
  other &&
    name == other.name &&
    payload == other.payload
end
            
successors() click to toggle source

@return [Array<Vertex>] the vertices of {#graph} that have an edge with

`self` as their {Edge#origin}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 75
def successors
  outgoing_edges.map(&:destination)
end
            

Protected Instance Methods

_path_to?(other, visited = new_vertex_set) click to toggle source

@param [Vertex] other the vertex to check if there's a path to @param [Set<Vertex>] visited the vertices of {#graph} that have been visited @return [Boolean] whether there is a path to `other` from `self`

 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 141
def _path_to?(other, visited = new_vertex_set)
  return false unless visited.add?(self)
  return true if equal?(other)
  successors.any? { |v| v._path_to?(other, visited) }
end
            
_recursive_predecessors(vertices = new_vertex_set) click to toggle source

@param [Set<Vertex>] vertices the set to add the predecessors to @return [Set<Vertex>] the vertices of {#graph} where `self` is a

{#descendent?}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 62
def _recursive_predecessors(vertices = new_vertex_set)
  incoming_edges.each do |edge|
    vertex = edge.origin
    next unless vertices.add?(vertex)
    vertex._recursive_predecessors(vertices)
  end

  vertices
end
            
_recursive_successors(vertices = new_vertex_set) click to toggle source

@param [Set<Vertex>] vertices the set to add the successors to @return [Set<Vertex>] the vertices of {#graph} where `self` is an

{#ancestor?}
 
               # File bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb, line 88
def _recursive_successors(vertices = new_vertex_set)
  outgoing_edges.each do |edge|
    vertex = edge.destination
    next unless vertices.add?(vertex)
    vertex._recursive_successors(vertices)
  end

  vertices
end