Class: Doubleshot::Resolver::GemResolver::Solver
- Defined in:
- lib/doubleshot/resolver/gem_resolver/solver.rb,
lib/doubleshot/resolver/gem_resolver/solver/variable_row.rb,
lib/doubleshot/resolver/gem_resolver/solver/constraint_row.rb,
lib/doubleshot/resolver/gem_resolver/solver/variable_table.rb,
lib/doubleshot/resolver/gem_resolver/solver/constraint_table.rb
Defined Under Namespace
Classes: ConstraintRow, ConstraintTable, VariableRow, VariableTable
Instance Attribute Summary collapse
-
#constraint_table ⇒ Object
readonly
Returns the value of attribute constraint_table.
- #demands(*args) ⇒ Object readonly
-
#domain ⇒ Object
readonly
Returns the value of attribute domain.
-
#graph ⇒ Doubleshot::Resolver::GemResolver::Graph
readonly
The world as we know it.
-
#possible_values ⇒ Object
readonly
Returns the value of attribute possible_values.
-
#ui ⇒ Object
readonly
Returns the value of attribute ui.
-
#variable_table ⇒ Object
readonly
Returns the value of attribute variable_table.
Class Method Summary collapse
-
.demand_key(demand) ⇒ Symbol
Create a key to identify a demand on a Doubleshot::Resolver::GemResolver::Solver.
-
.satisfy_all(constraints, versions) ⇒ Array<Gem::Version>
Returns all of the versions which satisfy all of the given constraints.
-
.satisfy_best(constraints, versions) ⇒ Gem::Version
Return the best version from the given list of versions for the given list of constraints.
Instance Method Summary collapse
-
#add_demand(demand) ⇒ Doubleshot::Resolver::GemResolver::Demand
(also: #demand)
Add a Doubleshot::Resolver::GemResolver::Demand to the collection of demands and return the added Doubleshot::Resolver::GemResolver::Demand.
- #has_demand?(demand) ⇒ Boolean
-
#initialize(graph, demands = Array.new, ui = nil) ⇒ Solver
constructor
A new instance of Solver.
- #remove_demand(demand) ⇒ Object
- #resolve ⇒ Hash
Constructor Details
#initialize(graph, demands = Array.new, ui = nil) ⇒ Solver
Returns a new instance of Solver.
76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 76 def initialize(graph, demands = Array.new, ui=nil) @graph = graph @demands = Hash.new @ui = ui.respond_to?(:say) ? ui : nil @domain = Hash.new @possible_values = Hash.new @constraint_table = ConstraintTable.new @variable_table = VariableTable.new Array(demands).each do |l_demand| demands(*l_demand) end end |
Instance Attribute Details
#constraint_table ⇒ Object (readonly)
Returns the value of attribute constraint_table.
70 71 72 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 70 def constraint_table @constraint_table end |
#demands(name, constraint) ⇒ Doubleshot::Resolver::GemResolver::Demand (readonly) #demands(name) ⇒ Doubleshot::Resolver::GemResolver::Demand (readonly) #demands ⇒ Array<Doubleshot::Resolver::GemResolver::Demand> (readonly)
154 155 156 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 154 def demands @demands end |
#domain ⇒ Object (readonly)
Returns the value of attribute domain.
68 69 70 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 68 def domain @domain end |
#graph ⇒ Doubleshot::Resolver::GemResolver::Graph (readonly)
The world as we know it
64 65 66 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 64 def graph @graph end |
#possible_values ⇒ Object (readonly)
Returns the value of attribute possible_values.
71 72 73 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 71 def possible_values @possible_values end |
#ui ⇒ Object (readonly)
Returns the value of attribute ui.
66 67 68 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 66 def ui @ui end |
#variable_table ⇒ Object (readonly)
Returns the value of attribute variable_table.
69 70 71 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 69 def variable_table @variable_table end |
Class Method Details
.demand_key(demand) ⇒ Symbol
Create a key to identify a demand on a Doubleshot::Resolver::GemResolver::Solver.
18 19 20 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 18 def demand_key(demand) "#{demand.name}-#{demand.constraint}".to_sym end |
.satisfy_all(constraints, versions) ⇒ Array<Gem::Version>
Returns all of the versions which satisfy all of the given constraints
28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 28 def satisfy_all(constraints, versions) constraints = Array(constraints).collect do |con| con.is_a?(Gem::Requirement) ? con : Gem::Requirement.new(con.to_s) end.uniq versions = Array(versions).collect do |ver| ver.is_a?(Gem::Version) ? ver : Gem::Version.new(ver.to_s) end.uniq versions.select do |ver| constraints.all? { |constraint| constraint.satisfied_by?(ver) } end end |
.satisfy_best(constraints, versions) ⇒ Gem::Version
Return the best version from the given list of versions for the given list of constraints
50 51 52 53 54 55 56 57 58 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 50 def satisfy_best(constraints, versions) solution = satisfy_all(constraints, versions) if solution.empty? raise Errors::NoSolutionError end solution.sort.last end |
Instance Method Details
#add_demand(demand) ⇒ Doubleshot::Resolver::GemResolver::Demand Also known as: demand
Add a Doubleshot::Resolver::GemResolver::Demand to the collection of demands and return the added Doubleshot::Resolver::GemResolver::Demand. No change will be made if the demand is already a member of the collection.
180 181 182 183 184 185 186 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 180 def add_demand(demand) unless has_demand?(demand) @demands[self.class.demand_key(demand)] = demand end demand end |
#has_demand?(demand) ⇒ Boolean
199 200 201 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 199 def has_demand?(demand) @demands.has_key?(self.class.demand_key(demand)) end |
#remove_demand(demand) ⇒ Object
190 191 192 193 194 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 190 def remove_demand(demand) if has_demand?(demand) @demands.delete(self.class.demand_key(demand)) end end |
#resolve ⇒ Hash
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/doubleshot/resolver/gem_resolver/solver.rb', line 92 def resolve trace("Attempting to find a solution") seed_demand_dependencies while unbound_variable = variable_table.first_unbound possible_values_for_unbound = possible_values_for(unbound_variable) trace("Searching for a value for #{unbound_variable.artifact}") trace("Constraints are") constraint_table.constraints_on_artifact(unbound_variable.artifact).each do |constraint| trace("\t#{constraint}") end trace("Possible values are #{possible_values_for_unbound}") while possible_value = possible_values_for_unbound.shift possible_artifact = graph.get_artifact(unbound_variable.artifact, possible_value.version) possible_dependencies = possible_artifact.dependencies all_ok = possible_dependencies.all? { |dependency| can_add_new_constraint?(dependency) } if all_ok trace("Attempting to use #{possible_artifact}") add_dependencies(possible_dependencies, possible_artifact) unbound_variable.bind(possible_value) break end end unless unbound_variable.bound? trace("Could not find an acceptable value for #{unbound_variable.artifact}") backtrack(unbound_variable) end end solution = {}.tap do |solution| variable_table.rows.each do |variable| solution[variable.artifact] = variable.value.version.to_s end end trace("Found Solution") trace(solution) solution end |