Skip to content

Commit

Permalink
Merge pull request #6351 from bogdan/callbacks
Browse files Browse the repository at this point in the history
AS::Callbacks remove useless code, improve performance
  • Loading branch information
josevalim committed May 17, 2012
2 parents 77a4072 + 30b31f5 commit ad8b0a4
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions activesupport/lib/active_support/callbacks.rb
Expand Up @@ -328,26 +328,17 @@ module ClassMethods
# if it was not yet defined.
# This generated method plays caching role.
def __define_callbacks(kind, object) #:nodoc:
name = __callback_runner_name(kind)
chain = object.send("_#{kind}_callbacks")
name = "_run_callbacks_#{chain.object_id}"
unless object.respond_to?(name, true)
str = object.send("_#{kind}_callbacks").compile
class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
def #{name}() #{str} end
def #{name}() #{chain.compile} end
protected :#{name}
RUBY_EVAL
end
name
end

def __reset_runner(symbol)
name = __callback_runner_name(symbol)
undef_method(name) if method_defined?(name)
end

def __callback_runner_name(kind)
"_run__#{self.name.hash.abs}__#{kind}__callbacks"
end

# This is used internally to append, prepend and skip callbacks to the
# CallbackChain.
#
Expand All @@ -359,7 +350,6 @@ def __update_callbacks(name, filters = [], block = nil) #:nodoc:
([self] + ActiveSupport::DescendantsTracker.descendants(self)).reverse.each do |target|
chain = target.send("_#{name}_callbacks")
yield target, chain.dup, type, filters, options
target.__reset_runner(name)
end
end

Expand Down Expand Up @@ -447,12 +437,9 @@ def reset_callbacks(symbol)
chain = target.send("_#{symbol}_callbacks").dup
callbacks.each { |c| chain.delete(c) }
target.send("_#{symbol}_callbacks=", chain)
target.__reset_runner(symbol)
end

self.send("_#{symbol}_callbacks=", callbacks.dup.clear)

__reset_runner(symbol)
end

# Define sets of events in the object lifecycle that support callbacks.
Expand Down

0 comments on commit ad8b0a4

Please sign in to comment.