Class: Aws::S3Interface::S3ListBucketParser

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

Overview

:nodoc:

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



991
992
993
994
995
# File 'lib/s3/right_s3_interface.rb', line 991

def reset
  @result      = []
  @service     = {}
  @current_key = {}
end

#tagend(name) ⇒ Object



999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
# File 'lib/s3/right_s3_interface.rb', line 999

def tagend(name)
  case name
      # service info
    when 'Name'        ; @service['name']         = @text
    when 'Prefix'      ; @service['prefix']       = @text
    when 'Marker'      ; @service['marker']       = @text
    when 'MaxKeys'     ; @service['max-keys']     = @text
    when 'Delimiter'   ; @service['delimiter']    = @text
    when 'IsTruncated' ; @service['is_truncated'] = (@text =~ /false/ ? false : true)
      # key data
    when 'Key'         ; @current_key[:key]                = @text
    when 'LastModified'; @current_key[:last_modified]      = @text
    when 'ETag'        ; @current_key[:e_tag]              = @text
    when 'Size'        ; @current_key[:size]               = @text.to_i
    when 'StorageClass'; @current_key[:storage_class]      = @text
    when 'ID'          ; @current_key[:owner_id]           = @text
    when 'DisplayName' ; @current_key[:owner_display_name] = @text
    when 'Contents'    ; @current_key[:service]            = @service;  @result << @current_key
  end
end

#tagstart(name, attributes) ⇒ Object



996
997
998
# File 'lib/s3/right_s3_interface.rb', line 996

def tagstart(name, attributes)
  @current_key = {} if name == 'Contents'
end