Sha256: dde9610e92793d5ee63d0b177e368a6d384409f4121e6e514e9c71dbd7c4e341

Contents?: true

Size: 1.16 KB

Versions: 269

Compression:

Stored size: 1.16 KB

Contents

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

    def self.direct_descendants(klass)
      @@direct_descendants[klass]
    end

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

    def self.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

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

    def direct_descendants
      DescendantsTracker.direct_descendants(self)
    end

    def descendants
      DescendantsTracker.descendants(self)
    end
  end
end

Version data entries

269 entries across 225 versions & 25 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/descendants_tracker.rb
activesupport-3.2.22.5 lib/active_support/descendants_tracker.rb
activesupport-3.2.22.4 lib/active_support/descendants_tracker.rb
activesupport-3.2.22.3 lib/active_support/descendants_tracker.rb
activesupport-3.2.22.2 lib/active_support/descendants_tracker.rb
activesupport-3.2.22.1 lib/active_support/descendants_tracker.rb
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
activesupport-3.2.22 lib/active_support/descendants_tracker.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
activesupport-3.2.21 lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/descendants_tracker.rb
activesupport-3.2.20 lib/active_support/descendants_tracker.rb