Class: ActiveSupport::Callbacks::Callback
- Defined in:
- lib/active_support/callbacks.rb
Overview
:nodoc:#
Constant Summary collapse
- @@_callback_sequence =
0
Instance Attribute Summary collapse
-
#chain ⇒ Object
Returns the value of attribute chain.
-
#filter ⇒ Object
Returns the value of attribute filter.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#klass ⇒ Object
Returns the value of attribute klass.
-
#options ⇒ Object
Returns the value of attribute options.
-
#per_key ⇒ Object
Returns the value of attribute per_key.
-
#raw_filter ⇒ Object
Returns the value of attribute raw_filter.
Instance Method Summary collapse
- #_compile_per_key_options ⇒ Object
- #_update_filter(filter_options, new_options) ⇒ Object
- #clone(chain, klass) ⇒ Object
-
#end(key = nil, object = nil) ⇒ Object
This will supply contents for around and after filters, but not before filters (for the backward pass).
-
#initialize(chain, filter, kind, options, klass) ⇒ Callback
constructor
A new instance of Callback.
- #matches?(_kind, _filter) ⇒ Boolean
- #name ⇒ Object
- #next_id ⇒ Object
- #normalize_options!(options) ⇒ Object
- #recompile!(_options, _per_key) ⇒ Object
-
#start(key = nil, object = nil) ⇒ Object
This will supply contents for before and around filters, and no contents for after filters (for the forward pass).
Constructor Details
#initialize(chain, filter, kind, options, klass) ⇒ Callback
Returns a new instance of Callback.
97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/active_support/callbacks.rb', line 97 def initialize(chain, filter, kind, , klass) @chain, @kind, @klass = chain, kind, klass () @per_key = .delete(:per_key) @raw_filter, @options = filter, @filter = _compile_filter(filter) @compiled_options = () @callback_id = next_id end |
Instance Attribute Details
#chain ⇒ Object
Returns the value of attribute chain.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def chain @chain end |
#filter ⇒ Object
Returns the value of attribute filter.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def filter @filter end |
#kind ⇒ Object
Returns the value of attribute kind.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def kind @kind end |
#klass ⇒ Object
Returns the value of attribute klass.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def klass @klass end |
#options ⇒ Object
Returns the value of attribute options.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def @options end |
#per_key ⇒ Object
Returns the value of attribute per_key.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def per_key @per_key end |
#raw_filter ⇒ Object
Returns the value of attribute raw_filter.
95 96 97 |
# File 'lib/active_support/callbacks.rb', line 95 def raw_filter @raw_filter end |
Instance Method Details
#_compile_per_key_options ⇒ Object
159 160 161 162 163 164 165 166 167 |
# File 'lib/active_support/callbacks.rb', line 159 def = (@per_key) @klass.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1 def _one_time_conditions_valid_#{@callback_id}? true if #{} end RUBY_EVAL end |
#_update_filter(filter_options, new_options) ⇒ Object
144 145 146 147 |
# File 'lib/active_support/callbacks.rb', line 144 def _update_filter(, ) [:if].push([:unless]) if .key?(:unless) [:unless].push([:if]) if .key?(:if) end |
#clone(chain, klass) ⇒ Object
110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/active_support/callbacks.rb', line 110 def clone(chain, klass) obj = super() obj.chain = chain obj.klass = klass obj.per_key = @per_key.dup obj. = @options.dup obj.per_key[:if] = @per_key[:if].dup obj.per_key[:unless] = @per_key[:unless].dup obj.[:if] = @options[:if].dup obj.[:unless] = @options[:unless].dup obj end |
#end(key = nil, object = nil) ⇒ Object
This will supply contents for around and after filters, but not before filters (for the backward pass).
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
# File 'lib/active_support/callbacks.rb', line 228 def end(key=nil, object=nil) return if key && !object.send("_one_time_conditions_valid_#{@callback_id}?") case @kind when :after # after_save :filter_name, :if => :condition <<-RUBY_EVAL if #{@compiled_options} #{@filter} end RUBY_EVAL when :around <<-RUBY_EVAL value end RUBY_EVAL end end |
#matches?(_kind, _filter) ⇒ Boolean
140 141 142 |
# File 'lib/active_support/callbacks.rb', line 140 def matches?(_kind, _filter) @kind == _kind && @filter == _filter end |
#name ⇒ Object
132 133 134 |
# File 'lib/active_support/callbacks.rb', line 132 def name chain.name end |
#next_id ⇒ Object
136 137 138 |
# File 'lib/active_support/callbacks.rb', line 136 def next_id @@_callback_sequence += 1 end |
#normalize_options!(options) ⇒ Object
123 124 125 126 127 128 129 130 |
# File 'lib/active_support/callbacks.rb', line 123 def () [:if] = Array.wrap([:if]) [:unless] = Array.wrap([:unless]) [:per_key] ||= {} [:per_key][:if] = Array.wrap([:per_key][:if]) [:per_key][:unless] = Array.wrap([:per_key][:unless]) end |
#recompile!(_options, _per_key) ⇒ Object
149 150 151 152 153 154 155 156 157 |
# File 'lib/active_support/callbacks.rb', line 149 def recompile!(, _per_key) _update_filter(self., ) _update_filter(self.per_key, _per_key) @callback_id = next_id @filter = _compile_filter(@raw_filter) @compiled_options = (@options) end |
#start(key = nil, object = nil) ⇒ Object
This will supply contents for before and around filters, and no contents for after filters (for the forward pass).
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/active_support/callbacks.rb', line 171 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 # case @kind when :before # if condition # before_save :filter_name, :if => :condition # filter_name # end <<-RUBY_EVAL if !halted && #{@compiled_options} # This double assignment is to prevent warnings in 1.9.3 as # the `result` variable is not always used except if the # terminator code refers to it. result = result = #{@filter} halted = (#{chain.config[:terminator]}) if halted halted_callback_hook(#{@raw_filter.inspect.inspect}) end end RUBY_EVAL 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) if #{@compiled_options} && !halted #{@filter} do yield self end else yield self end end RUBY_EVAL "#{name}(halted) do" end end |