2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2013-07-09 19:21:36 -04:00
|
|
|
##
|
2013-11-10 12:51:40 -05:00
|
|
|
# Represents a specification retrieved via the rubygems.org API.
|
|
|
|
#
|
|
|
|
# This is used to avoid loading the full Specification object when all we need
|
|
|
|
# is the name, version, and dependencies.
|
2013-07-09 19:21:36 -04:00
|
|
|
|
2013-11-18 19:34:13 -05:00
|
|
|
class Gem::Resolver::APISpecification < Gem::Resolver::Specification
|
2020-09-10 23:00:29 -04:00
|
|
|
##
|
|
|
|
# We assume that all instances of this class are immutable;
|
|
|
|
# so avoid duplicated generation for performance.
|
|
|
|
@@cache = {}
|
|
|
|
def self.new(set, api_data)
|
|
|
|
cache_key = [set, api_data]
|
|
|
|
cache = @@cache[cache_key]
|
|
|
|
return cache if cache
|
|
|
|
@@cache[cache_key] = super
|
|
|
|
end
|
|
|
|
|
2013-11-10 12:51:40 -05:00
|
|
|
##
|
|
|
|
# Creates an APISpecification for the given +set+ from the rubygems.org
|
|
|
|
# +api_data+.
|
|
|
|
#
|
2020-01-31 21:14:04 -05:00
|
|
|
# See https://guides.rubygems.org/rubygems-org-api/#misc_methods for the
|
2013-11-10 12:51:40 -05:00
|
|
|
# format of the +api_data+.
|
2013-07-09 19:21:36 -04:00
|
|
|
|
|
|
|
def initialize(set, api_data)
|
2013-11-10 12:51:40 -05:00
|
|
|
super()
|
|
|
|
|
2013-07-09 19:21:36 -04:00
|
|
|
@set = set
|
|
|
|
@name = api_data[:name]
|
2020-09-10 23:00:29 -04:00
|
|
|
@version = Gem::Version.new(api_data[:number]).freeze
|
|
|
|
@platform = Gem::Platform.new(api_data[:platform]).freeze
|
|
|
|
@original_platform = api_data[:platform].freeze
|
2013-07-09 19:21:36 -04:00
|
|
|
@dependencies = api_data[:dependencies].map do |name, ver|
|
2020-09-10 23:00:29 -04:00
|
|
|
Gem::Dependency.new(name, ver.split(/\s*,\s*/)).freeze
|
|
|
|
end.freeze
|
2020-12-22 18:45:19 -05:00
|
|
|
@required_ruby_version = Gem::Requirement.new(api_data.dig(:requirements, :ruby)).freeze
|
|
|
|
@required_rubygems_version = Gem::Requirement.new(api_data.dig(:requirements, :rubygems)).freeze
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|
|
|
|
|
2018-11-21 05:20:47 -05:00
|
|
|
def ==(other) # :nodoc:
|
2022-08-08 22:16:07 -04:00
|
|
|
self.class === other &&
|
|
|
|
@set == other.set &&
|
|
|
|
@name == other.name &&
|
|
|
|
@version == other.version &&
|
2020-12-22 18:45:19 -05:00
|
|
|
@platform == other.platform
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|
|
|
|
|
2020-12-08 02:33:39 -05:00
|
|
|
def hash
|
2020-12-22 18:45:19 -05:00
|
|
|
@set.hash ^ @name.hash ^ @version.hash ^ @platform.hash
|
2020-12-08 02:33:39 -05:00
|
|
|
end
|
|
|
|
|
2014-09-13 23:30:02 -04:00
|
|
|
def fetch_development_dependencies # :nodoc:
|
|
|
|
spec = source.fetch_spec Gem::NameTuple.new @name, @version, @platform
|
|
|
|
|
|
|
|
@dependencies = spec.dependencies
|
|
|
|
end
|
|
|
|
|
2013-11-25 14:14:49 -05:00
|
|
|
def installable_platform? # :nodoc:
|
2020-12-08 02:33:39 -05:00
|
|
|
Gem::Platform.match_gem? @platform, @name
|
2013-11-25 14:14:49 -05:00
|
|
|
end
|
|
|
|
|
2018-11-21 05:20:47 -05:00
|
|
|
def pretty_print(q) # :nodoc:
|
2013-11-21 18:27:30 -05:00
|
|
|
q.group 2, "[APISpecification", "]" do
|
|
|
|
q.breakable
|
|
|
|
q.text "name: #{name}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "version: #{version}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "platform: #{platform}"
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "dependencies:"
|
|
|
|
q.breakable
|
|
|
|
q.pp @dependencies
|
|
|
|
|
|
|
|
q.breakable
|
|
|
|
q.text "set uri: #{@set.dep_uri}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Fetches a Gem::Specification for this APISpecification.
|
|
|
|
|
|
|
|
def spec # :nodoc:
|
|
|
|
@spec ||=
|
|
|
|
begin
|
|
|
|
tuple = Gem::NameTuple.new @name, @version, @platform
|
2018-05-30 09:01:35 -04:00
|
|
|
source.fetch_spec tuple
|
|
|
|
rescue Gem::RemoteFetcher::FetchError
|
|
|
|
raise if @original_platform == @platform
|
2013-11-21 18:27:30 -05:00
|
|
|
|
2018-05-30 09:01:35 -04:00
|
|
|
tuple = Gem::NameTuple.new @name, @version, @original_platform
|
2013-11-21 18:27:30 -05:00
|
|
|
source.fetch_spec tuple
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def source # :nodoc:
|
|
|
|
@set.source
|
|
|
|
end
|
2013-07-09 19:21:36 -04:00
|
|
|
end
|