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
|
2010-07-05 06:50:08 -04:00
|
|
|
@@direct_descendants = Hash.new { |h, k| h[k] = [] }
|
2010-06-19 10:44:35 -04:00
|
|
|
|
2010-07-05 06:50:08 -04:00
|
|
|
def self.direct_descendants(klass)
|
|
|
|
@@direct_descendants[klass]
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.descendants(klass)
|
2010-07-22 13:57:42 -04:00
|
|
|
@@direct_descendants[klass].inject([]) do |descendants, _klass|
|
|
|
|
descendants << _klass
|
|
|
|
descendants.concat _klass.descendants
|
2010-07-05 06:50:08 -04:00
|
|
|
end
|
2010-06-19 11:16:11 -04:00
|
|
|
end
|
|
|
|
|
2010-06-19 10:44:35 -04:00
|
|
|
def self.clear
|
2011-03-13 12:08:33 -04:00
|
|
|
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
|
2010-06-19 10:44:35 -04:00
|
|
|
end
|
2011-03-13 12:08:33 -04:00
|
|
|
else
|
|
|
|
@@direct_descendants.clear
|
2010-06-19 10:44:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def inherited(base)
|
|
|
|
self.direct_descendants << base
|
|
|
|
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
|