Sha256: e891463bacb3a40ec5a6537e4e3c9791e4dbc8fc806cb023fbeff8f16e54bb9f

Contents?: true

Size: 1.66 KB

Versions: 22

Compression:

Stored size: 1.66 KB

Contents

module ActiveModel
  # :stopdoc:
  module Type
    class Registry
      def initialize
        @registrations = []
      end

      def register(type_name, klass = nil, **options, &block)
        block ||= proc { |_, *args| klass.new(*args) }
        registrations << registration_klass.new(type_name, block, **options)
      end

      def lookup(symbol, *args)
        registration = find_registration(symbol, *args)

        if registration
          registration.call(self, symbol, *args)
        else
          raise ArgumentError, "Unknown type #{symbol.inspect}"
        end
      end

      # TODO Change this to private once we've dropped Ruby 2.2 support.
      # Workaround for Ruby 2.2 "private attribute?" warning.
      protected

        attr_reader :registrations

      private

        def registration_klass
          Registration
        end

        def find_registration(symbol, *args)
          registrations.find { |r| r.matches?(symbol, *args) }
        end
    end

    class Registration
      # Options must be taken because of https://bugs.ruby-lang.org/issues/10856
      def initialize(name, block, **)
        @name = name
        @block = block
      end

      def call(_registry, *args, **kwargs)
        if kwargs.any? # https://bugs.ruby-lang.org/issues/10856
          block.call(*args, **kwargs)
        else
          block.call(*args)
        end
      end

      def matches?(type_name, *args, **kwargs)
        type_name == name
      end

      # TODO Change this to private once we've dropped Ruby 2.2 support.
      # Workaround for Ruby 2.2 "private attribute?" warning.
      protected

        attr_reader :name, :block
    end
  end
  # :startdoc:
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
activemodel-5.1.7 lib/active_model/type/registry.rb
activemodel-5.1.7.rc1 lib/active_model/type/registry.rb
activemodel-5.1.6.2 lib/active_model/type/registry.rb
activemodel-5.1.6.1 lib/active_model/type/registry.rb
activemodel-5.1.6 lib/active_model/type/registry.rb
tdiary-5.0.8 vendor/bundle/gems/activemodel-5.1.5/lib/active_model/type/registry.rb
activemodel-5.1.5 lib/active_model/type/registry.rb
activemodel-5.1.5.rc1 lib/active_model/type/registry.rb
activemodel-5.1.4 lib/active_model/type/registry.rb
activemodel-5.1.4.rc1 lib/active_model/type/registry.rb
activemodel-5.1.3 lib/active_model/type/registry.rb
activemodel-5.1.3.rc3 lib/active_model/type/registry.rb
activemodel-5.1.3.rc2 lib/active_model/type/registry.rb
activemodel-5.1.3.rc1 lib/active_model/type/registry.rb
tdiary-5.0.5 vendor/bundle/gems/activemodel-5.1.2/lib/active_model/type/registry.rb
activemodel-5.1.2 lib/active_model/type/registry.rb
activemodel-5.1.2.rc1 lib/active_model/type/registry.rb
activemodel-5.1.1 lib/active_model/type/registry.rb
activemodel-5.1.0 lib/active_model/type/registry.rb
activemodel-5.1.0.rc2 lib/active_model/type/registry.rb