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
Patrick Debois a0dc3f2aa1 - Get all pools now by name or by uuid
- Create pool by providing xml
- Destroy pool
2011-08-01 14:00:13 +02:00

52 lines
1.3 KiB
Ruby

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
data=[]
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
load(data)
end
# Retrieve the pool by type
def get(param)
pool=nil
pool=get_by_uuid(param[:uuid]) if param.has_key?(:uuid)
pool=get_by_name(param[:name]) if param.has_key?(:name)
return pool
end
# Retrieve the pool by uuid
def get_by_uuid(uuid)
pool=connection.lookup_storage_pool_by_uuid(uuid)
new(:raw => pool)
end
# Retrieve the pool by name
def get_by_name(name)
pool=connection.lookup_storage_pool_by_name(name)
new(:raw => pool)
end
end #class
end #Class
end #module
end #module