Sha256: 61e75782492bddef682e3f9194f001b5c4f32d0fd8e29c605d7b2a552321a949

Contents?: true

Size: 1.63 KB

Versions: 207

Compression:

Stored size: 1.63 KB

Contents

module ActiveSupport
  # This module provides an internal implementation to track descendants
  # which is faster than iterating through ObjectSpace.
  module DescendantsTracker
    @@direct_descendants = {}

    class << self
      def direct_descendants(klass)
        @@direct_descendants[klass] || []
      end

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

      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

      # 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) }
        end
      end
    end

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

    def direct_descendants
      DescendantsTracker.direct_descendants(self)
    end

    def descendants
      DescendantsTracker.descendants(self)
    end
  end
end

Version data entries

207 entries across 198 versions & 19 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/descendants_tracker.rb
activesupport-4.2.11.3 lib/active_support/descendants_tracker.rb
activesupport-4.2.11.2 lib/active_support/descendants_tracker.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/descendants_tracker.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/descendants_tracker.rb
activesupport-5.1.7 lib/active_support/descendants_tracker.rb
activesupport-5.1.7.rc1 lib/active_support/descendants_tracker.rb
activesupport-5.1.6.2 lib/active_support/descendants_tracker.rb
activesupport-5.0.7.2 lib/active_support/descendants_tracker.rb
activesupport-4.2.11.1 lib/active_support/descendants_tracker.rb
activesupport-5.1.6.1 lib/active_support/descendants_tracker.rb
activesupport-5.0.7.1 lib/active_support/descendants_tracker.rb
activesupport-4.2.11 lib/active_support/descendants_tracker.rb
activesupport-5.1.6 lib/active_support/descendants_tracker.rb
activesupport-5.0.7 lib/active_support/descendants_tracker.rb
tdiary-5.0.8 vendor/bundle/gems/activesupport-5.1.5/lib/active_support/descendants_tracker.rb
activesupport-5.1.5 lib/active_support/descendants_tracker.rb
activesupport-5.1.5.rc1 lib/active_support/descendants_tracker.rb
pract6-0.1.0 .gem/ruby/2.3.0/gems/activesupport-5.1.4/lib/active_support/descendants_tracker.rb
activesupport-4.2.10 lib/active_support/descendants_tracker.rb