Class: SAXMachine::SAXConfig::ElementConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/sax-machine/sax_element_config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options) ⇒ ElementConfig

Returns a new instance of ElementConfig.



7
8
9
10
11
12
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
# File 'lib/sax-machine/sax_element_config.rb', line 7

def initialize(name, options)
  @name = name.to_s
  
  if options.has_key?(:with)
    # for faster comparisons later
    @with = options[:with].to_a.flatten.collect {|o| o.to_s}
  else
    @with = nil
  end
  
  if options.has_key?(:value)
    @value = options[:value].to_s
  else
    @value = nil
  end
  
  @as = options[:as]
  @collection = options[:collection]
  
  if @collection
    @setter = "add_#{options[:as]}"
  else
    @setter = "#{@as}="
  end
  @data_class = options[:class]
  @required = options[:required]

  @xmlns = case options[:xmlns]
           when Array then options[:xmlns]
           when String then [options[:xmlns]]
           else nil
           end
end

Instance Attribute Details

#data_classObject (readonly)

Returns the value of attribute data_class.



5
6
7
# File 'lib/sax-machine/sax_element_config.rb', line 5

def data_class
  @data_class
end

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/sax-machine/sax_element_config.rb', line 5

def name
  @name
end

#setterObject (readonly)

Returns the value of attribute setter.



5
6
7
# File 'lib/sax-machine/sax_element_config.rb', line 5

def setter
  @setter
end

Instance Method Details

#attrs_match?(attrs) ⇒ Boolean

Returns:

  • (Boolean)


53
54
55
56
57
58
59
# File 'lib/sax-machine/sax_element_config.rb', line 53

def attrs_match?(attrs)
  if @with
    @with == (@with & attrs)
  else
    true
  end
end

#collection?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/sax-machine/sax_element_config.rb', line 69

def collection?
  @collection
end

#columnObject



41
42
43
# File 'lib/sax-machine/sax_element_config.rb', line 41

def column
  @as || @name.to_sym
end

#has_value_and_attrs_match?(attrs) ⇒ Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/sax-machine/sax_element_config.rb', line 61

def has_value_and_attrs_match?(attrs)
  !@value.nil? && attrs_match?(attrs)
end

#required?Boolean

Returns:

  • (Boolean)


45
46
47
# File 'lib/sax-machine/sax_element_config.rb', line 45

def required?
  @required
end

#value_from_attrs(attrs) ⇒ Object



49
50
51
# File 'lib/sax-machine/sax_element_config.rb', line 49

def value_from_attrs(attrs)
  attrs.index(@value) ? attrs[attrs.index(@value) + 1] : nil
end

#xmlns_match?(ns) ⇒ Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/sax-machine/sax_element_config.rb', line 65

def xmlns_match?(ns)
  @xmlns.nil? || @xmlns.include?(ns)
end