2010-03-14 23:11:43 -04:00
|
|
|
require 'fog/aws/parsers/simpledb/basic'
|
|
|
|
|
2009-07-11 16:41:21 -04:00
|
|
|
module Fog
|
|
|
|
module Parsers
|
|
|
|
module AWS
|
|
|
|
module SimpleDB
|
|
|
|
|
|
|
|
class GetAttributes < Fog::Parsers::AWS::SimpleDB::Basic
|
|
|
|
|
|
|
|
def reset
|
|
|
|
@attribute = nil
|
2009-07-31 02:13:48 -04:00
|
|
|
@response = { 'Attributes' => {} }
|
2009-07-11 16:41:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def end_element(name)
|
|
|
|
case name
|
2009-07-31 02:13:48 -04:00
|
|
|
when 'Attribute'
|
|
|
|
@attribute = nil
|
|
|
|
when 'BoxUsage'
|
2011-05-12 16:15:13 -04:00
|
|
|
response[name] = value.to_f
|
2009-07-31 02:13:48 -04:00
|
|
|
when 'Name'
|
2011-05-12 16:15:13 -04:00
|
|
|
@attribute = value
|
2010-07-13 23:20:50 -04:00
|
|
|
response['Attributes'][@attribute] ||= []
|
2009-07-31 02:13:48 -04:00
|
|
|
when 'RequestId'
|
2011-05-12 16:15:13 -04:00
|
|
|
response[name] = value
|
2009-07-31 02:13:48 -04:00
|
|
|
when 'Value'
|
2011-05-12 16:15:13 -04:00
|
|
|
response['Attributes'][@attribute] << sdb_decode(value)
|
2009-07-11 16:41:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|