This module provides an internal implementation to track descendants which is faster than iterating through ObjectSpace.
Methods
- C
-
- D
-
- I
-
- S
-
Class Public methods
Source:
show
|
on GitHub
def clear
if defined? ActiveSupport::Dependencies
@@direct_descendants.each do |klass, descendants|
if Dependencies.autoloaded?(klass)
@@direct_descendants.delete(klass)
else
descendants.reject! { |v| Dependencies.autoloaded?(v) }
end
end
else
@@direct_descendants.clear
end
end
descendants(klass)
Link
Source:
show
|
on GitHub
def descendants(klass)
arr = []
accumulate_descendants(klass, arr)
arr
end
direct_descendants(klass)
Link
Source:
show
|
on GitHub
def direct_descendants(klass)
descendants = @@direct_descendants[klass]
descendants ? descendants.to_a : []
end
store_inherited(klass, descendant)
Link
This is the only method that is not thread safe, but is only ever called during the eager loading phase.
Source:
show
|
on GitHub
def store_inherited(klass, descendant)
(@@direct_descendants[klass] ||= DescendantsArray.new) << descendant
end
Instance Public methods
descendants()
Link
Source:
show
|
on GitHub
def descendants
DescendantsTracker.descendants(self)
end
direct_descendants()
Link
Source:
show
|
on GitHub
def direct_descendants
DescendantsTracker.direct_descendants(self)
end
inherited(base)
Link
Source:
show
|
on GitHub
def inherited(base)
DescendantsTracker.store_inherited(self, base)
super
end