Sha256: 0778010665480ea2ac03e1fa2f81717ef4859e9638a9ffb7c114d2d9a07228bf

Contents?: true

Size: 1.09 KB

Versions: 10

Compression:

Stored size: 1.09 KB

Contents

module ActiveFedora
  module Delegation # :nodoc:
    extend ActiveSupport::Concern

    # This module creates compiled delegation methods dynamically at runtime, which makes
    # subsequent calls to that method faster by avoiding method_missing. The delegations
    # may vary depending on the klass of a relation, so we create a subclass of Relation
    # for each different klass, and the delegations are compiled into that subclass only.

    BLACKLISTED_ARRAY_METHODS = [
      :compact!, :flatten!, :reject!, :reverse!, :rotate!, :map!,
      :shuffle!, :slice!, :sort!, :sort_by!, :delete_if,
      :keep_if, :pop, :shift, :delete_at, :select!
    ].to_set

    delegate :length, :collect, :map, :each, :all?, :include?, :to_ary, :to => :to_a

    protected

    def array_delegable?(method)
      Array.method_defined?(method) && BLACKLISTED_ARRAY_METHODS.exclude?(method)
    end

    def method_missing(method, *args, &block)
      if array_delegable?(method)
        self.class.delegate method, to: :to_a
        to_a.public_send(method, *args, &block)
      else
        super
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active-fedora-9.5.0 lib/active_fedora/relation/delegation.rb
active-fedora-9.4.3 lib/active_fedora/relation/delegation.rb
active-fedora-9.4.2 lib/active_fedora/relation/delegation.rb
active-fedora-9.4.1 lib/active_fedora/relation/delegation.rb
active-fedora-9.4.0 lib/active_fedora/relation/delegation.rb
active-fedora-9.3.0 lib/active_fedora/relation/delegation.rb
active-fedora-9.2.1 lib/active_fedora/relation/delegation.rb
active-fedora-9.2.0 lib/active_fedora/relation/delegation.rb
active-fedora-9.2.0.rc2 lib/active_fedora/relation/delegation.rb
active-fedora-9.2.0.rc1 lib/active_fedora/relation/delegation.rb