aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/hash_lookup_type_map.rb
blob: bf92680268fcabe8f832168f38d9bff58d538128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module ActiveRecord
  module Type
    class HashLookupTypeMap < TypeMap # :nodoc:
      delegate :key?, to: :@mapping

      def lookup(type, *args)
        @mapping.fetch(type, proc { default_value }).call(type, *args)
      end

      def fetch(type, *args, &block)
        @mapping.fetch(type, block).call(type, *args)
      end

      def alias_type(type, alias_type)
        register_type(type) { |_, *args| lookup(alias_type, *args) }
      end
    end
  end
end