Class that will build the hash while the XML document is being parsed using SAX events.

Methods
C
O
Included Modules
Constants
CONTENT_KEY = '__content__'.freeze
HASH_SIZE_KEY = '__hash_size__'.freeze
Attributes
[R] hash
Instance Public methods
current_hash()
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 21
21:       def current_hash
22:         @hash_stack.last
23:       end
on_cdata_block(string)

Alias for on_characters

on_characters(string)
This method is also aliased as on_cdata_block
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 55
55:       def on_characters(string)
56:         current_hash[CONTENT_KEY] << string
57:       end
on_end_document()
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 30
30:       def on_end_document
31:         @hash = @hash_stack.pop
32:         @hash.delete(CONTENT_KEY)
33:       end
on_end_element(name)
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 48
48:       def on_end_element(name)
49:         if current_hash.length > current_hash.delete(HASH_SIZE_KEY) && current_hash[CONTENT_KEY].blank? || current_hash[CONTENT_KEY] == ''
50:           current_hash.delete(CONTENT_KEY)
51:         end
52:         @hash_stack.pop
53:       end
on_start_document()
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 25
25:       def on_start_document
26:         @hash = { CONTENT_KEY => '' }
27:         @hash_stack = [@hash]
28:       end
on_start_element(name, attrs = {})
    # File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 35
35:       def on_start_element(name, attrs = {})
36:         new_hash = { CONTENT_KEY => '' }.merge(attrs)
37:         new_hash[HASH_SIZE_KEY] = new_hash.size + 1
38: 
39:         case current_hash[name]
40:           when Array then current_hash[name] << new_hash
41:           when Hash  then current_hash[name] = [current_hash[name], new_hash]
42:           when nil   then current_hash[name] = new_hash
43:         end
44: 
45:         @hash_stack.push(new_hash)
46:       end