2013-10-17 20:41:36 -04:00
|
|
|
##
|
|
|
|
# A set of gems for installation sourced from remote sources and local .gem
|
|
|
|
# files
|
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
class Gem::Resolver::InstallerSet < Gem::Resolver::Set
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# List of Gem::Specification objects that must always be installed.
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
attr_reader :always_install # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Only install gems in the always_install list
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
attr_accessor :ignore_dependencies # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Do not look in the installed set when finding specifications. This is
|
|
|
|
# used by the --install-dir option to `gem install`
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
attr_accessor :ignore_installed # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
def initialize domain
|
|
|
|
@domain = domain
|
|
|
|
|
|
|
|
@f = Gem::SpecFetcher.fetcher
|
|
|
|
|
|
|
|
@all = Hash.new { |h,k| h[k] = [] }
|
|
|
|
@always_install = []
|
|
|
|
@ignore_dependencies = false
|
|
|
|
@ignore_installed = false
|
|
|
|
@loaded_remote_specs = []
|
|
|
|
@specs = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Should local gems should be considered?
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
def consider_local? # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
@domain == :both or @domain == :local
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Should remote gems should be considered?
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
def consider_remote? # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
@domain == :both or @domain == :remote
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Returns an array of IndexSpecification objects matching DependencyRequest
|
|
|
|
# +req+.
|
|
|
|
|
|
|
|
def find_all req
|
|
|
|
res = []
|
|
|
|
|
|
|
|
dep = req.dependency
|
|
|
|
|
|
|
|
return res if @ignore_dependencies and
|
|
|
|
@always_install.none? { |spec| dep.matches_spec? spec }
|
|
|
|
|
|
|
|
name = dep.name
|
|
|
|
|
|
|
|
dep.matching_specs.each do |gemspec|
|
|
|
|
next if @always_install.include? gemspec
|
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
res << Gem::Resolver::InstalledSpecification.new(self, gemspec)
|
2013-07-09 19:21:36 -04:00
|
|
|
end unless @ignore_installed
|
|
|
|
|
|
|
|
if consider_local? then
|
|
|
|
local_source = Gem::Source::Local.new
|
|
|
|
|
|
|
|
if spec = local_source.find_gem(name, dep.requirement) then
|
2013-11-18 19:34:13 -05:00
|
|
|
res << Gem::Resolver::IndexSpecification.new(
|
2013-07-09 19:21:36 -04:00
|
|
|
self, spec.name, spec.version, local_source, spec.platform)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if consider_remote? then
|
|
|
|
load_remote_specs dep
|
|
|
|
|
|
|
|
@all[name].each do |remote_source, n|
|
|
|
|
if dep.match? n then
|
2013-11-18 19:34:13 -05:00
|
|
|
res << Gem::Resolver::IndexSpecification.new(
|
2013-07-09 19:21:36 -04:00
|
|
|
self, n.name, n.version, remote_source, n.platform)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
res
|
|
|
|
end
|
|
|
|
|
|
|
|
def inspect # :nodoc:
|
2013-10-15 20:14:16 -04:00
|
|
|
always_install = @always_install.map { |s| s.full_name }
|
|
|
|
|
|
|
|
'#<%s domain: %s specs: %p always install: %p>' % [
|
|
|
|
self.class, @domain, @specs.keys, always_install,
|
|
|
|
]
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Loads remote prerelease specs if +dep+ is a prerelease dependency
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
def load_remote_specs dep # :nodoc:
|
2013-07-09 19:21:36 -04:00
|
|
|
types = [:released]
|
|
|
|
types << :prerelease if dep.prerelease?
|
|
|
|
|
|
|
|
types.each do |type|
|
|
|
|
next if @loaded_remote_specs.include? type
|
|
|
|
@loaded_remote_specs << type
|
|
|
|
|
|
|
|
list, = @f.available_specs type
|
|
|
|
|
|
|
|
list.each do |uri, specs|
|
|
|
|
specs.each do |n|
|
|
|
|
@all[n.name] << [uri, n]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Called from IndexSpecification to get a true Specification
|
|
|
|
# object.
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
def load_spec name, ver, platform, source # :nodoc:
|
2013-09-09 20:52:14 -04:00
|
|
|
key = "#{name}-#{ver}-#{platform}"
|
|
|
|
|
|
|
|
@specs.fetch key do
|
|
|
|
tuple = Gem::NameTuple.new name, ver, platform
|
|
|
|
|
|
|
|
@specs[key] = source.fetch_spec tuple
|
|
|
|
end
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|
|
|
|
|
2013-10-15 20:14:16 -04:00
|
|
|
def pretty_print q # :nodoc:
|
|
|
|
q.group 2, '[InstallerSet', ']' do
|
|
|
|
q.breakable
|
|
|
|
q.text "domain: #{@domain}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text 'specs: '
|
|
|
|
q.pp @specs.keys
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text 'always install: '
|
|
|
|
q.pp @always_install
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|
|
|
|
|