Use run_callbacks; the generated _run_<name>_callbacks method is not a public interface.

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
This commit is contained in:
John Firebaugh 2011-01-09 10:15:05 -08:00 committed by Santiago Pastorino
parent 9666b6a625
commit 57bc25c5f8
14 changed files with 28 additions and 31 deletions

View File

@ -25,7 +25,7 @@ module ActionDispatch
end
def call(env)
_run_call_callbacks do
run_callbacks :call do
@app.call(env)
end
end

View File

@ -43,12 +43,12 @@ module ActionDispatch
# Execute all prepare callbacks.
def self.prepare!
new(nil).send(:_run_prepare_callbacks)
new(nil).run_callbacks :prepare
end
# Execute all cleanup callbacks.
def self.cleanup!
new(nil).send(:_run_cleanup_callbacks)
new(nil).run_callbacks :cleanup
end
def initialize(app)
@ -64,12 +64,12 @@ module ActionDispatch
end
def call(env)
_run_prepare_callbacks
run_callbacks :prepare
response = @app.call(env)
response[2].extend(CleanupOnClose)
response
rescue Exception
_run_cleanup_callbacks
run_callbacks :cleanup
raise
end
end

View File

@ -41,7 +41,7 @@ modules:
define_model_callbacks :create
def create
_run_create_callbacks do
run_callbacks :create do
# Your create action methods here
end
end

View File

@ -24,14 +24,11 @@ module ActiveModel
# you want callbacks on in a block so that the callbacks get a chance to fire:
#
# def create
# _run_create_callbacks do
# run_callbacks :create do
# # Your create action methods here
# end
# end
#
# The _run_<method_name>_callbacks methods are dynamically created when you extend
# the <tt>ActiveModel::Callbacks</tt> module.
#
# Then in your class, you can use the +before_create+, +after_create+ and +around_create+
# methods, just as you would in an Active Record module.
#

View File

@ -207,7 +207,7 @@ module ActiveModel
protected
def run_validations!
_run_validate_callbacks
run_callbacks :validate
errors.empty?
end
end

View File

@ -50,7 +50,7 @@ module ActiveModel
# Overwrite run validations to include callbacks.
def run_validations!
_run_validation_callbacks { super }
run_callbacks(:validation) { super }
end
end
end

View File

@ -37,7 +37,7 @@ class CallbacksTest < ActiveModel::TestCase
end
def create
_run_create_callbacks do
run_callbacks :create do
@callbacks << :create
@valid
end
@ -92,7 +92,7 @@ class CallbacksTest < ActiveModel::TestCase
def callback1; self.history << 'callback1'; end
def callback2; self.history << 'callback2'; end
def create
_run_create_callbacks {}
run_callbacks(:create) {}
self
end
end

View File

@ -1400,7 +1400,7 @@ MSG
self.attributes = attributes unless attributes.nil?
result = yield self if block_given?
_run_initialize_callbacks
run_callbacks :initialize
result
end
@ -1437,8 +1437,8 @@ MSG
@aggregation_cache = {}
@readonly = @destroyed = @marked_for_destruction = false
@new_record = false
_run_find_callbacks
_run_initialize_callbacks
run_callbacks :find
run_callbacks :initialize
end
# Specifies how the record is dumped by +Marshal+.

View File

@ -237,25 +237,25 @@ module ActiveRecord
end
def destroy #:nodoc:
_run_destroy_callbacks { super }
run_callbacks(:destroy) { super }
end
def touch(*) #:nodoc:
_run_touch_callbacks { super }
run_callbacks(:touch) { super }
end
private
def create_or_update #:nodoc:
_run_save_callbacks { super }
run_callbacks(:save) { super }
end
def create #:nodoc:
_run_create_callbacks { super }
run_callbacks(:create) { super }
end
def update(*) #:nodoc:
_run_update_callbacks { super }
run_callbacks(:update) { super }
end
end
end

View File

@ -212,7 +212,7 @@ module ActiveRecord
# calling +checkout+ on this pool.
def checkin(conn)
@connection_mutex.synchronize do
conn.send(:_run_checkin_callbacks) do
conn.run_callbacks :checkin do
@checked_out.delete conn
@queue.signal
end

View File

@ -259,7 +259,7 @@ module ActiveRecord
# Call the after_commit callbacks
def committed! #:nodoc:
_run_commit_callbacks
run_callbacks :commit
ensure
clear_transaction_record_state
end
@ -267,7 +267,7 @@ module ActiveRecord
# Call the after rollback callbacks. The restore_state argument indicates if the record
# state should be rolled back to the beginning or just to the last savepoint.
def rolledback!(force_restore_state = false) #:nodoc:
_run_rollback_callbacks
run_callbacks :rollback
ensure
restore_transaction_record_state(force_restore_state)
end

View File

@ -31,14 +31,14 @@ module ActiveSupport
def run(runner)
result = '.'
begin
_run_setup_callbacks do
run_callbacks :setup do
result = super
end
rescue Exception => e
result = runner.puke(self.class, method_name, e)
ensure
begin
_run_teardown_callbacks
run_callbacks :teardown
rescue Exception => e
result = runner.puke(self.class, method_name, e)
end
@ -62,7 +62,7 @@ module ActiveSupport
begin
begin
_run_setup_callbacks do
run_callbacks :setup do
setup
__send__(@method_name)
mocha_verify(mocha_counter) if mocha_counter
@ -77,7 +77,7 @@ module ActiveSupport
ensure
begin
teardown
_run_teardown_callbacks
run_callbacks :teardown
rescue Test::Unit::AssertionFailedError => e
add_failure(e.message, e.backtrace)
rescue Exception => e

View File

@ -70,7 +70,7 @@ class EmptyParent
end
def dispatch
_run_dispatch_callbacks
run_callbacks :dispatch
self
end
end

View File

@ -14,7 +14,7 @@ module CallbacksTest
def after_save1; self.history << :after; end
def save
self.send(:_run_save_callbacks) do
run_callbacks :save do
raise 'boom'
end
end