Class: Awsum::Ec2::TagParser

Inherits:
Parser show all
Defined in:
lib/awsum/ec2/parsers/tag_parser.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Parser

#parse, #xmldecl

Constructor Details

#initialize(ec2) ⇒ TagParser

Returns a new instance of TagParser.



4
5
6
7
8
9
# File 'lib/awsum/ec2/parsers/tag_parser.rb', line 4

def initialize(ec2)
  @ec2 = ec2
  @tags = []
  @text = nil
  @stack = []
end

Instance Method Details

#resultObject



51
52
53
# File 'lib/awsum/ec2/parsers/tag_parser.rb', line 51

def result
  @tags
end

#tag_end(tag) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/awsum/ec2/parsers/tag_parser.rb', line 28

def tag_end(tag)
  case tag
    when 'tagSet'
      @stack.pop
    when 'item'
      case @stack[-1]
        when 'tagSet'
          @tags << Tag.new(
                     @ec2,
                     @current['resourceId'],
                     @current['resourceType'],
                     @current['key'],
                     @current['value']
                   )
      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
# File 'lib/awsum/ec2/parsers/tag_parser.rb', line 11

def tag_start(tag, attributes)
  case tag
    when 'tagSet'
      @stack << tag
    when 'item'
      case @stack[-1]
        when 'tagSet'
          @current = {}
      end
  end
  @text = ''
end

#text(text) ⇒ Object



24
25
26
# File 'lib/awsum/ec2/parsers/tag_parser.rb', line 24

def text(text)
  @text << text unless @text.nil?
end