Class: ActiveSupport::Callbacks::Callback
- Defined in:
- lib/active_support/callbacks.rb
Overview
:nodoc:#
Instance Attribute Summary collapse
-
#chain_config ⇒ Object
readonly
Returns the value of attribute chain_config.
-
#kind ⇒ Object
Returns the value of attribute kind.
-
#name ⇒ Object
Returns the value of attribute name.
Class Method Summary collapse
Instance Method Summary collapse
-
#apply(next_callback) ⇒ Object
Wraps code with filter.
- #duplicates?(other) ⇒ Boolean
- #filter ⇒ Object
-
#initialize(name, filter, kind, options, chain_config) ⇒ Callback
constructor
A new instance of Callback.
- #matches?(_kind, _filter) ⇒ Boolean
- #merge(chain, new_options) ⇒ Object
- #raw_filter ⇒ Object
Constructor Details
#initialize(name, filter, kind, options, chain_config) ⇒ Callback
Returns a new instance of Callback.
346 347 348 349 350 351 352 353 354 |
# File 'lib/active_support/callbacks.rb', line 346 def initialize(name, filter, kind, , chain_config) @chain_config = chain_config @name = name @kind = kind @filter = filter @key = compute_identifier filter @if = Array([:if]) @unless = Array([:unless]) end |
Instance Attribute Details
#chain_config ⇒ Object (readonly)
Returns the value of attribute chain_config.
344 345 346 |
# File 'lib/active_support/callbacks.rb', line 344 def chain_config @chain_config end |
#kind ⇒ Object
Returns the value of attribute kind.
343 344 345 |
# File 'lib/active_support/callbacks.rb', line 343 def kind @kind end |
#name ⇒ Object
Returns the value of attribute name.
343 344 345 |
# File 'lib/active_support/callbacks.rb', line 343 def name @name end |
Class Method Details
.build(chain, filter, kind, options) ⇒ Object
339 340 341 |
# File 'lib/active_support/callbacks.rb', line 339 def self.build(chain, filter, kind, ) new chain.name, filter, kind, , chain.config end |
Instance Method Details
#apply(next_callback) ⇒ Object
Wraps code with filter
385 386 387 388 389 390 391 392 393 394 395 396 397 |
# File 'lib/active_support/callbacks.rb', line 385 def apply(next_callback) user_conditions = conditions_lambdas user_callback = make_lambda @filter case kind when :before Filters::Before.build(next_callback, user_callback, user_conditions, chain_config, @filter) when :after Filters::After.build(next_callback, user_callback, user_conditions, chain_config) when :around Filters::Around.build(next_callback, user_callback, user_conditions, chain_config) end end |
#duplicates?(other) ⇒ Boolean
375 376 377 378 379 380 381 382 |
# File 'lib/active_support/callbacks.rb', line 375 def duplicates?(other) case @filter when Symbol, String matches?(other.kind, other.filter) else false end end |
#filter ⇒ Object
356 |
# File 'lib/active_support/callbacks.rb', line 356 def filter; @key; end |
#matches?(_kind, _filter) ⇒ Boolean
371 372 373 |
# File 'lib/active_support/callbacks.rb', line 371 def matches?(_kind, _filter) @kind == _kind && filter == _filter end |
#merge(chain, new_options) ⇒ Object
359 360 361 362 363 364 365 366 367 368 369 |
# File 'lib/active_support/callbacks.rb', line 359 def merge(chain, ) = { :if => @if.dup, :unless => @unless.dup } [:if].concat Array(.fetch(:unless, [])) [:unless].concat Array(.fetch(:if, [])) self.class.build chain, @filter, @kind, end |
#raw_filter ⇒ Object
357 |
# File 'lib/active_support/callbacks.rb', line 357 def raw_filter; @filter; end |