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
activesupport-3.2.19 lib/active_support/descendants_tracker.rb
activesupport-3.2.18 lib/active_support/descendants_tracker.rb
activesupport-3.2.17 lib/active_support/descendants_tracker.rb
activesupport-3.2.16 lib/active_support/descendants_tracker.rb
activesupport-3.2.15 lib/active_support/descendants_tracker.rb
activesupport-3.2.15.rc3 lib/active_support/descendants_tracker.rb
activesupport-3.2.15.rc2 lib/active_support/descendants_tracker.rb
activesupport-3.2.15.rc1 lib/active_support/descendants_tracker.rb
activesupport-3.2.14 lib/active_support/descendants_tracker.rb
activesupport-3.2.14.rc2 lib/active_support/descendants_tracker.rb
activesupport-3.2.14.rc1 lib/active_support/descendants_tracker.rb
classiccms-0.7.2 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
classiccms-0.7.1 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
swipe-rails-0.0.5 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/descendants_tracker.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb
classiccms-0.7.0 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/descendants_tracker.rb
font-awesome-rails-3.1.1.2 vendor/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/descendants_tracker.rb