Class: ActiveRecord::Reflection::AbstractReflection

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/reflection.rb

Overview

Defined Under Namespace

Classes: JoinKeys

Instance Method Summary collapse

Instance Method Details

#alias_candidate(name) ⇒ Object



282
283
284
# File 'lib/active_record/reflection.rb', line 282

def alias_candidate(name)
  "#{plural_name}_#{name}"
end

#build_association(attributes, &block) ⇒ Object

Returns a new, unsaved instance of the associated class. attributes will be passed to the class's constructor.



156
157
158
# File 'lib/active_record/reflection.rb', line 156

def build_association(attributes, &block)
  klass.new(attributes, &block)
end

#build_scope(table, predicate_builder = predicate_builder(table), klass = self.klass) ⇒ Object



294
295
296
297
298
299
300
# File 'lib/active_record/reflection.rb', line 294

def build_scope(table, predicate_builder = predicate_builder(table), klass = self.klass)
  Relation.create(
    klass,
    table: table,
    predicate_builder: predicate_builder
  )
end

#chainObject



286
287
288
# File 'lib/active_record/reflection.rb', line 286

def chain
  collect_join_chain
end

#check_validity_of_inverse!Object



238
239
240
241
242
243
244
# File 'lib/active_record/reflection.rb', line 238

def check_validity_of_inverse!
  unless polymorphic?
    if has_inverse? && inverse_of.nil?
      raise InverseOfAssociationNotFoundError.new(self)
    end
  end
end

#class_nameObject

Returns the class name for the macro.

composed_of :balance, class_name: 'Money' returns 'Money' has_many :clients returns 'Client'



164
165
166
# File 'lib/active_record/reflection.rb', line 164

def class_name
  @class_name ||= (options[:class_name] || derive_class_name).to_s
end

#constraintsObject



216
217
218
# File 'lib/active_record/reflection.rb', line 216

def constraints
  chain.flat_map(&:scopes)
end

#counter_cache_columnObject



220
221
222
223
224
225
226
227
228
229
230
# File 'lib/active_record/reflection.rb', line 220

def counter_cache_column
  if belongs_to?
    if options[:counter_cache] == true
      "#{active_record.name.demodulize.underscore.pluralize}_count"
    elsif options[:counter_cache]
      options[:counter_cache].to_s
    end
  else
    options[:counter_cache] ? options[:counter_cache].to_s : "#{name}_count"
  end
end

#counter_must_be_updated_by_has_many?Boolean

Returns:

  • (Boolean)


278
279
280
# File 'lib/active_record/reflection.rb', line 278

def counter_must_be_updated_by_has_many?
  !inverse_updates_counter_in_memory? && has_cached_counter?
end

#get_join_keys(association_klass) ⇒ Object



290
291
292
# File 'lib/active_record/reflection.rb', line 290

def get_join_keys(association_klass)
  JoinKeys.new(join_primary_key(association_klass), join_foreign_key)
end

#has_cached_counter?Boolean

Returns whether a counter cache should be used for this association.

The counter_cache option must be given on either the owner or inverse association, and the column must be present on the owner.

Returns:

  • (Boolean)


272
273
274
275
276
# File 'lib/active_record/reflection.rb', line 272

def has_cached_counter?
  options[:counter_cache] ||
    inverse_which_updates_counter_cache && inverse_which_updates_counter_cache.options[:counter_cache] &&
    !!active_record.columns_hash[counter_cache_column]
end

#inverse_ofObject



232
233
234
235
236
# File 'lib/active_record/reflection.rb', line 232

def inverse_of
  return unless inverse_name

  @inverse_of ||= klass._reflect_on_association inverse_name
end

#inverse_updates_counter_in_memory?Boolean

Returns:

  • (Boolean)


264
265
266
# File 'lib/active_record/reflection.rb', line 264

def inverse_updates_counter_in_memory?
  inverse_of && inverse_which_updates_counter_cache == inverse_of
end

#inverse_which_updates_counter_cacheObject Also known as: inverse_updates_counter_cache?

This shit is nasty. We need to avoid the following situation:

* An associated record is deleted via record.destroy
* Hence the callbacks run, and they find a belongs_to on the record with a
  :counter_cache options which points back at our owner. So they update the
  counter cache.
* In which case, we must make sure to *not* update the counter cache, or else
  it will be decremented twice.

Hence this method.



256
257
258
259
260
261
# File 'lib/active_record/reflection.rb', line 256

def inverse_which_updates_counter_cache
  return @inverse_which_updates_counter_cache if defined?(@inverse_which_updates_counter_cache)
  @inverse_which_updates_counter_cache = klass.reflect_on_all_associations(:belongs_to).find do |inverse|
    inverse.counter_cache_column == counter_cache_column
  end
end

#join_foreign_keyObject



306
307
308
# File 'lib/active_record/reflection.rb', line 306

def join_foreign_key
  active_record_primary_key
end

#join_keysObject



170
171
172
# File 'lib/active_record/reflection.rb', line 170

def join_keys
  @join_keys ||= get_join_keys(klass)
end

#join_primary_keyObject



302
303
304
# File 'lib/active_record/reflection.rb', line 302

def join_primary_key(*)
  foreign_key
end

#join_scope(table, foreign_table, foreign_klass) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/active_record/reflection.rb', line 180

def join_scope(table, foreign_table, foreign_klass)
  predicate_builder = predicate_builder(table)
  scope_chain_items = join_scopes(table, predicate_builder)
  klass_scope       = klass_join_scope(table, predicate_builder)

  if type
    klass_scope.where!(type => foreign_klass.polymorphic_name)
  end

  scope_chain_items.inject(klass_scope, &:merge!)

  key         = join_keys.key
  foreign_key = join_keys.foreign_key

  klass_scope.where!(table[key].eq(foreign_table[foreign_key]))

  if klass.finder_needs_type_condition?
    klass_scope.where!(klass.send(:type_condition, table))
  end

  klass_scope
end

#join_scopes(table, predicate_builder, klass = self.klass) ⇒ Object

:nodoc:



203
204
205
206
207
208
209
# File 'lib/active_record/reflection.rb', line 203

def join_scopes(table, predicate_builder, klass = self.klass) # :nodoc:
  if scope
    [scope_for(build_scope(table, predicate_builder, klass))]
  else
    []
  end
end

#klass_join_scope(table, predicate_builder) ⇒ Object

:nodoc:



211
212
213
214
# File 'lib/active_record/reflection.rb', line 211

def klass_join_scope(table, predicate_builder) # :nodoc:
  relation = build_scope(table, predicate_builder)
  klass.scope_for_association(relation)
end

#scopesObject

Returns a list of scopes that should be applied for this Reflection object when querying the database.



176
177
178
# File 'lib/active_record/reflection.rb', line 176

def scopes
  scope ? [scope] : []
end

#table_nameObject



150
151
152
# File 'lib/active_record/reflection.rb', line 150

def table_name
  klass.table_name
end

#through_reflection?Boolean

:nodoc:

Returns:

  • (Boolean)


146
147
148
# File 'lib/active_record/reflection.rb', line 146

def through_reflection?
  false
end