Class: Relief::Element

Inherits:
Object
  • Object
show all
Defined in:
lib/relief/element.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, options = {}, &block) ⇒ Element

Returns a new instance of Element.



5
6
7
8
9
10
11
# File 'lib/relief/element.rb', line 5

def initialize(name=nil, options={}, &block)
  @name = name
  @options = options
  @children = []

  instance_eval(&block) if block_given?
end

Instance Attribute Details

#childrenObject (readonly)

Returns the value of attribute children.



3
4
5
# File 'lib/relief/element.rb', line 3

def children
  @children
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/relief/element.rb', line 3

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



3
4
5
# File 'lib/relief/element.rb', line 3

def options
  @options
end

Instance Method Details

#attribute(name, options = {}, &block) ⇒ Object



56
57
58
# File 'lib/relief/element.rb', line 56

def attribute(name, options={}, &block)
  element(name, options.merge(:attribute => true), &block)
end

#element(name, options = {}, &block) ⇒ Object



47
48
49
50
# File 'lib/relief/element.rb', line 47

def element(name, options={}, &block)
  options[:xpath] ||= name if name =~ %r([/.])
  @children << self.class.new(name, options, &block)
end

#elements(name, options = {}, &block) ⇒ Object



52
53
54
# File 'lib/relief/element.rb', line 52

def elements(name, options={}, &block)
  element(name, options.merge(:collection => true), &block)
end

#parse(document) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/relief/element.rb', line 13

def parse(document)
  @children.inject({}) do |values, element|
    key = element.options[:as] || element.name
    type = element.options[:type]

    values[key] = begin
      target = (document / element.xpath)

      parse_node = lambda { |target|
        if element.children.any?
          element.parse(target)
        else
          value = target.to_s

          if type == Integer then value.to_i
          elsif type == Float then value.to_f
          elsif type == Date then Date.parse(value)
          elsif type.is_a?(Parser) then type.parse(document)
          else value
          end
        end
      }

      if element.options[:collection]
        target.collect { |child| parse_node.call(child) }
      else
        parse_node.call(target)
      end
    end

    values
  end
end

#xpathObject



60
61
62
63
64
65
66
67
68
69
70
# File 'lib/relief/element.rb', line 60

def xpath
  if options.has_key?(:xpath)
    options[:xpath]
  elsif @children.any?
    name.to_s
  else
    attribute = @options[:attribute]
    attribute = name if attribute == true
    !attribute ? "#{name}/text()" : "@#{attribute}"
  end
end