1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# frozen_string_literal: true
require 'rexml/document'
require 'rexml/streamlistener'
module Aws
module Xml
class Parser
class RexmlEngine
include REXML::StreamListener
def initialize(stack)
@stack = stack
@depth = 0
end
def parse(xml)
begin
mutable_xml = xml.dup # REXML only accepts mutable string
source = REXML::Source.new(mutable_xml)
REXML::Parsers::StreamParser.new(source, self).parse
rescue REXML::ParseException => error
@stack.error(error.message)
end
end
def tag_start(name, attrs)
@depth += 1
@stack.start_element(name)
attrs.each do |attr|
@stack.attr(*attr)
end
end
def text(value)
@stack.text(value) if @depth > 0
end
def tag_end(name)
@stack.end_element
@depth -= 1
end
end
end
end
end
|