|
| 1 | +require "active_support/descendants_tracker" |
| 2 | + |
| 3 | +module WithModel |
| 4 | + # Based on https://github.com/rails/rails/blob/491afff27e2dd3d5f301b478b9a43d3c31709af8/activesupport/lib/active_support/descendants_tracker.rb |
| 5 | + module DescendantsTracker |
| 6 | + if RUBY_ENGINE == "ruby" |
| 7 | + # On MRI `ObjectSpace::WeakMap` keys are weak references. |
| 8 | + # So we can simply use WeakMap as a `Set`. |
| 9 | + class WeakSet < ObjectSpace::WeakMap # :nodoc: |
| 10 | + alias_method :to_a, :keys |
| 11 | + |
| 12 | + def <<(object) |
| 13 | + self[object] = true |
| 14 | + end |
| 15 | + end |
| 16 | + else |
| 17 | + # On TruffleRuby `ObjectSpace::WeakMap` keys are strong references. |
| 18 | + # So we use `object_id` as a key and the actual object as a value. |
| 19 | + # |
| 20 | + # JRuby for now doesn't have Class#descendant, but when it will, it will likely |
| 21 | + # have the same WeakMap semantic than Truffle so we future proof this as much as possible. |
| 22 | + class WeakSet # :nodoc: |
| 23 | + def initialize |
| 24 | + @map = ObjectSpace::WeakMap.new |
| 25 | + end |
| 26 | + |
| 27 | + def [](object) |
| 28 | + @map.key?(object.object_id) |
| 29 | + end |
| 30 | + alias_method :include?, :[] |
| 31 | + |
| 32 | + def []=(object, _present) |
| 33 | + @map[object.object_id] = object |
| 34 | + end |
| 35 | + |
| 36 | + def to_a |
| 37 | + @map.values |
| 38 | + end |
| 39 | + |
| 40 | + def <<(object) |
| 41 | + self[object] = true |
| 42 | + end |
| 43 | + end |
| 44 | + end |
| 45 | + @excluded_descendants = WeakSet.new |
| 46 | + |
| 47 | + class << self |
| 48 | + def clear(classes) # :nodoc: |
| 49 | + classes.each do |klass| |
| 50 | + @excluded_descendants << klass |
| 51 | + klass.descendants.each do |descendant| |
| 52 | + @excluded_descendants << descendant |
| 53 | + end |
| 54 | + end |
| 55 | + end |
| 56 | + |
| 57 | + def reject!(classes) # :nodoc: |
| 58 | + if @excluded_descendants |
| 59 | + classes.reject! { |d| @excluded_descendants.include?(d) } |
| 60 | + end |
| 61 | + classes |
| 62 | + end |
| 63 | + end |
| 64 | + |
| 65 | + module ReloadedClassesFiltering # :nodoc: |
| 66 | + def subclasses |
| 67 | + WithModel::DescendantsTracker.reject!(super) |
| 68 | + end |
| 69 | + |
| 70 | + def descendants |
| 71 | + WithModel::DescendantsTracker.reject!(super) |
| 72 | + end |
| 73 | + end |
| 74 | + end |
| 75 | +end |
| 76 | + |
| 77 | +class Class |
| 78 | + prepend WithModel::DescendantsTracker::ReloadedClassesFiltering |
| 79 | +end |
| 80 | + |
| 81 | +module ActiveSupport |
| 82 | + module DescendantsTracker |
| 83 | + class << self |
| 84 | + attr_reader :clear_disabled |
| 85 | + end |
| 86 | + end |
| 87 | +end |
0 commit comments