1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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
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
175
176
177
|
module Bundler
class Index
include Enumerable
def self.build
i = new
yield i
i
end
attr_reader :specs, :sources
protected :specs
def initialize
@sources = []
@cache = {}
@specs = Hash.new { |h,k| h[k] = [] }
end
def initialize_copy(o)
super
@sources = @sources.dup
@cache = {}
@specs = Hash.new { |h,k| h[k] = [] }
o.specs.each do |name, array|
@specs[name] = array.dup
end
end
def inspect
"<Index sources=#{sources.map{|s| s.inspect}} specs.size=#{specs.size}>"
end
def empty?
each { return false }
true
end
# Search this index's specs, and any source indexes that this index knows
# about, returning all of the results.
def search(query, base = nil)
results = local_search(query, base)
@sources.each do |source|
results += source.search(query, base)
end
results
end
def local_search(query, base = nil)
case query
when Gem::Specification, RemoteSpecification, LazySpecification, EndpointSpecification then search_by_spec(query)
when String then specs_by_name(query)
when Gem::Dependency then search_by_dependency(query, base)
else
raise "You can't search for a #{query.inspect}."
end
end
def source_types
sources.map{|s| s.class }.uniq
end
alias [] search
def <<(spec)
arr = specs_by_name(spec.name)
arr.delete_if do |s|
same_version?(s.version, spec.version) && s.platform == spec.platform
end
arr << spec
spec
end
def each(&blk)
specs.values.each do |specs|
specs.each(&blk)
end
end
# returns a list of the dependencies
def unmet_dependency_names
dependency_names = specs.values.map do |array_of_s|
array_of_s.map do |s|
s.dependencies.map{|d| d.name }
end
end.flatten.uniq
dependency_names.select{|name| specs_by_name(name).empty? }
end
def use(other, override_dupes = false)
return unless other
other.each do |s|
if (dupes = search_by_spec(s)) && dupes.any?
next unless override_dupes
@specs[s.name] -= dupes
end
@specs[s.name] << s
end
self
end
def size
@sources.inject(@specs.size) do |size, source|
size += source.size
end
end
def ==(o)
all? do |s|
s2 = o[s].first and (s.dependencies & s2.dependencies).empty?
end
end
def add_source(index)
if index.is_a?(Index)
@sources << index
@sources.uniq! # need to use uniq! here instead of checking for the item before adding
else
raise ArgumentError, "Source must be an index, not #{index.class}"
end
end
private
def specs_by_name(name)
@specs[name]
end
def search_by_dependency(dependency, base = nil)
@cache[dependency.hash] ||= begin
specs = specs_by_name(dependency.name) + (base || [])
found = specs.select do |spec|
if base # allow all platforms when searching from a lockfile
dependency.matches_spec?(spec)
else
dependency.matches_spec?(spec) && Gem::Platform.match(spec.platform)
end
end
wants_prerelease = dependency.requirement.prerelease?
only_prerelease = specs.all? {|spec| spec.version.prerelease? }
unless wants_prerelease || only_prerelease
found.reject! { |spec| spec.version.prerelease? }
end
found.sort_by {|s| [s.version, s.platform.to_s == 'ruby' ? "\0" : s.platform.to_s] }
end
end
def search_by_spec(spec)
specs_by_name(spec.name).select do |s|
same_version?(s.version, spec.version) && Gem::Platform.new(s.platform) == Gem::Platform.new(spec.platform)
end
end
if RUBY_VERSION < '1.9'
def same_version?(a, b)
regex = /^(.*?)(?:\.0)*$/
a.to_s[regex, 1] == b.to_s[regex, 1]
end
else
def same_version?(a, b)
a == b
end
end
def spec_satisfies_dependency?(spec, dep)
return false unless dep.name === spec.name
dep.requirement.satisfied_by?(spec.version)
end
end
end
|