Sha256: c8a925b738150b998eea5450567a710be41f0176a82330b13b454eead1bc4584
Contents?: true
Size: 1.78 KB
Versions: 29
Compression:
Stored size: 1.78 KB
Contents
module PodPrebuild class CacheValidationResult attr_reader :hit, :missed_with_reasons def initialize(missed_with_reasons = {}, hit = Set.new) @missed_with_reasons = missed_with_reasons @hit = hit.to_set - missed_with_reasons.keys end def all (hit + missed).to_set end def missed @missed_with_reasons.keys.to_set end def missed?(name) @missed_with_reasons.key?(name) end def hit?(name) @hit.include?(name) end def include?(name) missed?(name) || hit?(name) end def merge(other) PodPrebuild::CacheValidationResult.new( @missed_with_reasons.merge(other.missed_with_reasons), @hit + other.hit ) end def update_to(path) FileUtils.mkdir_p(File.dirname(path)) json_file = PodPrebuild::JSONFile.new(path) json_file["cache_missed"] = missed.to_a json_file["cache_hit"] = hit.to_a json_file.save! end def keep(names) base_names = names.map { |name| name.split("/")[0] }.to_set select { |name| base_names.include?(name.split("/")[0]) } end def discard(names) base_names = names.map { |name| name.split("/")[0] }.to_set reject { |name| base_names.include?(name.split("/")[0]) } end def select(&predicate) PodPrebuild::CacheValidationResult.new( @missed_with_reasons.select { |name, _| predicate.call(name) }, @hit.select(&predicate) ) end def reject(&predicate) select { |name| !predicate.call(name) } end def print_summary Pod::UI.puts "Cache validation: hit (#{@hit.count}) #{@hit.to_a}" @missed_with_reasons.each do |name, reason| Pod::UI.puts "Cache validation: missed #{name}. Reason: #{reason}".yellow end end end end
Version data entries
29 entries across 29 versions & 4 rubygems