Module: FamilySearch::Gedcomx::SuperCoercion::ClassMethods
- Defined in:
- lib/familysearch/gedcomx/super_coercion.rb
Instance Method Summary collapse
-
#coerce_key(*attrs) ⇒ Object
(also: #coerce_keys)
Set up a coercion rule such that any time the specified key is set it will be coerced into the specified class.
-
#coerce_value(from, into, options = {}) ⇒ Object
Set up a coercion rule such that any time a value of the specified type is set it will be coerced into the specified class.
- #inherited(klass) ⇒ Object
-
#key_coercion(key) ⇒ Object
Returns the specific key coercion for the specified key, if one exists.
-
#key_coercions ⇒ Object
Returns a hash of any existing key coercions.
-
#lenient_value_coercions ⇒ Object
Return all value coercions that have the :strict rule as false.
-
#strict_value_coercions ⇒ Object
Return all value coercions that have the :strict rule as true.
-
#value_coercion(value) ⇒ Object
Fetch the value coercion, if any, for the specified object.
Instance Method Details
#coerce_key(*attrs) ⇒ Object Also known as: coerce_keys
Set up a coercion rule such that any time the specified key is set it will be coerced into the specified class. Coercion will occur by first attempting to call Class.coerce and then by calling Class.new with the value as an argument in either case.
102 103 104 105 106 107 108 109 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 102 def coerce_key(*attrs) @key_coercions ||= {} into = attrs.pop attrs.each { |key| @key_coercions[key] = into } if defined? @subclasses @subclasses.each { |klass| klass.coerce_key(attrs) } end end |
#coerce_value(from, into, options = {}) ⇒ Object
Set up a coercion rule such that any time a value of the specified type is set it will be coerced into the specified class.
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 152 def coerce_value(from, into, = {}) = {:strict => true}.merge() if [:strict] (@strict_value_coercions ||= {})[from] = into else while from.superclass && from.superclass != Object (@lenient_value_coercions ||= {})[from] = into from = from.superclass end end if defined? @subclasses @subclasses.each { |klass| klass.coerce_value(from,into,) } end end |
#inherited(klass) ⇒ Object
124 125 126 127 128 129 130 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 124 def inherited(klass) super (@subclasses ||= Set.new) << klass klass.instance_variable_set('@key_coercions', self.key_coercions.dup) klass.instance_variable_set('@lenient_value_coercions', self.lenient_value_coercions.dup) klass.instance_variable_set('@strict_value_coercions', self.strict_value_coercions.dup) end |
#key_coercion(key) ⇒ Object
Returns the specific key coercion for the specified key, if one exists.
120 121 122 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 120 def key_coercion(key) key_coercions[key.to_sym] end |
#key_coercions ⇒ Object
Returns a hash of any existing key coercions.
114 115 116 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 114 def key_coercions @key_coercions || {} end |
#lenient_value_coercions ⇒ Object
Return all value coercions that have the :strict rule as false.
171 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 171 def lenient_value_coercions; @value_coercions || {} end |
#strict_value_coercions ⇒ Object
Return all value coercions that have the :strict rule as true.
169 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 169 def strict_value_coercions; @strict_value_coercions || {} end |
#value_coercion(value) ⇒ Object
Fetch the value coercion, if any, for the specified object.
174 175 176 177 |
# File 'lib/familysearch/gedcomx/super_coercion.rb', line 174 def value_coercion(value) from = value.class strict_value_coercions[from] || lenient_value_coercions[from] end |