1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/models/libvirt/pools.rb

61 lines
1.5 KiB
Ruby
Raw Normal View History

require 'fog/core/collection'
require 'fog/compute/models/libvirt/pool'
module Fog
module Compute
class Libvirt
class Pools < Fog::Collection
model Fog::Compute::Libvirt::Pool
def all(filter=nil)
data=[]
if filter.nil?
connection.list_storage_pools.each do |poolname|
pool=connection.lookup_storage_pool_by_name(poolname)
data << { :raw => pool }
end
connection.list_defined_storage_pools.each do |poolname|
data << {
:raw => connection.lookup_storage_pool_by_name(poolname)
}
end
else
pool=nil
begin
pool=get_by_uuid(filter[:uuid]) if filter.has_key?(:uuid)
pool=get_by_name(filter[:name]) if filter.has_key?(:name)
rescue ::Libvirt::RetrieveError
return nil
end
data << { :raw => pool}
end
load(data)
end
def get(uuid)
self.all(:uuid => uuid).first
end
private
# Retrieve the pool by uuid
def get_by_uuid(uuid)
pool=connection.lookup_storage_pool_by_uuid(uuid)
return pool
end
# Retrieve the pool by name
def get_by_name(name)
pool=connection.lookup_storage_pool_by_name(name)
return pool
# new(:raw => pool)
end
end #class
end #Class
end #module
end #module