3

コード スニペットは次のとおりです。

モジュール: ActiveSupport::Concern

    module ActiveSupport
      module Concern
        def self.extended(base)
          base.instance_variable_set("@_dependencies", [])
        end

        def append_features(base)
          if base.instance_variable_defined?("@_dependencies")
            base.instance_variable_get("@_dependencies") << self
            return false
          else
            return false if base < self
            @_dependencies.each { |dep| base.send(:include, dep) }
            super
            base.extend const_get("ClassMethods") if const_defined?("ClassMethods")
            base.send :include, const_get("InstanceMethods") if const_defined?("InstanceMethods")
            base.class_eval(&@_included_block) if instance_variable_defined?("@_included_block")
          end
        end

        def included(base = nil, &block)
          if base.nil?
            @_included_block = block
          else
            super
          end
        end
      end
    end

カスタム モジュール: GeneralScopes

    module GeneralScopes
        extend ActiveSupport::Concern

        included do
          scope :reverse_order_by_date, :order => "date DESC"
          scope :recent, lambda { |count| reverse_order_by_date.limit(count) }
        end
    end

カスタム クラス: ユーザー

    class User < ActiveRecord::Base
      include GeneralScopes
    end

使用法:

    User.recent(5) => Prints the recent five User instances available in database

上記のコード スニペットに関して、次の質問があります。

1) include(MODULE_NAME(s)) . include は Module のプライベート インスタンス メソッドであり、このメソッドはselfによって暗黙的に呼び出されます。では、selfはクラス本体で何を表しているのでしょうか? クラスのインスタンス メソッドで、 selfは現在のオブジェクトを表します。クラスのクラス メソッドselfでは、クラスの Class オブジェクトを表します。

include <MODULE_NAME>クラス本体からのこの構文はどのように機能しますか?

2) 拡張 (MODULE_NAME(s))

David Flanagan と Yukihiro Matsumoto (Oreilly) による「The Ruby Programming Language」、第 7 章クラスとモジュールから引用

Object.extend.このメソッドは、指定されたモジュールまたはモジュールのインスタンス メソッドをレシーバー オブジェクトのシングルトン メソッドにします (レシーバー オブジェクトが Class インスタンスの場合、レシーバーのメソッドはそのクラスのクラス メソッドになります)。

上記のGeneralScopesモジュールのコンテキストでは、これを理解できません。

3)

    module GeneralScopes
        extend ActiveSupport::Concern

        included do
          scope :reverse_order_by_date, :order => "date DESC"
          scope :recent, lambda { |count| reverse_order_by_date.limit(count) }
        end
    end

module GeneralScopes ActiveSupport::Concern モジュールのインスタンス メソッド "included(base = nil, &block)" を呼び出していると思います。モジュール本体からのインスタンス メソッドのこの呼び出しはどのように機能しますか? 次の場合にレシーバーとして機能するオブジェクトはどれか

     included do
          scope :reverse_order_by_date, :order => "date DESC"
          scope :recent, lambda { |count| reverse_order_by_date.limit(count) }
     end

実行されますか?

4) ActiveSupport::Concern モジュールのインスタンスメソッド "included(base = nil, &block)"

        def included(base = nil, &block)
          if base.nil?
            @_included_block = block
          else
            super
          end
        end 

ここでスーパーが使用されます。このスーパーは、User クラスまたは ActiveSupport::Concern モジュールのコンテキストで機能しますか? superが実行されると、コントロールはどのクラスに移動しますか?

誰かが私に実行された制御フローを理解させたり、私が持っている質問に関連する概念を説明する関連リソースを教えてくれたりすると、大きな助けになります.

4

1 に答える 1

5

1)includeモジュールのメソッドをクラスのインスタンス メソッドextendとして使用できるようにし、モジュールのメソッドをクラス メソッドとして使用できるようにします。したがってself、インスタンスまたはクラスのいずれかを指します。

module M
  def foo
    puts self
  end
end

class A
  include M
end

A.new.foo # => #<A:0x007fcefa18e270> ('self' refers to the instance)

class B
  extend M
end

B.foo # => B ('self' refers to the class)

2)のメソッドを で使用extend ActiveSupport::Concernできるようにして、メソッドを呼び出せるようにします。ActiveSupport::ConcernGeneralScopesincluded

3) ブロックはUser によってインクルードされたときに呼び出される( )@_included_block内から割り当てられ、評価されます。ドキュメントから:append_featuresbase.class_eval(&@_included_block)GeneralScopes

このモジュールが別のモジュールにインクルードされると、Ruby はappend_featuresこのモジュールを呼び出し、mod で受け取り側のモジュールを渡します。

4)superは の親を参照するためActiveSupport::Concern、が呼び出されます。Moduleincluded

于 2012-06-28T13:21:48.427 に答える