Class that will build the hash while the XML document is being parsed using SAX events.
# File lib/active_support/xml_mini/libxmlsax.rb, line 21 21: def current_hash 22: @hash_stack.last 23: end
# File lib/active_support/xml_mini/libxmlsax.rb, line 55 55: def on_characters(string) 56: current_hash[CONTENT_KEY] << string 57: end
# File 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
# File 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 lib/active_support/xml_mini/libxmlsax.rb, line 25 25: def on_start_document 26: @hash = { CONTENT_KEY => '' } 27: @hash_stack = [@hash] 28: end
# File 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
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.