class Fog::Parsers::AWS::Storage::ListObjectsV2
Public Class Methods
new()
click to toggle source
Initialize parser state
Calls superclass method
# File lib/fog/aws/parsers/storage/list_objects_v2.rb, line 7 def initialize super @common_prefix = {} @object = { 'Owner' => {} } reset end
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/storage/list_objects_v2.rb, line 27 def end_element(name) case name when 'CommonPrefixes' @in_common_prefixes = false when 'Contents' @response['Contents'] << @object @object = { 'Owner' => {} } when 'DisplayName', 'ID' @object['Owner'][name] = value when 'ETag' @object[name] = value.gsub('"', '') if value != nil when 'IsTruncated' if value == 'true' @response['IsTruncated'] = true else @response['IsTruncated'] = false end when 'LastModified' @object['LastModified'] = Time.parse(value) when 'ContinuationToken', 'NextContinuationToken', 'Name', 'StartAfter' @response[name] = value when 'MaxKeys', 'KeyCount' @response[name] = value.to_i when 'Prefix' if @in_common_prefixes @response['CommonPrefixes'] << value else @response[name] = value end when 'Size' @object['Size'] = value.to_i when 'Delimiter', 'Key', 'StorageClass' @object[name] = value end end
reset()
click to toggle source
# File lib/fog/aws/parsers/storage/list_objects_v2.rb, line 14 def reset @object = { 'Owner' => {} } @response = { 'Contents' => [], 'CommonPrefixes' => [] } end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/storage/list_objects_v2.rb, line 19 def start_element(name, attrs = []) super case name when 'CommonPrefixes' @in_common_prefixes = true end end