brew/Library/Homebrew/dependency.rb

144 lines
3.3 KiB
Ruby
Raw Normal View History

require 'dependable'
# A dependency on another Homebrew formula.
class Dependency
include Dependable
attr_reader :name, :tags, :env_proc, :option_name
DEFAULT_ENV_PROC = proc {}
def initialize(name, tags=[], env_proc=DEFAULT_ENV_PROC, option_name=name)
@name = name
@tags = tags
@env_proc = env_proc
@option_name = option_name
end
def to_s
name
end
def ==(other)
instance_of?(other.class) && name == other.name
end
2013-11-05 16:02:26 -06:00
alias_method :eql?, :==
def hash
name.hash
end
def to_formula
formula = Formulary.factory(name)
formula.build = BuildOptions.new(options, formula.options)
formula
end
def installed?
to_formula.installed?
end
def satisfied?(inherited_options)
installed? && missing_options(inherited_options).empty?
end
def missing_options(inherited_options=[])
missing = options | inherited_options
missing -= Tab.for_formula(to_formula).used_options
missing
end
def modify_build_environment
env_proc.call unless env_proc.nil?
end
2013-06-07 20:36:13 -05:00
def inspect
"#<#{self.class.name}: #{name.inspect} #{tags.inspect}>"
2013-06-07 20:36:13 -05:00
end
# Define marshaling semantics because we cannot serialize @env_proc
def _dump(*)
Marshal.dump([name, tags])
end
def self._load(marshaled)
new(*Marshal.load(marshaled))
end
2013-05-10 23:45:05 -05:00
class << self
# Expand the dependencies of dependent recursively, optionally yielding
# [dependent, dep] pairs to allow callers to apply arbitrary filters to
# the list.
# The default filter, which is applied when a block is not given, omits
# optionals and recommendeds based on what the dependent has asked for.
def expand(dependent, deps=dependent.deps, &block)
expanded_deps = []
deps.each do |dep|
# FIXME don't hide cyclic dependencies
next if dependent.name == dep.name
2013-07-22 21:36:11 -05:00
case action(dependent, dep, &block)
when :prune
next
2013-07-22 21:36:11 -05:00
when :skip
expanded_deps.concat(expand(dep.to_formula, &block))
when :keep_but_prune_recursive_deps
expanded_deps << dep
2013-05-10 23:45:05 -05:00
else
expanded_deps.concat(expand(dep.to_formula, &block))
expanded_deps << dep
2013-05-10 23:45:05 -05:00
end
end
merge_repeats(expanded_deps)
2013-05-10 23:45:05 -05:00
end
2013-07-22 21:36:11 -05:00
def action(dependent, dep, &block)
catch(:action) do
if block_given?
yield dependent, dep
elsif dep.optional? || dep.recommended?
prune unless dependent.build.with?(dep)
end
end
2013-05-10 23:45:05 -05:00
end
2013-07-22 21:48:53 -05:00
# Prune a dependency and its dependencies recursively
2013-05-10 23:45:05 -05:00
def prune
2013-07-22 21:36:11 -05:00
throw(:action, :prune)
end
2013-07-22 21:48:53 -05:00
# Prune a single dependency but do not prune its dependencies
2013-07-22 21:36:11 -05:00
def skip
throw(:action, :skip)
2013-05-10 23:45:05 -05:00
end
# Keep a dependency, but prune its dependencies
def keep_but_prune_recursive_deps
throw(:action, :keep_but_prune_recursive_deps)
end
def merge_repeats(deps)
grouped = deps.group_by(&:name)
deps.uniq.map do |dep|
2013-06-25 10:12:14 -05:00
tags = grouped.fetch(dep.name).map(&:tags).flatten.uniq
dep.class.new(dep.name, tags, dep.env_proc)
end
end
end
end
2014-02-28 11:16:55 -06:00
class TapDependency < Dependency
def initialize(name, tags=[], env_proc=DEFAULT_ENV_PROC, option_name=name)
super(name, tags, env_proc, name.split("/").last)
end
def installed?
super
rescue FormulaUnavailableError
false
end
end