Class: Awsum::Ec2::AddressParser
- Defined in:
- lib/awsum/ec2/parsers/address_parser.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(ec2) ⇒ AddressParser
constructor
A new instance of AddressParser.
- #result ⇒ Object
- #tag_end(tag) ⇒ Object
- #tag_start(tag, attributes) ⇒ Object
- #text(text) ⇒ Object
Methods inherited from Parser
Constructor Details
#initialize(ec2) ⇒ AddressParser
Returns a new instance of AddressParser.
4 5 6 7 8 9 |
# File 'lib/awsum/ec2/parsers/address_parser.rb', line 4 def initialize(ec2) @ec2 = ec2 @addresses = [] @text = nil @stack = [] end |
Instance Method Details
#result ⇒ Object
56 57 58 |
# File 'lib/awsum/ec2/parsers/address_parser.rb', line 56 def result @addresses end |
#tag_end(tag) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/awsum/ec2/parsers/address_parser.rb', line 33 def tag_end(tag) case tag when 'DescribeAddressesResponse' #no-op when 'addressesSet' @stack.pop when 'item', 'AllocateAddressResponse' case @stack[-1] when 'addressesSet' @addresses << Address.new( @ec2, @current['publicIp'], @current['instanceId'] ) end else unless @text.nil? || @current.nil? text = @text.strip @current[tag] = (text == '' ? nil : text) end end end |
#tag_start(tag, attributes) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/awsum/ec2/parsers/address_parser.rb', line 11 def tag_start(tag, attributes) #Quick hack so we can use the same parser for AllocateAddress which doesn't use the item tag to wrap the address information if tag == 'AllocateAddressResponse' @stack << 'addressesSet' end case tag when 'addressesSet' @stack << 'addressesSet' when 'item', 'AllocateAddressResponse' case @stack[-1] when 'addressesSet' @current = {} end end @text = '' end |
#text(text) ⇒ Object
29 30 31 |
# File 'lib/awsum/ec2/parsers/address_parser.rb', line 29 def text(text) @text << text unless @text.nil? end |