Sha256: 050bb0324081c839a26dcee4aabdd4b73288160a39c6a919a284b85ea0decd7e

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

module Awsum
  class Ec2
    class TagParser < Awsum::Parser #:nodoc:
      def initialize(ec2)
        @ec2 = ec2
        @tags = []
        @text = nil
        @stack = []
      end

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

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

      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

      def result
        @tags
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
awsum-0.5.4 lib/awsum/ec2/parsers/tag_parser.rb
awsum-0.5.3 lib/awsum/ec2/parsers/tag_parser.rb
awsum-0.5.2 lib/awsum/ec2/parsers/tag_parser.rb
awsum-0.5.1 lib/awsum/ec2/parsers/tag_parser.rb