brew/Library/Homebrew/options.rb

115 lines
1.6 KiB
Ruby
Raw Normal View History

require "set"
class Option
attr_reader :name, :description, :flag
def initialize(name, description = "")
@name = name
@flag = "--#{name}"
@description = description
end
def to_s
flag
end
def <=>(other)
2014-06-09 14:56:22 -05:00
return unless Option === other
name <=> other.name
end
2014-07-03 19:29:18 -05:00
def ==(other)
instance_of?(other.class) && name == other.name
end
2014-07-03 19:29:18 -05:00
alias_method :eql?, :==
def hash
name.hash
end
2013-05-24 10:56:02 -05:00
def inspect
"#<#{self.class.name}: #{flag.inspect}>"
2013-05-24 10:56:02 -05:00
end
end
class DeprecatedOption
attr_reader :old, :current
def initialize(old, current)
@old = old
@current = current
end
def old_flag
"--#{old}"
end
def current_flag
"--#{current}"
end
def ==(other)
instance_of?(other.class) && old == other.old && current == other.current
end
alias_method :eql?, :==
end
class Options
include Enumerable
def self.create(array)
new array.map { |e| Option.new(e[/^--([^=]+=?)(.+)?$/, 1] || e) }
end
def initialize(*args)
@options = Set.new(*args)
end
def each(*args, &block)
@options.each(*args, &block)
end
def <<(o)
@options << o
self
end
def +(o)
2014-08-13 23:45:48 -05:00
self.class.new(@options + o)
end
def -(o)
2014-08-13 23:45:48 -05:00
self.class.new(@options - o)
end
def &(o)
2014-08-13 23:45:48 -05:00
self.class.new(@options & o)
end
2014-02-27 14:22:42 -06:00
def |(o)
2014-08-13 23:45:48 -05:00
self.class.new(@options | o)
2014-02-27 14:22:42 -06:00
end
def *(arg)
@options.to_a * arg
end
def empty?
@options.empty?
end
def as_flags
map(&:flag)
end
def include?(o)
any? { |opt| opt == o || opt.name == o || opt.flag == o }
end
alias_method :to_ary, :to_a
2013-05-24 10:56:02 -05:00
def inspect
"#<#{self.class.name}: #{to_a.inspect}>"
2013-05-24 10:56:02 -05:00
end
end