Class: Bundler::Resolver
- Inherits:
-
Object
- Object
- Bundler::Resolver
- Includes:
- Molinillo::SpecificationProvider, Molinillo::UI
- Defined in:
- lib/bundler/resolver.rb,
lib/bundler/resolver/spec_group.rb
Defined Under Namespace
Classes: SpecGroup
Class Method Summary collapse
- .platform_sort_key(platform) ⇒ Object
-
.resolve(requirements, index, source_requirements = {}, base = [], gem_version_promoter = GemVersionPromoter.new, additional_base_requirements = [], platforms = nil) ⇒ Object
Figures out the best possible configuration of gems that satisfies the list of passed dependencies and any child dependencies without causing any gem activation errors.
-
.sort_platforms(platforms) ⇒ Object
Sort platforms from most general to most specific.
Instance Method Summary collapse
- #after_resolution ⇒ Object
- #before_resolution ⇒ Object
-
#debug(depth = 0) ⇒ void
Conveys debug information to the user.
- #debug? ⇒ Boolean
- #dependencies_for(specification) ⇒ Object
- #index_for(dependency) ⇒ Object
- #indicate_progress ⇒ Object
-
#initialize(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms) ⇒ Resolver
constructor
A new instance of Resolver.
- #name_for(dependency) ⇒ Object
- #name_for_explicit_dependency_source ⇒ Object
- #name_for_locking_dependency_source ⇒ Object
- #relevant_sources_for_vertex(vertex) ⇒ Object
- #requirement_satisfied_by?(requirement, activated, spec) ⇒ Boolean
- #search_for(dependency) ⇒ Object
- #sort_dependencies(dependencies, activated, conflicts) ⇒ Object
- #start(requirements) ⇒ Object
Methods included from Molinillo::SpecificationProvider
Methods included from Molinillo::UI
Constructor Details
#initialize(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms) ⇒ Resolver
Returns a new instance of Resolver.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/bundler/resolver.rb', line 26 def initialize(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms) @index = index @source_requirements = source_requirements @base = base @resolver = Molinillo::Resolver.new(self, self) @search_for = {} @base_dg = Molinillo::DependencyGraph.new @base.each do |ls| dep = Dependency.new(ls.name, ls.version) @base_dg.add_vertex(ls.name, DepProxy.new(dep, ls.platform), true) end additional_base_requirements.each {|d| @base_dg.add_vertex(d.name, d) } @platforms = platforms @gem_version_promoter = gem_version_promoter @allow_bundler_dependency_conflicts = Bundler.feature_flag.allow_bundler_dependency_conflicts? @use_gvp = Bundler.feature_flag.use_gem_version_promoter_for_major_updates? || !@gem_version_promoter.major? @lockfile_uses_separate_rubygems_sources = Bundler.feature_flag.disable_multisource? end |
Class Method Details
.platform_sort_key(platform) ⇒ Object
247 248 249 250 251 |
# File 'lib/bundler/resolver.rb', line 247 def self.platform_sort_key(platform) # Prefer specific platform to not specific platform return ["99-LAST", "", "", ""] if Gem::Platform::RUBY == platform ["00", *platform.to_a.map {|part| part || "" }] end |
.resolve(requirements, index, source_requirements = {}, base = [], gem_version_promoter = GemVersionPromoter.new, additional_base_requirements = [], platforms = nil) ⇒ Object
Figures out the best possible configuration of gems that satisfies the list of passed dependencies and any child dependencies without causing any gem activation errors.
Parameters
- *dependencies<Gem::Dependency>
-
The list of dependencies to resolve
Returns
- <GemBundle>,nil
-
If the list of dependencies can be resolved, a
collection of gemspecs is returned. Otherwise, nil is returned.
18 19 20 21 22 23 24 |
# File 'lib/bundler/resolver.rb', line 18 def self.resolve(requirements, index, source_requirements = {}, base = [], gem_version_promoter = GemVersionPromoter.new, additional_base_requirements = [], platforms = nil) platforms = Set.new(platforms) if platforms base = SpecSet.new(base) unless base.is_a?(SpecSet) resolver = new(index, source_requirements, base, gem_version_promoter, additional_base_requirements, platforms) result = resolver.start(requirements) SpecSet.new(result) end |
.sort_platforms(platforms) ⇒ Object
Sort platforms from most general to most specific
241 242 243 244 245 |
# File 'lib/bundler/resolver.rb', line 241 def self.sort_platforms(platforms) platforms.sort_by do |platform| platform_sort_key(platform) end end |
Instance Method Details
#after_resolution ⇒ Object
95 96 97 |
# File 'lib/bundler/resolver.rb', line 95 def after_resolution Bundler.ui.info "" end |
#before_resolution ⇒ Object
91 92 93 |
# File 'lib/bundler/resolver.rb', line 91 def before_resolution Bundler.ui.info "Resolving dependencies...", debug? end |
#debug(depth = 0) ⇒ void
This method returns an undefined value.
Conveys debug information to the user.
74 75 76 77 78 79 |
# File 'lib/bundler/resolver.rb', line 74 def debug(depth = 0) return unless debug? debug_info = yield debug_info = debug_info.inspect unless debug_info.is_a?(String) warn debug_info.split("\n").map {|s| "BUNDLER: " + " " * depth + s } end |
#debug? ⇒ Boolean
81 82 83 84 85 86 87 88 89 |
# File 'lib/bundler/resolver.rb', line 81 def debug? return @debug_mode if defined?(@debug_mode) @debug_mode = ENV["BUNDLER_DEBUG_RESOLVER"] || ENV["BUNDLER_DEBUG_RESOLVER_TREE"] || ENV["DEBUG_RESOLVER"] || ENV["DEBUG_RESOLVER_TREE"] || false end |
#dependencies_for(specification) ⇒ Object
105 106 107 |
# File 'lib/bundler/resolver.rb', line 105 def dependencies_for(specification) specification.dependencies_for_activated_platforms end |
#index_for(dependency) ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/bundler/resolver.rb', line 176 def index_for(dependency) source = @source_requirements[dependency.name] if source source.specs elsif @lockfile_uses_separate_rubygems_sources Index.build do |idx| if dependency.all_sources dependency.all_sources.each {|s| idx.add_source(s.specs) if s } else idx.add_source @source_requirements[:default].specs end end else @index end end |
#indicate_progress ⇒ Object
99 100 101 |
# File 'lib/bundler/resolver.rb', line 99 def indicate_progress Bundler.ui.info ".", false unless debug? end |
#name_for(dependency) ⇒ Object
193 194 195 |
# File 'lib/bundler/resolver.rb', line 193 def name_for(dependency) dependency.name end |
#name_for_explicit_dependency_source ⇒ Object
197 198 199 200 201 |
# File 'lib/bundler/resolver.rb', line 197 def name_for_explicit_dependency_source Bundler.default_gemfile.basename.to_s rescue StandardError "Gemfile" end |
#name_for_locking_dependency_source ⇒ Object
203 204 205 206 207 |
# File 'lib/bundler/resolver.rb', line 203 def name_for_locking_dependency_source Bundler.default_lockfile.basename.to_s rescue StandardError "Gemfile.lock" end |
#relevant_sources_for_vertex(vertex) ⇒ Object
213 214 215 216 217 218 219 220 221 |
# File 'lib/bundler/resolver.rb', line 213 def relevant_sources_for_vertex(vertex) if vertex.root? [@source_requirements[vertex.name]] elsif @lockfile_uses_separate_rubygems_sources vertex.recursive_predecessors.map do |v| @source_requirements[v.name] end << @source_requirements[:default] end end |
#requirement_satisfied_by?(requirement, activated, spec) ⇒ Boolean
209 210 211 |
# File 'lib/bundler/resolver.rb', line 209 def requirement_satisfied_by?(requirement, activated, spec) requirement.matches_spec?(spec) || spec.source.is_a?(Source::Gemspec) end |
#search_for(dependency) ⇒ Object
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/bundler/resolver.rb', line 109 def search_for(dependency) platform = dependency.__platform dependency = dependency.dep unless dependency.is_a? Gem::Dependency search = @search_for[dependency] ||= begin index = index_for(dependency) results = index.search(dependency, @base[dependency.name]) if vertex = @base_dg.vertex_named(dependency.name) locked_requirement = vertex.payload.requirement end if !@prerelease_specified[dependency.name] && (!@use_gvp || locked_requirement.nil?) # Move prereleases to the beginning of the list, so they're considered # last during resolution. pre, results = results.partition {|spec| spec.version.prerelease? } results = pre + results end spec_groups = if results.any? nested = [] results.each do |spec| version, specs = nested.last if version == spec.version specs << spec else nested << [spec.version, [spec]] end end nested.reduce([]) do |groups, (version, specs)| next groups if locked_requirement && !locked_requirement.satisfied_by?(version) spec_group = SpecGroup.new(specs) spec_group.ignores_bundler_dependencies = @allow_bundler_dependency_conflicts groups << spec_group end else [] end # GVP handles major itself, but it's still a bit risky to trust it with it # until we get it settled with new behavior. For 2.x it can take over all cases. if !@use_gvp spec_groups else @gem_version_promoter.sort_versions(dependency, spec_groups) end end selected_sgs = [] search.each do |sg| next unless sg.for?(platform) # Add a spec group for "non platform specific spec" as the fallback # spec group. sg_ruby = sg.copy_for(Gem::Platform::RUBY) selected_sgs << sg_ruby if sg_ruby sg_all_platforms = nil all_platforms = @platforms + [platform] sorted_all_platforms = self.class.sort_platforms(all_platforms) sorted_all_platforms.reverse_each do |other_platform| if sg_all_platforms.nil? sg_all_platforms = sg.copy_for(other_platform) else sg_all_platforms.activate_platform!(other_platform) end end selected_sgs << sg_all_platforms end selected_sgs end |
#sort_dependencies(dependencies, activated, conflicts) ⇒ Object
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
# File 'lib/bundler/resolver.rb', line 223 def sort_dependencies(dependencies, activated, conflicts) dependencies.sort_by do |dependency| dependency.all_sources = relevant_sources_for_vertex(activated.vertex_named(dependency.name)) name = name_for(dependency) vertex = activated.vertex_named(name) [ @base_dg.vertex_named(name) ? 0 : 1, vertex.payload ? 0 : 1, vertex.root? ? 0 : 1, amount_constrained(dependency), conflicts[name] ? 0 : 1, vertex.payload ? 0 : search_for(dependency).count, self.class.platform_sort_key(dependency.__platform), ] end end |
#start(requirements) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/bundler/resolver.rb', line 45 def start(requirements) @gem_version_promoter.prerelease_specified = @prerelease_specified = {} requirements.each {|dep| @prerelease_specified[dep.name] ||= dep.prerelease? } verify_gemfile_dependencies_are_found!(requirements) dg = @resolver.resolve(requirements, @base_dg) dg. tap {|resolved| validate_resolved_specs!(resolved) }. map(&:payload). reject {|sg| sg.name.end_with?("\0") }. map(&:to_specs). flatten rescue Molinillo::VersionConflict => e = (e) raise VersionConflict.new(e.conflicts.keys.uniq, ) rescue Molinillo::CircularDependencyError => e names = e.dependencies.sort_by(&:name).map {|d| "gem '#{d.name}'" } raise CyclicDependencyError, "Your bundle requires gems that depend" \ " on each other, creating an infinite loop. Please remove" \ " #{names.count > 1 ? "either " : ""}#{names.join(" or ")}" \ " and try again." end |