124 lines
2.9 KiB
Ruby
Raw Normal View History

require 'ostruct'
require 'options'
require 'utils/json'
# Inherit from OpenStruct to gain a generic initialization method that takes a
# hash and creates an attribute for each key and value. `Tab.new` probably
# should not be called directly, instead use one of the class methods like
2013-01-23 00:26:20 -06:00
# `Tab.create`.
class Tab < OpenStruct
2013-01-23 00:26:20 -06:00
FILENAME = 'INSTALL_RECEIPT.json'
def self.create f, args
f.build.args = args
2013-01-23 00:26:20 -06:00
sha = HOMEBREW_REPOSITORY.cd do
`git rev-parse --verify -q HEAD 2>/dev/null`.chuzzle
end
Tab.new :used_options => f.build.used_options,
:unused_options => f.build.unused_options,
2013-01-23 00:26:20 -06:00
:tabfile => f.prefix.join(FILENAME),
:built_as_bottle => !!ARGV.build_bottle?,
:poured_from_bottle => false,
:tapped_from => f.tap,
:time => Time.now.to_i, # to_s would be better but Ruby has no from_s function :P
:HEAD => sha
end
def self.from_file path
tab = Tab.new Utils::JSON.load(open(path).read)
tab.tabfile = path
2013-01-23 00:26:20 -06:00
tab
end
def self.for_keg keg
2013-01-23 00:26:20 -06:00
path = keg.join(FILENAME)
if path.exist?
2013-01-23 00:26:20 -06:00
self.from_file(path)
else
2013-01-23 00:26:20 -06:00
self.dummy_tab
end
end
def self.for_name name
for_formula(Formula.factory(name))
end
def self.for_formula f
2013-01-23 00:26:20 -06:00
path = [f.opt_prefix, f.linked_keg].map{ |pn| pn.join(FILENAME) }.find{ |pn| pn.exist? }
# Legacy kegs may lack a receipt. If it doesn't exist, fake one
if path.nil? then self.dummy_tab(f) else self.from_file(path) end
end
2013-01-23 00:26:20 -06:00
def self.dummy_tab f=nil
Tab.new :used_options => [],
2013-01-23 00:26:20 -06:00
:unused_options => (f.build.as_flags rescue []),
:built_as_bottle => false,
:poured_from_bottle => false,
:tapped_from => "",
:time => nil,
:HEAD => nil
end
def with? name
if options.include? "with-#{name}"
used_options.include? "with-#{name}"
elsif options.include? "without-#{name}"
not used_options.include? "without-#{name}"
else
false
end
end
def include? opt
used_options.include? opt
end
def universal?
used_options.include? "universal"
end
def used_options
Options.coerce(super)
end
def unused_options
Options.coerce(super)
end
def options
used_options + unused_options
end
def to_json
Utils::JSON.dump({
2013-06-22 16:51:09 -05:00
:used_options => used_options.map(&:to_s),
:unused_options => unused_options.map(&:to_s),
:built_as_bottle => built_as_bottle,
:poured_from_bottle => poured_from_bottle,
:tapped_from => tapped_from,
:time => time,
:HEAD => send("HEAD")})
end
def write
tabfile.write to_json
end
def to_s
s = []
case poured_from_bottle
when true then s << "Poured from bottle"
when false then s << "Built from source"
end
unless used_options.empty?
s << "Installed" if s.empty?
s << "with:"
s << used_options.to_a.join(", ")
end
s.join(" ")
end
end