Class: ActiveRecord::AttributeMethods::Serialization::Attribute

Inherits:
Struct
  • Object
show all
Defined in:
activerecord/lib/active_record/attribute_methods/serialization.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Struct

#as_json, #to_h

Instance Attribute Details

#coderObject

Returns the value of attribute coder

Returns:

  • (Object)

    the current value of coder



94
95
96
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 94

def coder
  @coder
end

#stateObject

Returns the value of attribute state

Returns:

  • (Object)

    the current value of state



94
95
96
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 94

def state
  @state
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



94
95
96
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 94

def value
  @value
end

Instance Method Details

#serializeObject



108
109
110
111
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 108

def serialize
  self.state = :serialized
  self.value = coder.dump(value)
end

#serialized_valueObject



99
100
101
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 99

def serialized_value
  state == :unserialized ? serialize : value
end

#unserialize(v) ⇒ Object



103
104
105
106
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 103

def unserialize(v)
  self.state = :unserialized
  self.value = coder.load(v)
end

#unserialized_value(v = value) ⇒ Object



95
96
97
# File 'activerecord/lib/active_record/attribute_methods/serialization.rb', line 95

def unserialized_value(v = value)
  state == :serialized ? unserialize(v) : value
end