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/voxel/parsers/compute/voxcloud_status.rb

43 lines
1 KiB
Ruby
Raw Normal View History

2011-02-20 22:01:28 -05:00
module Fog
module Parsers
module Compute
module Voxel
2011-02-20 22:01:28 -05:00
class VoxcloudStatus < Fog::Parsers::Base
def reset
2011-02-23 18:00:56 -05:00
@response = { 'devices' => [] }
2011-02-20 22:01:28 -05:00
@device = {}
end
def start_element(name, attrs = [])
super
case name
when 'rsp'
2011-02-23 18:00:56 -05:00
@response['stat'] = attr_value('stat', attrs)
2011-02-20 22:01:28 -05:00
when 'err'
2011-02-23 18:00:56 -05:00
@response['err'] = {
'code' => attr_value('code', attrs),
'msg' => attr_value('msg', attrs)
}
2011-02-20 22:01:28 -05:00
when 'device'
@device = {}
end
end
def end_element(name)
case name
when 'device'
2011-02-23 18:00:56 -05:00
@response['devices'] << @device
2011-02-20 22:01:28 -05:00
@device = {}
2011-02-23 18:00:56 -05:00
when 'id', 'status'
@device[name] = value
2011-02-23 18:00:56 -05:00
when 'last_update'
@device[name] = Time.at(value.to_i)
2011-02-20 22:01:28 -05:00
end
end
end
end
end
end
end