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/xenserver/models/compute/server.rb
Sergio Rubio b917ffc5db * Added more tests and extended existing ones
* Added missing exceptions NotFound and RequestFailed
* connection.request now raises exception if request failed
* refactored most get_* request into get_record and get_records
* Compute.default_template more robust
* Base parser now replaces OpaqueRef:NULL with nil
* create_server request fixes
2012-04-04 09:01:55 +02:00

164 lines
4.1 KiB
Ruby

require 'fog/compute/models/server'
module Fog
module Compute
class XenServer
class Server < Fog::Compute::Server
# API Reference here:
# http://docs.vmd.citrix.com/XenServer/5.6.0/1.0/en_gb/api/?c=VM
identity :reference
attribute :uuid
attribute :name, :aliases => :name_label
attribute :affinity
attribute :allowed_operations
attribute :consoles
attribute :domarch
attribute :domid
attribute :__guest_metrics, :aliases => :guest_metrics
attribute :is_a_snapshot
attribute :is_a_template
attribute :is_control_domain
attribute :memory_dynamic_max
attribute :memory_dynamic_min
attribute :memory_static_max
attribute :memory_static_min
attribute :memory_target
attribute :metrics
attribute :name_description
attribute :other_config
attribute :power_state
attribute :pv_args, :aliases => :PV_args
attribute :__resident_on, :aliases => :resident_on
# Virtual Block Devices
attribute :__vbds, :aliases => :VBDs
# Virtual CPUs
attribute :vcpus_at_startup, :aliases => :VCPUs_at_startup
attribute :vcpus_max, :aliases => :VCPUs_max
# Virtual Interfaces (NIC)
attribute :__vifs, :aliases => :VIFs
attribute :template_name
def initialize(attributes={})
super
end
def vbds
__vbds.collect {|vbd| connection.vbds.get vbd }
end
def destroy
stop('hard') if running?
vbds.each do |vbd|
connection.destroy_vdi( vbd.vdi.reference ) if vbd.type == "Disk"
end
connection.destroy_server( reference )
true
end
def refresh
data = connection.get_record( reference, 'VM' )
merge_attributes( data )
true
end
def vifs
networks
end
# associations
def networks
__vifs.collect { |vif| vifs.get vif }
end
def resident_on
connection.hosts.get __resident_on
end
#
# This is not always present in XenServer VMs
# Guest needs XenTools installed to report this AFAIK
def guest_metrics
begin
rec = connection.get_record( __guest_metrics, 'VM_guest_metrics' )
Fog::Compute::XenServer::GuestMetrics.new(rec)
rescue Fog::XenServer::RequestFailed
nil
end
end
def tools_installed?
!guest_metrics.nil?
end
def home_hypervisor
connection.hosts.first
end
def mac_address
networks.first.MAC
end
def running?
power_state =~ /Running/
end
def halted?
power_state =~ /Halted/
end
# operations
def start
return false if running?
connection.start_server( reference )
true
end
def save(params = {})
requires :name
new_vm = connection.create_server( name, template_name, nil)
merge_attributes(new_vm.attributes)
true
end
def reboot(stype = 'clean')
connection.reboot_server(reference, stype)
true
end
def hard_reboot
reboot 'hard'
end
def clean_reboot
reboot 'clean'
end
def stop(stype = 'clean')
return false if !running?
connection.shutdown_server( reference, stype )
wait_for { !running? }
true
end
def hard_shutdown
stop 'hard'
end
def clean_shutdown
stop 'clean'
end
# def snapshot
# requires :reference, :name_label
# data = connection.snapshot_server(@reference, @name_label)
# merge_attributes(data.body)
# true
# end
end
end
end
end