Module: ActiveSupport::DescendantsTracker

Defined in:
lib/active_support/descendants_tracker.rb

Overview

This module provides an internal implementation to track descendants which is faster than iterating through ObjectSpace.

Constant Summary collapse

@@direct_descendants =
{}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.clearObject



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/active_support/descendants_tracker.rb', line 20

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
    end
  else
    @@direct_descendants.clear
  end
end

.descendants(klass) ⇒ Object



14
15
16
17
18
# File 'lib/active_support/descendants_tracker.rb', line 14

def descendants(klass)
  arr = []
  accumulate_descendants(klass, arr)
  arr
end

.direct_descendants(klass) ⇒ Object



10
11
12
# File 'lib/active_support/descendants_tracker.rb', line 10

def direct_descendants(klass)
  @@direct_descendants[klass] || []
end

.store_inherited(klass, descendant) ⇒ Object

This is the only method that is not thread safe, but is only ever called during the eager loading phase.



36
37
38
# File 'lib/active_support/descendants_tracker.rb', line 36

def store_inherited(klass, descendant)
  (@@direct_descendants[klass] ||= []) << descendant
end

Instance Method Details

#descendantsObject



58
59
60
# File 'lib/active_support/descendants_tracker.rb', line 58

def descendants
  DescendantsTracker.descendants(self)
end

#direct_descendantsObject



54
55
56
# File 'lib/active_support/descendants_tracker.rb', line 54

def direct_descendants
  DescendantsTracker.direct_descendants(self)
end

#inherited(base) ⇒ Object



49
50
51
52
# File 'lib/active_support/descendants_tracker.rb', line 49

def inherited(base)
  DescendantsTracker.store_inherited(self, base)
  super
end