コード スニペットは次のとおりです。
モジュール: 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が実行されると、コントロールはどのクラスに移動しますか?
誰かが私に実行された制御フローを理解させたり、私が持っている質問に関連する概念を説明する関連リソースを教えてくれたりすると、大きな助けになります.