Class: Aws::S3Interface::S3ListAllMyBucketsParser

Inherits:
AwsParser show all
Defined in:
lib/s3/right_s3_interface.rb

Overview


PARSERS:

Constant Summary

Constants inherited from AwsParser

AwsParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from AwsParser

#result, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from AwsParser

#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=

Constructor Details

This class inherits a constructor from Aws::AwsParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Aws::AwsParser

Instance Method Details

#resetObject

:nodoc:



1000
1001
1002
1003
# File 'lib/s3/right_s3_interface.rb', line 1000

def reset
    @result = []
    @owner  = {}
end

#tagend(name) ⇒ Object



1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
# File 'lib/s3/right_s3_interface.rb', line 1009

def tagend(name)
    case name
        when 'ID';
            @owner[:owner_id] = @text
        when 'DisplayName';
            @owner[:owner_display_name] = @text
        when 'Name';
            @current_bucket[:name] = @text
        when 'CreationDate';
            @current_bucket[:creation_date] = @text
        when 'Bucket';
            @result << @current_bucket.merge(@owner)
    end
end

#tagstart(name, attributes) ⇒ Object



1005
1006
1007
# File 'lib/s3/right_s3_interface.rb', line 1005

def tagstart(name, attributes)
    @current_bucket = {} if name == 'Bucket'
end