Parent

Included Modules

Class Index [+]

Quicksearch

ActiveSupport::XmlMini_LibXMLSAX::HashBuilder

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

Constants

CONTENT_KEY
HASH_SIZE_KEY

Attributes

hash[R]

Public Instance Methods

current_hash() click to toggle source
    # File lib/active_support/xml_mini/libxmlsax.rb, line 21
21:       def current_hash
22:         @hash_stack.last
23:       end
on_cdata_block(string) click to toggle source
Alias for: on_characters
on_characters(string) click to toggle source
    # File lib/active_support/xml_mini/libxmlsax.rb, line 55
55:       def on_characters(string)
56:         current_hash[CONTENT_KEY] << string
57:       end
Also aliased as: on_cdata_block
on_end_document() click to toggle source
    # 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
on_end_element(name) click to toggle source
    # 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
on_start_document() click to toggle source
    # 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
on_start_element(name, attrs = {}) click to toggle source
    # 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.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.