Class: Aws::Xml::Parser::LibxmlEngine Private
- Inherits:
- 
      Object
      
        - Object
- Aws::Xml::Parser::LibxmlEngine
 
- Includes:
- LibXML::XML::SaxParser::Callbacks
- Defined in:
- lib/aws-sdk-core/xml/parser/libxml_engine.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- 
  
    
      #initialize(stack)  ⇒ LibxmlEngine 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    A new instance of LibxmlEngine. 
- #on_characters(chars) ⇒ Object private
- #on_end_element_ns(*ignored) ⇒ Object private
- #on_error(msg) ⇒ Object private
- #on_start_element_ns(element_name, attributes, prefix = nil, uri = nil, ns = {}) ⇒ Object private
- #parse(xml) ⇒ Object private
Constructor Details
#initialize(stack) ⇒ LibxmlEngine
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of LibxmlEngine.
| 12 13 14 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 12 def initialize(stack) @stack = stack end | 
Instance Method Details
#on_characters(chars) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
| 42 43 44 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 42 def on_characters(chars) @stack.text(chars) end | 
#on_end_element_ns(*ignored) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
| 38 39 40 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 38 def on_end_element_ns(*ignored) @stack.end_element end | 
#on_error(msg) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
| 46 47 48 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 46 def on_error(msg) @stack.error(msg) end | 
#on_start_element_ns(element_name, attributes, prefix = nil, uri = nil, ns = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
| 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 22 def on_start_element_ns(element_name, attributes, prefix = nil, uri = nil, ns = {}) # libxml-ruby does not provide a mapping from element attribute # names to their qname prefixes. The following code line assumes # that if a attribute ns is defined it applies to all attributes. # This is necessary to support parsing S3 Object ACL Grantees. # qnames are not used by any other AWS attribute. Also, new # services are using JSON, limiting the possible blast radius # of this patch. attr_ns_prefix = ns.keys.first @stack.start_element(element_name) attributes.each do |attr_name, attr_value| attr_name = "#{attr_ns_prefix}:#{attr_name}" if attr_ns_prefix @stack.attr(attr_name, attr_value) end end | 
#parse(xml) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
| 16 17 18 19 20 | # File 'lib/aws-sdk-core/xml/parser/libxml_engine.rb', line 16 def parse(xml) parser = ::LibXML::XML::SaxParser.string(xml) parser.callbacks = self parser.parse end |