Class: ActiveSupport::Callbacks::Callback

Inherits:
Object
  • Object
show all
Defined in:
activesupport/lib/active_support/callbacks.rb

Constant Summary

@@_callback_sequence =
0

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (Callback) initialize(chain, filter, kind, options, klass)

A new instance of Callback



106
107
108
109
110
111
112
113
114
115
116
117
# File 'activesupport/lib/active_support/callbacks.rb', line 106

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

Instance Attribute Details

- (Object) chain

Returns the value of attribute chain



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def chain
  @chain
end

- (Object) filter

Returns the value of attribute filter



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def filter
  @filter
end

- (Object) kind

Returns the value of attribute kind



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def kind
  @kind
end

- (Object) klass

Returns the value of attribute klass



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def klass
  @klass
end

- (Object) options

Returns the value of attribute options



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def options
  @options
end

- (Object) per_key

Returns the value of attribute per_key



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def per_key
  @per_key
end

- (Object) raw_filter

Returns the value of attribute raw_filter



104
105
106
# File 'activesupport/lib/active_support/callbacks.rb', line 104

def raw_filter
  @raw_filter
end

Instance Method Details

- (Object) _compile_per_key_options



168
169
170
171
172
173
174
175
176
# File 'activesupport/lib/active_support/callbacks.rb', line 168

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]}
    end
  RUBY_EVAL
end

- (Object) _update_filter(filter_options, new_options)



153
154
155
156
# File 'activesupport/lib/active_support/callbacks.rb', line 153

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

- (Object) clone(chain, klass)



119
120
121
122
123
124
125
126
127
128
129
130
# File 'activesupport/lib/active_support/callbacks.rb', line 119

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
end

- (Object) end(key = nil, object = nil)

This will supply contents for around and after filters, but not before filters (for the backward pass).



234
235
236
237
238
239
240
241
242
243
244
245
246
247
# File 'activesupport/lib/active_support/callbacks.rb', line 234

def end(key=nil, object=nil)
  return if key && !object.send("_one_time_conditions_valid_#{@callback_id}?")

  if @kind == :around || @kind == :after
    # if condition    # after_save :filter_name, :if => :condition
    #   filter_name
    # end
    if @kind == :after
      [@compiled_options[0], @filter, @compiled_options[1]].compact.join("\n")
    else
      "end"
    end
  end
end

- (Boolean) matches?(_kind, _filter)

Returns:

  • (Boolean)


149
150
151
# File 'activesupport/lib/active_support/callbacks.rb', line 149

def matches?(_kind, _filter)
  @kind == _kind && @filter == _filter
end

- (Object) name



141
142
143
# File 'activesupport/lib/active_support/callbacks.rb', line 141

def name
  chain.name
end

- (Object) next_id



145
146
147
# File 'activesupport/lib/active_support/callbacks.rb', line 145

def next_id
  @@_callback_sequence += 1
end

- (Object) normalize_options!(options)



132
133
134
135
136
137
138
139
# File 'activesupport/lib/active_support/callbacks.rb', line 132

def normalize_options!(options)
  options[:if] = Array.wrap(options[:if])
  options[:unless] = Array.wrap(options[:unless])

  options[:per_key] ||= {}
  options[:per_key][:if] = Array.wrap(options[:per_key][:if])
  options[:per_key][:unless] = Array.wrap(options[:per_key][:unless])
end

- (Object) recompile!(_options, _per_key)



158
159
160
161
162
163
164
165
166
# File 'activesupport/lib/active_support/callbacks.rb', line 158

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

- (Object) start(key = nil, object = nil)

This will supply contents for before and around filters, and no contents for after filters (for the forward pass).



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
225
226
227
228
229
230
# File 'activesupport/lib/active_support/callbacks.rb', line 180

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
  #
  if @kind == :before || @kind == :around
    if @kind == :before
      # if condition    # before_save :filter_name, :if => :condition
      #   filter_name
      # end
      filter = <<-RUBY_EVAL
        unless halted
          result = #{@filter}
          halted = (#{chain.config[:terminator]})
        end
      RUBY_EVAL

      [@compiled_options[0], filter, @compiled_options[1]].compact.join("\n")
    else
      # 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
              yield self
            end
          else
            yield self
          end
        end
      RUBY_EVAL
      "#{name}(halted) do"
    end
  end
end