Sha256: 0f87918bd4125686156a5d6f9fcafa5197b8314b39f6a73c722d9b99d8525ef7

Contents?: true

Size: 1.79 KB

Versions: 29

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  module Type
    class Serialized < DelegateClass(ActiveModel::Type::Value) # :nodoc:
      undef to_yaml if method_defined?(:to_yaml)

      include ActiveModel::Type::Helpers::Mutable

      attr_reader :subtype, :coder

      def initialize(subtype, coder)
        @subtype = subtype
        @coder = coder
        super(subtype)
      end

      def deserialize(value)
        if default_value?(value)
          value
        else
          coder.load(super)
        end
      end

      def serialize(value)
        return if value.nil?
        unless default_value?(value)
          super coder.dump(value)
        end
      end

      def inspect
        Kernel.instance_method(:inspect).bind_call(self)
      end

      def changed_in_place?(raw_old_value, value)
        return false if value.nil?
        raw_new_value = encoded(value)
        raw_old_value.nil? != raw_new_value.nil? ||
          subtype.changed_in_place?(raw_old_value, raw_new_value)
      end

      def accessor
        ActiveRecord::Store::IndifferentHashAccessor
      end

      def assert_valid_value(value)
        if coder.respond_to?(:assert_valid_value)
          coder.assert_valid_value(value, action: "serialize")
        end
      end

      def force_equality?(value)
        coder.respond_to?(:object_class) && value.is_a?(coder.object_class)
      end

      def serialized? # :nodoc:
        true
      end

      private
        def default_value?(value)
          value == coder.load(nil)
        end

        def encoded(value)
          return if default_value?(value)
          payload = coder.dump(value)
          if payload && @subtype.binary?
            ActiveModel::Type::Binary::Data.new(payload)
          else
            payload
          end
        end
    end
  end
end

Version data entries

29 entries across 28 versions & 5 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.8.7/lib/active_record/type/serialized.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/type/serialized.rb
activerecord-7.1.5.1 lib/active_record/type/serialized.rb
activerecord-7.0.8.7 lib/active_record/type/serialized.rb
activerecord-7.1.5 lib/active_record/type/serialized.rb
activerecord-7.1.4.2 lib/active_record/type/serialized.rb
activerecord-7.0.8.6 lib/active_record/type/serialized.rb
activerecord-7.1.4.1 lib/active_record/type/serialized.rb
activerecord-7.0.8.5 lib/active_record/type/serialized.rb
activerecord-7.1.4 lib/active_record/type/serialized.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/type/serialized.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/active_record/type/serialized.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activerecord-7.1.3.4/lib/active_record/type/serialized.rb
activerecord-7.1.3.4 lib/active_record/type/serialized.rb
activerecord-7.0.8.4 lib/active_record/type/serialized.rb
activerecord-7.1.3.2 lib/active_record/type/serialized.rb
activerecord-7.1.3.1 lib/active_record/type/serialized.rb
activerecord-7.0.8.1 lib/active_record/type/serialized.rb
activerecord-7.1.3 lib/active_record/type/serialized.rb
activerecord-7.1.2 lib/active_record/type/serialized.rb