2011-03-12 08:24:36 -05:00
|
|
|
require 'active_support/concern'
|
2010-06-19 10:58:12 -04:00
|
|
|
require 'active_support/descendants_tracker'
|
2009-10-12 23:15:43 -04:00
|
|
|
require 'active_support/core_ext/array/wrap'
|
2010-11-17 18:32:43 -05:00
|
|
|
require 'active_support/core_ext/class/attribute'
|
2009-10-12 23:15:43 -04:00
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
2010-04-05 15:15:08 -04:00
|
|
|
require 'active_support/core_ext/kernel/singleton_class'
|
2011-04-10 12:52:42 -04:00
|
|
|
require 'active_support/core_ext/object/inclusion'
|
2009-04-22 20:41:28 -04:00
|
|
|
|
2008-01-18 21:44:45 -05:00
|
|
|
module ActiveSupport
|
2011-01-09 13:00:15 -05:00
|
|
|
# \Callbacks are code hooks that are run at key points in an object's lifecycle.
|
|
|
|
# The typical use case is to have a base class define a set of callbacks relevant
|
|
|
|
# to the other functionality it supplies, so that subclasses can install callbacks
|
|
|
|
# that enhance or modify the base functionality without needing to override
|
|
|
|
# or redefine methods of the base class.
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# Mixing in this module allows you to define the events in the object's lifecycle
|
|
|
|
# that will support callbacks (via +ClassMethods.define_callbacks+), set the instance
|
|
|
|
# methods, procs, or callback objects to be called (via +ClassMethods.set_callback+),
|
|
|
|
# and run the installed callbacks at the appropriate times (via +run_callbacks+).
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# Three kinds of callbacks are supported: before callbacks, run before a certain event;
|
|
|
|
# after callbacks, run after the event; and around callbacks, blocks that surround the
|
|
|
|
# event, triggering it when they yield. Callback code can be contained in instance
|
|
|
|
# methods, procs or lambdas, or callback objects that respond to certain predetermined
|
|
|
|
# methods. See +ClassMethods.set_callback+ for details.
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# ==== Example
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# class Record
|
|
|
|
# include ActiveSupport::Callbacks
|
|
|
|
# define_callbacks :save
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
|
|
|
# def save
|
2009-10-12 23:15:43 -04:00
|
|
|
# run_callbacks :save do
|
|
|
|
# puts "- save"
|
|
|
|
# end
|
2008-03-05 05:53:34 -05:00
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# class PersonRecord < Record
|
2009-10-12 23:15:43 -04:00
|
|
|
# set_callback :save, :before, :saving_message
|
2008-03-05 05:53:34 -05:00
|
|
|
# def saving_message
|
|
|
|
# puts "saving..."
|
|
|
|
# end
|
|
|
|
#
|
2009-10-12 23:15:43 -04:00
|
|
|
# set_callback :save, :after do |object|
|
2008-03-05 05:53:34 -05:00
|
|
|
# puts "saved"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# person = PersonRecord.new
|
|
|
|
# person.save
|
2008-03-05 05:53:34 -05:00
|
|
|
#
|
|
|
|
# Output:
|
|
|
|
# saving...
|
|
|
|
# - save
|
|
|
|
# saved
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2008-01-18 21:44:45 -05:00
|
|
|
module Callbacks
|
2009-10-14 00:30:06 -04:00
|
|
|
extend Concern
|
2009-10-12 23:15:43 -04:00
|
|
|
|
2010-06-19 10:58:12 -04:00
|
|
|
included do
|
|
|
|
extend ActiveSupport::DescendantsTracker
|
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
# Runs the callbacks for the given event.
|
|
|
|
#
|
|
|
|
# Calls the before and around callbacks in the order they were set, yields
|
|
|
|
# the block (if given one), and then runs the after callbacks in reverse order.
|
|
|
|
# Optionally accepts a key, which will be used to compile an optimized callback
|
|
|
|
# method for each key. See +ClassMethods.define_callbacks+ for more information.
|
|
|
|
#
|
|
|
|
# If the callback chain was halted, returns +false+. Otherwise returns the result
|
|
|
|
# of the block, or +true+ if no block is given.
|
|
|
|
#
|
|
|
|
# run_callbacks :save do
|
|
|
|
# save
|
|
|
|
# end
|
|
|
|
#
|
2009-10-12 23:15:43 -04:00
|
|
|
def run_callbacks(kind, *args, &block)
|
|
|
|
send("_run_#{kind}_callbacks", *args, &block)
|
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
class Callback #:nodoc:#
|
2009-10-12 23:15:43 -04:00
|
|
|
@@_callback_sequence = 0
|
|
|
|
|
2009-12-30 05:09:27 -05:00
|
|
|
attr_accessor :chain, :filter, :kind, :options, :per_key, :klass, :raw_filter
|
2009-10-12 23:15:43 -04:00
|
|
|
|
|
|
|
def initialize(chain, filter, kind, options, klass)
|
|
|
|
@chain, @kind, @klass = chain, kind, klass
|
|
|
|
normalize_options!(options)
|
|
|
|
|
|
|
|
@per_key = options.delete(:per_key)
|
|
|
|
@raw_filter, @options = filter, options
|
|
|
|
@filter = _compile_filter(filter)
|
|
|
|
@compiled_options = _compile_options(options)
|
|
|
|
@callback_id = next_id
|
|
|
|
|
|
|
|
_compile_per_key_options
|
|
|
|
end
|
|
|
|
|
|
|
|
def clone(chain, klass)
|
|
|
|
obj = super()
|
|
|
|
obj.chain = chain
|
|
|
|
obj.klass = klass
|
|
|
|
obj.per_key = @per_key.dup
|
|
|
|
obj.options = @options.dup
|
|
|
|
obj.per_key[:if] = @per_key[:if].dup
|
|
|
|
obj.per_key[:unless] = @per_key[:unless].dup
|
|
|
|
obj.options[:if] = @options[:if].dup
|
|
|
|
obj.options[:unless] = @options[:unless].dup
|
|
|
|
obj
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
def normalize_options!(options)
|
|
|
|
options[:if] = Array.wrap(options[:if])
|
|
|
|
options[:unless] = Array.wrap(options[:unless])
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
options[:per_key] ||= {}
|
|
|
|
options[:per_key][:if] = Array.wrap(options[:per_key][:if])
|
|
|
|
options[:per_key][:unless] = Array.wrap(options[:per_key][:unless])
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
chain.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_id
|
|
|
|
@@_callback_sequence += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def matches?(_kind, _filter)
|
|
|
|
@kind == _kind && @filter == _filter
|
|
|
|
end
|
|
|
|
|
|
|
|
def _update_filter(filter_options, new_options)
|
|
|
|
filter_options[:if].push(new_options[:unless]) if new_options.key?(:unless)
|
|
|
|
filter_options[:unless].push(new_options[:if]) if new_options.key?(:if)
|
|
|
|
end
|
|
|
|
|
|
|
|
def recompile!(_options, _per_key)
|
|
|
|
_update_filter(self.options, _options)
|
|
|
|
_update_filter(self.per_key, _per_key)
|
|
|
|
|
|
|
|
@callback_id = next_id
|
|
|
|
@filter = _compile_filter(@raw_filter)
|
|
|
|
@compiled_options = _compile_options(@options)
|
|
|
|
_compile_per_key_options
|
|
|
|
end
|
|
|
|
|
|
|
|
def _compile_per_key_options
|
|
|
|
key_options = _compile_options(@per_key)
|
|
|
|
|
|
|
|
@klass.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def _one_time_conditions_valid_#{@callback_id}?
|
|
|
|
true #{key_options[0]}
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
RUBY_EVAL
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# This will supply contents for before and around filters, and no
|
|
|
|
# contents for after filters (for the forward pass).
|
|
|
|
def start(key=nil, object=nil)
|
|
|
|
return if key && !object.send("_one_time_conditions_valid_#{@callback_id}?")
|
|
|
|
|
|
|
|
# options[0] is the compiled form of supplied conditions
|
|
|
|
# options[1] is the "end" for the conditional
|
|
|
|
#
|
2010-12-07 12:00:49 -05:00
|
|
|
case @kind
|
|
|
|
when :before
|
|
|
|
# if condition # before_save :filter_name, :if => :condition
|
|
|
|
# filter_name
|
|
|
|
# end
|
|
|
|
filter = <<-RUBY_EVAL
|
|
|
|
unless halted
|
2011-01-18 17:55:20 -05:00
|
|
|
# This double assignment is to prevent warnings in 1.9.3. I would
|
|
|
|
# remove the `result` variable, but apparently some other
|
|
|
|
# generated code is depending on this variable being set sometimes
|
|
|
|
# and sometimes not.
|
|
|
|
result = result = #{@filter}
|
2010-12-07 12:00:49 -05:00
|
|
|
halted = (#{chain.config[:terminator]})
|
|
|
|
end
|
|
|
|
RUBY_EVAL
|
|
|
|
|
|
|
|
[@compiled_options[0], filter, @compiled_options[1]].compact.join("\n")
|
|
|
|
when :around
|
|
|
|
# Compile around filters with conditions into proxy methods
|
|
|
|
# that contain the conditions.
|
|
|
|
#
|
|
|
|
# For `around_save :filter_name, :if => :condition':
|
|
|
|
#
|
|
|
|
# def _conditional_callback_save_17
|
|
|
|
# if condition
|
|
|
|
# filter_name do
|
|
|
|
# yield self
|
|
|
|
# end
|
|
|
|
# else
|
|
|
|
# yield self
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
name = "_conditional_callback_#{@kind}_#{next_id}"
|
|
|
|
@klass.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def #{name}(halted)
|
|
|
|
#{@compiled_options[0] || "if true"} && !halted
|
|
|
|
#{@filter} do
|
2009-10-12 23:15:43 -04:00
|
|
|
yield self
|
|
|
|
end
|
2010-12-07 12:00:49 -05:00
|
|
|
else
|
|
|
|
yield self
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2010-12-07 12:00:49 -05:00
|
|
|
end
|
|
|
|
RUBY_EVAL
|
|
|
|
"#{name}(halted) do"
|
2008-04-18 00:30:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# This will supply contents for around and after filters, but not
|
|
|
|
# before filters (for the backward pass).
|
|
|
|
def end(key=nil, object=nil)
|
|
|
|
return if key && !object.send("_one_time_conditions_valid_#{@callback_id}?")
|
2008-03-18 13:56:05 -04:00
|
|
|
|
2010-12-07 12:00:49 -05:00
|
|
|
case @kind
|
|
|
|
when :after
|
2009-10-12 23:15:43 -04:00
|
|
|
# if condition # after_save :filter_name, :if => :condition
|
|
|
|
# filter_name
|
|
|
|
# end
|
2010-12-07 12:00:49 -05:00
|
|
|
[@compiled_options[0], @filter, @compiled_options[1]].compact.join("\n")
|
|
|
|
when :around
|
2011-03-07 08:07:46 -05:00
|
|
|
<<-RUBY_EVAL
|
|
|
|
value
|
|
|
|
end
|
|
|
|
RUBY_EVAL
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# Options support the same options as filters themselves (and support
|
|
|
|
# symbols, string, procs, and objects), so compile a conditional
|
|
|
|
# expression based on the options
|
|
|
|
def _compile_options(options)
|
|
|
|
return [] if options[:if].empty? && options[:unless].empty?
|
|
|
|
|
|
|
|
conditions = []
|
|
|
|
|
|
|
|
unless options[:if].empty?
|
|
|
|
conditions << Array.wrap(_compile_filter(options[:if]))
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
unless options[:unless].empty?
|
|
|
|
conditions << Array.wrap(_compile_filter(options[:unless])).map {|f| "!#{f}"}
|
|
|
|
end
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
["if #{conditions.flatten.join(" && ")}", "end"]
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# Filters support:
|
|
|
|
#
|
|
|
|
# Arrays:: Used in conditions. This is used to specify
|
|
|
|
# multiple conditions. Used internally to
|
|
|
|
# merge conditions from skip_* filters
|
|
|
|
# Symbols:: A method to call
|
|
|
|
# Strings:: Some content to evaluate
|
|
|
|
# Procs:: A proc to call with the object
|
|
|
|
# Objects:: An object with a before_foo method on it to call
|
|
|
|
#
|
|
|
|
# All of these objects are compiled into methods and handled
|
|
|
|
# the same after this point:
|
|
|
|
#
|
|
|
|
# Arrays:: Merged together into a single filter
|
|
|
|
# Symbols:: Already methods
|
|
|
|
# Strings:: class_eval'ed into methods
|
|
|
|
# Procs:: define_method'ed into methods
|
|
|
|
# Objects::
|
|
|
|
# a method is created that calls the before_foo method
|
|
|
|
# on the object.
|
|
|
|
#
|
|
|
|
def _compile_filter(filter)
|
|
|
|
method_name = "_callback_#{@kind}_#{next_id}"
|
|
|
|
case filter
|
|
|
|
when Array
|
|
|
|
filter.map {|f| _compile_filter(f)}
|
|
|
|
when Symbol
|
|
|
|
filter
|
|
|
|
when String
|
|
|
|
"(#{filter})"
|
|
|
|
when Proc
|
|
|
|
@klass.send(:define_method, method_name, &filter)
|
|
|
|
return method_name if filter.arity <= 0
|
|
|
|
|
|
|
|
method_name << (filter.arity == 1 ? "(self)" : " self, Proc.new ")
|
2008-03-18 13:56:05 -04:00
|
|
|
else
|
2009-10-12 23:15:43 -04:00
|
|
|
@klass.send(:define_method, "#{method_name}_object") { filter }
|
|
|
|
|
|
|
|
_normalize_legacy_filter(kind, filter)
|
|
|
|
scopes = Array.wrap(chain.config[:scope])
|
|
|
|
method_to_call = scopes.map{ |s| s.is_a?(Symbol) ? send(s) : s }.join("_")
|
|
|
|
|
|
|
|
@klass.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def #{method_name}(&blk)
|
|
|
|
#{method_name}_object.send(:#{method_to_call}, self, &blk)
|
|
|
|
end
|
|
|
|
RUBY_EVAL
|
|
|
|
|
|
|
|
method_name
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
def _normalize_legacy_filter(kind, filter)
|
|
|
|
if !filter.respond_to?(kind) && filter.respond_to?(:filter)
|
2010-05-19 15:37:41 -04:00
|
|
|
filter.singleton_class.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def #{kind}(context, &block) filter(context, &block) end
|
|
|
|
RUBY_EVAL
|
2009-10-12 23:15:43 -04:00
|
|
|
elsif filter.respond_to?(:before) && filter.respond_to?(:after) && kind == :around
|
|
|
|
def filter.around(context)
|
|
|
|
should_continue = before(context)
|
|
|
|
yield if should_continue
|
|
|
|
after(context)
|
|
|
|
end
|
|
|
|
end
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2008-03-18 13:56:05 -04:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# An Array with a compile method
|
2011-01-09 13:00:15 -05:00
|
|
|
class CallbackChain < Array #:nodoc:#
|
2009-10-12 23:15:43 -04:00
|
|
|
attr_reader :name, :config
|
|
|
|
|
|
|
|
def initialize(name, config)
|
|
|
|
@name = name
|
|
|
|
@config = {
|
|
|
|
:terminator => "false",
|
|
|
|
:rescuable => false,
|
|
|
|
:scope => [ :kind ]
|
|
|
|
}.merge(config)
|
2008-03-18 13:56:05 -04:00
|
|
|
end
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
def compile(key=nil, object=nil)
|
|
|
|
method = []
|
|
|
|
method << "value = nil"
|
|
|
|
method << "halted = false"
|
|
|
|
|
|
|
|
each do |callback|
|
|
|
|
method << callback.start(key, object)
|
|
|
|
end
|
|
|
|
|
|
|
|
if config[:rescuable]
|
|
|
|
method << "rescued_error = nil"
|
|
|
|
method << "begin"
|
|
|
|
end
|
|
|
|
|
|
|
|
method << "value = yield if block_given? && !halted"
|
|
|
|
|
|
|
|
if config[:rescuable]
|
|
|
|
method << "rescue Exception => e"
|
|
|
|
method << "rescued_error = e"
|
|
|
|
method << "end"
|
2008-08-21 01:51:06 -04:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
|
|
|
|
reverse_each do |callback|
|
|
|
|
method << callback.end(key, object)
|
|
|
|
end
|
|
|
|
|
|
|
|
method << "raise rescued_error if rescued_error" if config[:rescuable]
|
|
|
|
method << "halted ? false : (block_given? ? value : true)"
|
|
|
|
method.compact.join("\n")
|
2008-08-21 01:51:06 -04:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
module ClassMethods
|
2011-01-09 13:00:15 -05:00
|
|
|
# Generate the internal runner method called by +run_callbacks+.
|
2009-10-12 23:15:43 -04:00
|
|
|
def __define_runner(symbol) #:nodoc:
|
2010-12-07 11:55:43 -05:00
|
|
|
body = send("_#{symbol}_callbacks").compile
|
2009-10-12 23:15:43 -04:00
|
|
|
|
2010-05-19 15:37:41 -04:00
|
|
|
silence_warnings do
|
|
|
|
undef_method "_run_#{symbol}_callbacks" if method_defined?("_run_#{symbol}_callbacks")
|
|
|
|
class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def _run_#{symbol}_callbacks(key = nil, &blk)
|
|
|
|
if key
|
|
|
|
name = "_run__\#{self.class.name.hash.abs}__#{symbol}__\#{key.hash.abs}__callbacks"
|
2009-10-12 23:15:43 -04:00
|
|
|
|
2010-05-19 15:37:41 -04:00
|
|
|
unless respond_to?(name)
|
|
|
|
self.class.__create_keyed_callback(name, :#{symbol}, self, &blk)
|
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
|
2010-05-19 15:37:41 -04:00
|
|
|
send(name, &blk)
|
|
|
|
else
|
|
|
|
#{body}
|
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2010-05-19 15:37:41 -04:00
|
|
|
private :_run_#{symbol}_callbacks
|
|
|
|
RUBY_EVAL
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# This is called the first time a callback is called with a particular
|
|
|
|
# key. It creates a new callback method for the key, calculating
|
|
|
|
# which callbacks can be omitted because of per_key conditions.
|
|
|
|
#
|
|
|
|
def __create_keyed_callback(name, kind, object, &blk) #:nodoc:
|
|
|
|
@_keyed_callbacks ||= {}
|
|
|
|
@_keyed_callbacks[name] ||= begin
|
|
|
|
str = send("_#{kind}_callbacks").compile(name, object)
|
2010-08-04 12:58:18 -04:00
|
|
|
class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
|
|
|
def #{name}() #{str} end
|
|
|
|
protected :#{name}
|
|
|
|
RUBY_EVAL
|
2009-10-12 23:15:43 -04:00
|
|
|
true
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# This is used internally to append, prepend and skip callbacks to the
|
|
|
|
# CallbackChain.
|
|
|
|
#
|
|
|
|
def __update_callbacks(name, filters = [], block = nil) #:nodoc:
|
2011-04-12 12:04:40 -04:00
|
|
|
type = filters.first.in?([:before, :after, :around]) ? filters.shift : :before
|
2009-10-12 23:15:43 -04:00
|
|
|
options = filters.last.is_a?(Hash) ? filters.pop : {}
|
|
|
|
filters.unshift(block) if block
|
2008-01-18 21:44:45 -05:00
|
|
|
|
2011-03-12 10:05:52 -05:00
|
|
|
([self] + ActiveSupport::DescendantsTracker.descendants(self)).reverse.each do |target|
|
2010-06-12 03:00:45 -04:00
|
|
|
chain = target.send("_#{name}_callbacks")
|
2010-11-17 18:32:43 -05:00
|
|
|
yield target, chain.dup, type, filters, options
|
2010-06-12 03:00:45 -04:00
|
|
|
target.__define_runner(name)
|
|
|
|
end
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
# Install a callback for the given event.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
# set_callback :save, :before, :before_meth
|
|
|
|
# set_callback :save, :after, :after_meth, :if => :condition
|
2011-03-07 08:07:46 -05:00
|
|
|
# set_callback :save, :around, lambda { |r| stuff; result = yield; stuff }
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# The second arguments indicates whether the callback is to be run +:before+,
|
|
|
|
# +:after+, or +:around+ the event. If omitted, +:before+ is assumed. This
|
|
|
|
# means the first example above can also be written as:
|
|
|
|
#
|
2010-12-13 22:13:33 -05:00
|
|
|
# set_callback :save, :before_meth
|
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# The callback can specified as a symbol naming an instance method; as a proc,
|
|
|
|
# lambda, or block; as a string to be instance evaluated; or as an object that
|
|
|
|
# responds to a certain method determined by the <tt>:scope</tt> argument to
|
|
|
|
# +define_callback+.
|
|
|
|
#
|
|
|
|
# If a proc, lambda, or block is given, its body is evaluated in the context
|
|
|
|
# of the current object. It can also optionally accept the current object as
|
|
|
|
# an argument.
|
|
|
|
#
|
|
|
|
# Before and around callbacks are called in the order that they are set; after
|
|
|
|
# callbacks are called in the reverse order.
|
2011-03-07 08:07:46 -05:00
|
|
|
#
|
|
|
|
# Around callbacks can access the return value from the event, if it
|
|
|
|
# wasn't halted, from the +yield+ call.
|
2011-01-09 13:00:15 -05:00
|
|
|
#
|
|
|
|
# ===== Options
|
|
|
|
#
|
|
|
|
# * <tt>:if</tt> - A symbol naming an instance method or a proc; the callback
|
|
|
|
# will be called only when it returns a true value.
|
|
|
|
# * <tt>:unless</tt> - A symbol naming an instance method or a proc; the callback
|
|
|
|
# will be called only when it returns a false value.
|
|
|
|
# * <tt>:prepend</tt> - If true, the callback will be prepended to the existing
|
|
|
|
# chain rather than appended.
|
|
|
|
# * <tt>:per_key</tt> - A hash with <tt>:if</tt> and <tt>:unless</tt> options;
|
|
|
|
# see "Per-key conditions" below.
|
|
|
|
#
|
|
|
|
# ===== Per-key conditions
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
# When creating or skipping callbacks, you can specify conditions that
|
2010-06-14 17:21:53 -04:00
|
|
|
# are always the same for a given key. For instance, in Action Pack,
|
2009-10-12 23:15:43 -04:00
|
|
|
# we convert :only and :except conditions into per-key conditions.
|
|
|
|
#
|
|
|
|
# before_filter :authenticate, :except => "index"
|
2010-06-14 16:52:47 -04:00
|
|
|
#
|
2009-10-12 23:15:43 -04:00
|
|
|
# becomes
|
2010-06-14 16:52:47 -04:00
|
|
|
#
|
2010-10-03 18:54:08 -04:00
|
|
|
# set_callback :process_action, :before, :authenticate, :per_key => {:unless => proc {|c| c.action_name == "index"}}
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# Per-key conditions are evaluated only once per use of a given key.
|
2009-10-12 23:15:43 -04:00
|
|
|
# In the case of the above example, you would do:
|
|
|
|
#
|
2010-10-03 18:54:08 -04:00
|
|
|
# run_callbacks(:process_action, action_name) { ... dispatch stuff ... }
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
# In that case, each action_name would get its own compiled callback
|
|
|
|
# method that took into consideration the per_key conditions. This
|
|
|
|
# is a speed improvement for ActionPack.
|
|
|
|
#
|
2009-12-28 19:28:26 -05:00
|
|
|
def set_callback(name, *filter_list, &block)
|
2010-06-12 03:00:45 -04:00
|
|
|
mapped = nil
|
|
|
|
|
2010-11-17 18:32:43 -05:00
|
|
|
__update_callbacks(name, filter_list, block) do |target, chain, type, filters, options|
|
2010-06-12 03:00:45 -04:00
|
|
|
mapped ||= filters.map do |filter|
|
2009-10-12 23:15:43 -04:00
|
|
|
Callback.new(chain, filter, type, options.dup, self)
|
|
|
|
end
|
|
|
|
|
2010-06-12 03:00:45 -04:00
|
|
|
filters.each do |filter|
|
2010-08-14 01:13:00 -04:00
|
|
|
chain.delete_if {|c| c.matches?(type, filter) }
|
2010-06-12 03:00:45 -04:00
|
|
|
end
|
|
|
|
|
2010-09-25 18:30:56 -04:00
|
|
|
options[:prepend] ? chain.unshift(*(mapped.reverse)) : chain.push(*mapped)
|
2010-11-17 18:32:43 -05:00
|
|
|
|
|
|
|
target.send("_#{name}_callbacks=", chain)
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
# Skip a previously set callback. Like +set_callback+, <tt>:if</tt> or <tt>:unless</tt>
|
|
|
|
# options may be passed in order to control when the callback is skipped.
|
2010-08-05 16:57:20 -04:00
|
|
|
#
|
|
|
|
# class Writer < Person
|
|
|
|
# skip_callback :validate, :before, :check_membership, :if => lambda { self.age > 18 }
|
|
|
|
# end
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2009-12-28 19:28:26 -05:00
|
|
|
def skip_callback(name, *filter_list, &block)
|
2010-11-17 18:32:43 -05:00
|
|
|
__update_callbacks(name, filter_list, block) do |target, chain, type, filters, options|
|
2009-10-12 23:15:43 -04:00
|
|
|
filters.each do |filter|
|
|
|
|
filter = chain.find {|c| c.matches?(type, filter) }
|
|
|
|
|
|
|
|
if filter && options.any?
|
2009-12-31 19:48:12 -05:00
|
|
|
new_filter = filter.clone(chain, self)
|
|
|
|
chain.insert(chain.index(filter), new_filter)
|
|
|
|
new_filter.recompile!(options, options[:per_key] || {})
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2009-12-31 19:48:12 -05:00
|
|
|
|
|
|
|
chain.delete(filter)
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
2010-11-17 18:32:43 -05:00
|
|
|
target.send("_#{name}_callbacks=", chain)
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
# Remove all set callbacks for the given event.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
def reset_callbacks(symbol)
|
2009-12-31 19:48:12 -05:00
|
|
|
callbacks = send("_#{symbol}_callbacks")
|
2010-06-12 03:00:45 -04:00
|
|
|
|
2010-07-05 06:50:08 -04:00
|
|
|
ActiveSupport::DescendantsTracker.descendants(self).each do |target|
|
2010-11-17 18:32:43 -05:00
|
|
|
chain = target.send("_#{symbol}_callbacks").dup
|
2010-06-12 03:00:45 -04:00
|
|
|
callbacks.each { |c| chain.delete(c) }
|
2010-11-17 18:32:43 -05:00
|
|
|
target.send("_#{symbol}_callbacks=", chain)
|
2010-06-12 03:00:45 -04:00
|
|
|
target.__define_runner(symbol)
|
|
|
|
end
|
|
|
|
|
2010-11-17 18:32:43 -05:00
|
|
|
self.send("_#{symbol}_callbacks=", callbacks.dup.clear)
|
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
__define_runner(symbol)
|
|
|
|
end
|
|
|
|
|
2011-01-09 13:00:15 -05:00
|
|
|
# Define sets of events in the object lifecycle that support callbacks.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
# define_callbacks :validate
|
2011-01-09 13:00:15 -05:00
|
|
|
# define_callbacks :initialize, :save, :destroy
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# ===== Options
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# * <tt>:terminator</tt> - Determines when a before filter will halt the callback
|
|
|
|
# chain, preventing following callbacks from being called and the event from being
|
|
|
|
# triggered. This is a string to be eval'ed. The result of the callback is available
|
|
|
|
# in the <tt>result</tt> variable.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# define_callbacks :validate, :terminator => "result == false"
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# In this example, if any before validate callbacks returns +false+,
|
|
|
|
# other callbacks are not executed. Defaults to "false", meaning no value
|
|
|
|
# halts the chain.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
|
|
|
# * <tt>:rescuable</tt> - By default, after filters are not executed if
|
2011-01-12 22:37:34 -05:00
|
|
|
# the given block or a before filter raises an error. By setting this option
|
|
|
|
# to <tt>true</tt> exception raised by given block is stored and after
|
|
|
|
# executing all the after callbacks the stored exception is raised.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# * <tt>:scope</tt> - Indicates which methods should be executed when an object
|
|
|
|
# is used as a callback.
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# class Audit
|
|
|
|
# def before(caller)
|
|
|
|
# puts 'Audit: before is called'
|
|
|
|
# end
|
2010-06-14 16:52:47 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# def before_save(caller)
|
|
|
|
# puts 'Audit: before_save is called'
|
|
|
|
# end
|
|
|
|
# end
|
2010-06-14 15:48:09 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# class Account
|
|
|
|
# include ActiveSupport::Callbacks
|
2010-06-14 16:52:47 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# define_callbacks :save
|
|
|
|
# set_callback :save, :before, Audit.new
|
2010-06-14 16:52:47 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# def save
|
|
|
|
# run_callbacks :save do
|
|
|
|
# puts 'save in main'
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
2010-06-14 15:48:09 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# In the above case whenever you save an account the method <tt>Audit#before</tt> will
|
|
|
|
# be called. On the other hand
|
2010-06-14 15:48:09 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# define_callbacks :save, :scope => [:kind, :name]
|
2010-06-14 15:48:09 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# would trigger <tt>Audit#before_save</tt> instead. That's constructed by calling
|
|
|
|
# <tt>#{kind}_#{name}</tt> on the given instance. In this case "kind" is "before" and
|
|
|
|
# "name" is "save". In this context +:kind+ and +:name+ have special meanings: +:kind+
|
|
|
|
# refers to the kind of callback (before/after/around) and +:name+ refers to the
|
|
|
|
# method on which callbacks are being defined.
|
2010-06-14 15:48:09 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# A declaration like
|
2009-10-12 23:15:43 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# define_callbacks :save, :scope => [:name]
|
2010-06-14 16:18:29 -04:00
|
|
|
#
|
2011-01-09 13:00:15 -05:00
|
|
|
# would call <tt>Audit#save</tt>.
|
2010-06-14 16:18:29 -04:00
|
|
|
#
|
2009-12-31 19:48:12 -05:00
|
|
|
def define_callbacks(*callbacks)
|
|
|
|
config = callbacks.last.is_a?(Hash) ? callbacks.pop : {}
|
|
|
|
callbacks.each do |callback|
|
2010-11-17 18:32:43 -05:00
|
|
|
class_attribute "_#{callback}_callbacks"
|
|
|
|
send("_#{callback}_callbacks=", CallbackChain.new(callback, config))
|
2009-12-31 19:48:12 -05:00
|
|
|
__define_runner(callback)
|
2009-10-12 23:15:43 -04:00
|
|
|
end
|
|
|
|
end
|
2008-01-18 21:44:45 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|