2010-04-16 03:20:02 -04:00
|
|
|
module Fog
|
|
|
|
module Parsers
|
|
|
|
module Terremark
|
|
|
|
module Shared
|
|
|
|
|
2013-02-12 07:52:46 -05:00
|
|
|
class Vapp < TerremarkParser
|
2010-04-16 03:20:02 -04:00
|
|
|
|
|
|
|
def reset
|
2010-05-07 13:42:27 -04:00
|
|
|
@response = { 'Links' => [], 'VirtualHardware' => {}, 'OperatingSystem' => {} }
|
2010-05-06 14:23:51 -04:00
|
|
|
@in_operating_system = false
|
|
|
|
@resource_type = nil
|
2010-04-16 03:20:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def start_element(name, attributes)
|
2010-05-05 16:39:41 -04:00
|
|
|
super
|
2010-04-16 03:20:02 -04:00
|
|
|
case name
|
|
|
|
when 'Link'
|
2013-02-12 07:52:46 -05:00
|
|
|
link = extract_attributes(attributes)
|
2010-04-16 03:20:02 -04:00
|
|
|
@response['Links'] << link
|
2010-05-06 14:23:51 -04:00
|
|
|
when 'OperatingSystemSection'
|
|
|
|
@in_operating_system = true
|
|
|
|
when 'VApp'
|
2013-02-12 07:52:46 -05:00
|
|
|
vapp = extract_attributes(attributes)
|
2010-04-16 03:20:02 -04:00
|
|
|
@response.merge!(vapp.reject {|key,value| !['href', 'name', 'size', 'status', 'type'].include?(key)})
|
2010-05-06 14:23:51 -04:00
|
|
|
end
|
2010-04-16 03:20:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def end_element(name)
|
|
|
|
case name
|
|
|
|
when 'IpAddress'
|
2011-05-12 16:15:13 -04:00
|
|
|
@response['IpAddress'] = value
|
2010-05-06 14:23:51 -04:00
|
|
|
when 'Description'
|
|
|
|
if @in_operating_system
|
2011-05-12 16:15:13 -04:00
|
|
|
@response['OperatingSystem'][name] = value
|
2010-05-06 14:23:51 -04:00
|
|
|
@in_operating_system = false
|
|
|
|
end
|
|
|
|
when 'ResourceType'
|
2011-05-12 16:15:13 -04:00
|
|
|
@resource_type = value
|
|
|
|
case value
|
2010-05-06 14:23:51 -04:00
|
|
|
when '3'
|
|
|
|
@get_cpu = true # cpu
|
|
|
|
when '4' # memory
|
|
|
|
@get_ram = true
|
|
|
|
when '17' # disks
|
|
|
|
@get_disks = true
|
|
|
|
end
|
|
|
|
when 'VirtualQuantity'
|
|
|
|
case @resource_type
|
|
|
|
when '3'
|
2011-05-12 16:15:13 -04:00
|
|
|
@response['VirtualHardware']['cpu'] = value
|
2010-05-06 14:23:51 -04:00
|
|
|
when '4'
|
2011-05-12 16:15:13 -04:00
|
|
|
@response['VirtualHardware']['ram'] = value
|
2010-05-06 14:23:51 -04:00
|
|
|
when '17'
|
|
|
|
@response['VirtualHardware']['disks'] ||= []
|
2011-05-12 16:15:13 -04:00
|
|
|
@response['VirtualHardware']['disks'] << value
|
2010-05-06 14:23:51 -04:00
|
|
|
end
|
2010-04-16 03:20:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-05-06 14:23:51 -04:00
|
|
|
|