Module: ActiveRecord::AttributeMethods::Serialization::Behavior

Extended by:
ActiveSupport::Concern
Defined in:
lib/active_record/attribute_methods/serialization.rb

Overview

This is only added to the model when serialize is called, which ensures we do not make things slower when serialization is not used.

Defined Under Namespace

Modules: ClassMethods

Instance Method Summary collapse

Instance Method Details

#_field_changed?(attr, old, value) ⇒ Boolean

Returns:

  • (Boolean)


126
127
128
129
130
131
132
# File 'lib/active_record/attribute_methods/serialization.rb', line 126

def _field_changed?(attr, old, value)
  if self.class.serialized_attributes.include?(attr)
    old != value
  else
    super
  end
end

#attributes_before_type_castObject



142
143
144
145
146
147
148
149
150
# File 'lib/active_record/attribute_methods/serialization.rb', line 142

def attributes_before_type_cast
  super.dup.tap do |attributes|
    self.class.serialized_attributes.each_key do |key|
      if attributes.key?(key)
        attributes[key] = attributes[key].unserialized_value
      end
    end
  end
end

#attributes_for_coderObject



160
161
162
163
164
165
166
167
168
# File 'lib/active_record/attribute_methods/serialization.rb', line 160

def attributes_for_coder
  attribute_names.each_with_object({}) do |name, attrs|
    attrs[name] = if self.class.serialized_attributes.include?(name)
                    @attributes[name].serialized_value
                  else
                    read_attribute(name)
                  end
  end
end

#read_attribute_before_type_cast(attr_name) ⇒ Object



134
135
136
137
138
139
140
# File 'lib/active_record/attribute_methods/serialization.rb', line 134

def read_attribute_before_type_cast(attr_name)
  if self.class.serialized_attributes.include?(attr_name)
    super.unserialized_value
  else
    super
  end
end

#type_cast_attribute_for_write(column, value) ⇒ Object



118
119
120
121
122
123
124
# File 'lib/active_record/attribute_methods/serialization.rb', line 118

def type_cast_attribute_for_write(column, value)
  if column && coder = self.class.serialized_attributes[column.name]
    Attribute.new(coder, value, :unserialized)
  else
    super
  end
end

#typecasted_attribute_value(name) ⇒ Object



152
153
154
155
156
157
158
# File 'lib/active_record/attribute_methods/serialization.rb', line 152

def typecasted_attribute_value(name)
  if self.class.serialized_attributes.include?(name)
    @attributes[name].serialized_value
  else
    super
  end
end