aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/descendants_tracker.rb
blob: a587d7770cd418d8abe4f2ffa59156a3e152b95c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require 'active_support/dependencies'

module ActiveSupport
  # This module provides an internal implementation to track descendants
  # which is faster than iterating through ObjectSpace.
  module DescendantsTracker
    @@descendants = Hash.new { |h, k| h[k] = [] }

    def self.descendants
      @@descendants
    end

    def self.clear
      @@descendants.each do |klass, descendants|
        if ActiveSupport::Dependencies.autoloaded?(klass)
          @@descendants.delete(klass)
        else
          descendants.reject! { |v| ActiveSupport::Dependencies.autoloaded?(v) }
        end
      end
    end

    def inherited(base)
      self.direct_descendants << base
      super
    end

    def direct_descendants
      @@descendants[self]
    end

    def descendants
      @@descendants[self].inject([]) do |descendants, klass|
        descendants << klass
        descendants.concat klass.descendants
      end
    end
  end
end