2010-06-19 10:44:35 -04:00
|
|
|
module ActiveSupport
|
|
|
|
# This module provides an internal implementation to track descendants
|
|
|
|
# which is faster than iterating through ObjectSpace.
|
|
|
|
module DescendantsTracker
|
2012-06-30 15:51:57 -04:00
|
|
|
@@direct_descendants = {}
|
2010-06-19 10:44:35 -04:00
|
|
|
|
2012-06-30 15:51:57 -04:00
|
|
|
class << self
|
|
|
|
def direct_descendants(klass)
|
|
|
|
@@direct_descendants[klass] || []
|
|
|
|
end
|
2010-07-05 06:50:08 -04:00
|
|
|
|
2012-06-30 15:51:57 -04:00
|
|
|
def descendants(klass)
|
|
|
|
arr = []
|
|
|
|
accumulate_descendants(klass, arr)
|
|
|
|
arr
|
2010-07-05 06:50:08 -04:00
|
|
|
end
|
2010-06-19 11:16:11 -04:00
|
|
|
|
2012-06-30 15:51:57 -04:00
|
|
|
def clear
|
|
|
|
if defined? ActiveSupport::Dependencies
|
|
|
|
@@direct_descendants.each do |klass, descendants|
|
|
|
|
if ActiveSupport::Dependencies.autoloaded?(klass)
|
|
|
|
@@direct_descendants.delete(klass)
|
|
|
|
else
|
|
|
|
descendants.reject! { |v| ActiveSupport::Dependencies.autoloaded?(v) }
|
|
|
|
end
|
2011-03-13 12:08:33 -04:00
|
|
|
end
|
2012-06-30 15:51:57 -04:00
|
|
|
else
|
|
|
|
@@direct_descendants.clear
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This is the only method that is not thread safe, but is only ever called
|
|
|
|
# during the eager loading phase.
|
|
|
|
def store_inherited(klass, descendant)
|
|
|
|
(@@direct_descendants[klass] ||= []) << descendant
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def accumulate_descendants(klass, acc)
|
|
|
|
if direct_descendants = @@direct_descendants[klass]
|
|
|
|
acc.concat(direct_descendants)
|
|
|
|
direct_descendants.each { |direct_descendant| accumulate_descendants(direct_descendant, acc) }
|
2010-06-19 10:44:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def inherited(base)
|
2012-06-30 15:51:57 -04:00
|
|
|
DescendantsTracker.store_inherited(self, base)
|
2010-06-19 10:44:35 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def direct_descendants
|
2010-07-05 06:50:08 -04:00
|
|
|
DescendantsTracker.direct_descendants(self)
|
2010-06-19 10:44:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def descendants
|
2010-07-05 06:50:08 -04:00
|
|
|
DescendantsTracker.descendants(self)
|
2010-06-19 10:44:35 -04:00
|
|
|
end
|
|
|
|
end
|
2010-07-22 13:57:42 -04:00
|
|
|
end
|