2011-03-09 20:03:15 -05:00
|
|
|
module VirtualBox # deviates from other bin stuff to accomodate gem
|
|
|
|
class << self
|
|
|
|
|
|
|
|
def class_for(key)
|
|
|
|
case key
|
|
|
|
when :compute
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute::VirtualBox
|
2011-03-09 20:03:15 -05:00
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def [](service)
|
|
|
|
@@connections ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = case key
|
|
|
|
when :compute
|
2011-10-19 15:49:34 -04:00
|
|
|
Fog::Logger.warning("VirtualBox[:compute] is not recommended, use Compute[:virtualbox] for portability")
|
2011-03-09 20:03:15 -05:00
|
|
|
Fog::Compute.new(:provider => 'VirtualBox')
|
|
|
|
else
|
|
|
|
raise ArgumentError, "Unrecognized service: #{key.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@@connections[service]
|
|
|
|
end
|
|
|
|
|
|
|
|
def available?
|
2011-07-08 17:45:17 -04:00
|
|
|
availability = if Gem::Specification.respond_to?(:find_all_by_name)
|
|
|
|
!Gem::Specification.find_all_by_name('virtualbox').empty? # newest rubygems
|
|
|
|
else
|
|
|
|
!Gem.source_index.find_name('virtualbox').empty? # legacy
|
|
|
|
end
|
2011-03-09 20:03:15 -05:00
|
|
|
if availability
|
|
|
|
for service in services
|
|
|
|
for collection in self.class_for(service).collections
|
|
|
|
unless self.respond_to?(collection)
|
|
|
|
self.class_eval <<-EOS, __FILE__, __LINE__
|
|
|
|
def self.#{collection}
|
|
|
|
self[:#{service}].#{collection}
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
availability
|
|
|
|
end
|
|
|
|
|
|
|
|
def collections
|
|
|
|
services.map {|service| self[service].collections}.flatten.sort_by {|service| service.to_s}
|
|
|
|
end
|
|
|
|
|
|
|
|
def services
|
|
|
|
Fog::VirtualBox.services
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|