Class that will build the hash while the XML document is being parsed using SAX events.
Methods
- C
- O
Included Modules
- LibXML::XML::SaxParser::Callbacks START:includes
Constants
CONTENT_KEY | = | '__content__'.freeze |
HASH_SIZE_KEY | = | '__hash_size__'.freeze |
Attributes
[R] | hash |
Instance Public methods
Alias for on_characters
This method is also aliased as
on_cdata_block
# 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
# 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