提交 764f69e8 编写于 作者: B Bogdan Gusiev

AS::Callbacks optimized to reduce call backtrace

上级 363a06f3
......@@ -76,7 +76,8 @@ module Callbacks
#
def run_callbacks(kind, key = nil, &block)
#TODO: deprecate key argument
self.class.__run_callbacks(kind, self, &block)
runner_name = self.class.__define_callbacks(kind, self)
send(runner_name, &block)
end
private
......@@ -323,18 +324,17 @@ def compile
method << callbacks
method << "halted ? false : (block_given? ? value : true)"
method.flatten.compact.join("\n")
method.join("\n")
end
end
module ClassMethods
# This method runs callback chain for the given kind.
# If this called first time it creates a new callback method for the kind.
# This method defines callback chain method for the given kind
# if it was not yet defined.
# This generated method plays caching role.
#
def __run_callbacks(kind, object, &blk) #:nodoc:
def __define_callbacks(kind, object) #:nodoc:
name = __callback_runner_name(kind)
unless object.respond_to?(name, true)
str = object.send("_#{kind}_callbacks").compile
......@@ -343,7 +343,7 @@ def #{name}() #{str} end
protected :#{name}
RUBY_EVAL
end
object.send(name, &blk)
name
end
def __reset_runner(symbol)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册