модуль ActiveRecord::Inheritance::ClassMethods
Атрибуты
Установите значение в true, если это абстрактный класс (см. abstract_class?). Если вы используете наследование с ActiveRecord и не хотите, чтобы дочерние классы использовали предполагаемое имя таблицы STI родительского класса, это значение должно быть true. Например, в следующем случае:
class SuperClass < ActiveRecord::Base self.abstract_class = true end class Child < SuperClass self.table_name = 'the_table_i_really_want' end
self.abstract_class = true необходимо, чтобы Child<.find,.create, or any Arel method> использовал the_table_i_really_want вместо таблицы с именем super_classes
Открытые методы экземпляров
# File activerecord/lib/active_record/inheritance.rb, line 125 def abstract_class? defined?(@abstract_class) && @abstract_class == true end
Возвращает значение true, если данный класс является абстрактным, и false в противном случае.
# File activerecord/lib/active_record/inheritance.rb, line 95
def base_class
unless self < Base
raise ActiveRecordError, "#{name} doesn't belong in a hierarchy descending from ActiveRecord"
end
if superclass == Base || superclass.abstract_class?
self
else
superclass.base_class
end
end Возвращает класс, непосредственно унаследованный от ActiveRecord::Base, или абстрактный класс (если таковой есть) в иерархии наследования.
Если A расширяет ActiveRecord::Base, A.base_class вернет A. Если B унаследован от A через произвольно глубокую иерархию, B.base_class вернет A.
Если B < A и C < B, и если A является #abstract_class, то и B.base_class, и C.base_class вернут B в качестве ответа, так как A является абстрактным классом.
# File activerecord/lib/active_record/inheritance.rb, line 72
def descends_from_active_record?
if self == Base
false
elsif superclass.abstract_class?
superclass.descends_from_active_record?
else
superclass == Base || !columns_hash.include?(inheritance_column)
end
end Возвращает true, если для этого не требуется условие типа STI. Возвращает false, если необходимо применить условие типа STI.
# File activerecord/lib/active_record/inheritance.rb, line 133 def inherited(subclass) subclass.instance_variable_set(:@_type_candidates_cache, Concurrent::Map.new) super end
# File activerecord/lib/active_record/inheritance.rb, line 49
def new(*args, &block)
if abstract_class? || self == Base
raise NotImplementedError, "#{self} is an abstract class and cannot be instantiated."
end
attrs = args.first
if has_attribute?(inheritance_column)
subclass = subclass_from_attributes(attrs)
if subclass.nil? && base_class == self
subclass = subclass_from_attributes(column_defaults)
end
end
if subclass && subclass != self
subclass.new(*args, &block)
else
super
end
end Определяет, является ли один из переданных атрибутов колонкой наследования, и если колонка наследования доступна как атрибут, инициализирует экземпляр заданного подкласса вместо базового класса.
# File activerecord/lib/active_record/inheritance.rb, line 129 def sti_name store_full_sti_class ? name : name.demodulize end
Защищенные методы экземпляров
# File activerecord/lib/active_record/inheritance.rb, line 142
def compute_type(type_name)
if type_name.start_with?("::".freeze)
# If the type is prefixed with a scope operator then we assume that
# the type_name is an absolute reference.
ActiveSupport::Dependencies.constantize(type_name)
else
type_candidate = @_type_candidates_cache[type_name]
if type_candidate && type_constant = ActiveSupport::Dependencies.safe_constantize(type_candidate)
return type_constant
end
# Build a list of candidates to search for
candidates = []
name.scan(/::|$/) { candidates.unshift "#{$`}::#{type_name}" }
candidates << type_name
candidates.each do |candidate|
constant = ActiveSupport::Dependencies.safe_constantize(candidate)
if candidate == constant.to_s
@_type_candidates_cache[type_name] = candidate
return constant
end
end
raise NameError.new("uninitialized constant #{candidates.first}", candidates.first)
end
end Возвращает тип класса записи, используя текущий модуль в качестве префикса. Таким образом, потомки MyApp::Business::Account будут отображаться как MyApp::Business::AccountSubclass.
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.