Module: HappyMapper::ClassMethods
- Defined in:
- lib/happymapper.rb
Instance Method Summary collapse
- #attribute(name, type, options = {}) ⇒ Object
- #attributes ⇒ Object
- #element(name, type, options = {}) ⇒ Object
- #elements ⇒ Object
- #has_many(name, type, options = {}) ⇒ Object
- #has_one(name, type, options = {}) ⇒ Object
- #has_xml_content ⇒ Object
-
#namespace(namespace = nil) ⇒ Object
Specify a namespace if a node and all its children are all namespaced elements.
- #parse(xml, options = {}) ⇒ Object
- #tag(new_tag_name) ⇒ Object
- #tag_name ⇒ Object
- #text_node(name, type, options = {}) ⇒ Object
Instance Method Details
#attribute(name, type, options = {}) ⇒ Object
22 23 24 25 26 27 |
# File 'lib/happymapper.rb', line 22 def attribute(name, type, ={}) attribute = Attribute.new(name, type, ) @attributes[to_s] ||= [] @attributes[to_s] << attribute attr_accessor attribute.method_name.intern end |
#attributes ⇒ Object
29 30 31 |
# File 'lib/happymapper.rb', line 29 def attributes @attributes[to_s] || [] end |
#element(name, type, options = {}) ⇒ Object
33 34 35 36 37 38 |
# File 'lib/happymapper.rb', line 33 def element(name, type, ={}) element = Element.new(name, type, ) @elements[to_s] ||= [] @elements[to_s] << element attr_accessor element.method_name.intern end |
#elements ⇒ Object
40 41 42 |
# File 'lib/happymapper.rb', line 40 def elements @elements[to_s] || [] end |
#has_many(name, type, options = {}) ⇒ Object
57 58 59 |
# File 'lib/happymapper.rb', line 57 def has_many(name, type, ={}) element name, type, {:single => false}.merge() end |
#has_one(name, type, options = {}) ⇒ Object
53 54 55 |
# File 'lib/happymapper.rb', line 53 def has_one(name, type, ={}) element name, type, {:single => true}.merge() end |
#has_xml_content ⇒ Object
49 50 51 |
# File 'lib/happymapper.rb', line 49 def has_xml_content attr_accessor :xml_content end |
#namespace(namespace = nil) ⇒ Object
Specify a namespace if a node and all its children are all namespaced elements. This is simpler than passing the :namespace option to each defined element.
64 65 66 67 |
# File 'lib/happymapper.rb', line 64 def namespace(namespace = nil) @namespace = namespace if namespace @namespace end |
#parse(xml, options = {}) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/happymapper.rb', line 77 def parse(xml, = {}) # locally scoped copy of namespace for this parse run namespace = @namespace if xml.is_a?(Nokogiri::XML::Node) node = xml else if xml.is_a?(Nokogiri::XML::Document) node = xml.root else xml = Nokogiri::XML(xml) node = xml.root end root = node.name == tag_name end # This is the entry point into the parsing pipeline, so the default # namespace prefix registered here will propagate down namespaces = [:namespaces] || xml.namespaces if namespaces.has_key?("xmlns") namespace ||= DEFAULT_NS namespaces[namespace] = namespaces.delete("xmlns") elsif namespaces.has_key?(DEFAULT_NS) namespace ||= DEFAULT_NS end xpath = root ? '/' : './/' xpath += "#{namespace}:" if namespace #puts "parse: #{xpath}" nodes = [] # when finding nodes, do it in this order: # 1. specified tag # 2. name of element # 3. tag_name (derived from class name by default) [[:tag], [:name], tag_name].compact.each do |xpath_ext| nodes = node.xpath(xpath + xpath_ext.to_s, namespaces) break if nodes && nodes.size > 0 end collection = nodes.collect do |n| obj = new attributes.each do |attr| obj.send("#{attr.method_name}=", attr.from_xml_node(n, namespace, namespaces)) end elements.each do |elem| obj.send("#{elem.method_name}=", elem.from_xml_node(n, namespace, namespaces)) end obj.send("#{@text_node.method_name}=", @text_node.from_xml_node(n, namespace, namespaces)) if @text_node if obj.respond_to?('xml_content=') n = n.children if n.respond_to?(:children) obj.xml_content = n.to_xml end obj end # per http://libxml.rubyforge.org/rdoc/classes/LibXML/XML/Document.html#M000354 nodes = nil if [:single] || root collection.first else collection end end |
#tag(new_tag_name) ⇒ Object
69 70 71 |
# File 'lib/happymapper.rb', line 69 def tag(new_tag_name) @tag_name = new_tag_name.to_s unless new_tag_name.nil? || new_tag_name.to_s.empty? end |
#tag_name ⇒ Object
73 74 75 |
# File 'lib/happymapper.rb', line 73 def tag_name @tag_name ||= to_s.split('::')[-1].downcase end |
#text_node(name, type, options = {}) ⇒ Object
44 45 46 47 |
# File 'lib/happymapper.rb', line 44 def text_node(name, type, ={}) @text_node = TextNode.new(name, type, ) attr_accessor @text_node.method_name.intern end |