Class: RightAws::Ec2::QEc2DescribeImagesParser

Inherits:
RightAWSParser show all
Defined in:
lib/ec2/right_ec2.rb

Overview


PARSERS: Images

Constant Summary

Constants inherited from RightAWSParser

RightAWSParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from RightAWSParser

#result, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from RightAWSParser

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

Constructor Details

This class inherits a constructor from RightAws::RightAWSParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser

Instance Method Details

#resetObject



1165
1166
1167
# File 'lib/ec2/right_ec2.rb', line 1165

def reset
  @result = []
end

#tagend(name) ⇒ Object



1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
# File 'lib/ec2/right_ec2.rb', line 1150

def tagend(name)
  case name
    when 'imageId'       then @image[:aws_id]       = @text
    when 'imageLocation' then @image[:aws_location] = @text
    when 'imageState'    then @image[:aws_state]    = @text
    when 'imageOwnerId'  then @image[:aws_owner]    = @text
    when 'isPublic'      then @image[:aws_is_public]= @text == 'true' ? true : false
    when 'productCode'   then (@image[:aws_product_codes] ||= []) << @text
    when 'architecture'  then @image[:aws_architecture] = @text
    when 'imageType'     then @image[:aws_image_type] = @text
    when 'kernelId'      then @image[:aws_kernel_id]  = @text
    when 'ramdiskId'     then @image[:aws_ramdisk_id] = @text
    when 'item'          then @result << @image if @xmlpath[%r{.*/imagesSet$}]
  end
end

#tagstart(name, attributes) ⇒ Object

:nodoc:



1145
1146
1147
1148
1149
# File 'lib/ec2/right_ec2.rb', line 1145

def tagstart(name, attributes)
  if name == 'item' && @xmlpath[%r{.*/imagesSet$}]
    @image = {}
  end
end