Class: Fog::Parsers::AWS::Storage::ListObjectsV2

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/storage/list_objects_v2.rb

Instance Method Summary collapse

Constructor Details

#initializeListObjectsV2

Initialize parser state



7
8
9
10
11
12
# File 'lib/fog/aws/parsers/storage/list_objects_v2.rb', line 7

def initialize
  super
  @common_prefix = {}
  @object = { 'Owner' => {} }
  reset
end

Instance Method Details

#end_element(name) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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

#resetObject



14
15
16
17
# File 'lib/fog/aws/parsers/storage/list_objects_v2.rb', line 14

def reset
  @object = { 'Owner' => {} }
  @response = { 'Contents' => [], 'CommonPrefixes' => [] }
end

#start_element(name, attrs = []) ⇒ Object



19
20
21
22
23
24
25
# 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