Class: ActiveSupport::EventedFileUpdateChecker::Core
- Defined in:
- lib/active_support/evented_file_update_checker.rb
Instance Attribute Summary collapse
-
#updated ⇒ Object
readonly
Returns the value of attribute updated.
Instance Method Summary collapse
- #changed(modified, added, removed) ⇒ Object
- #common_path(paths) ⇒ Object
- #directories_to_watch ⇒ Object
- #finalizer ⇒ Object
-
#initialize(files, dirs) ⇒ Core
constructor
A new instance of Core.
- #normalize_dirs! ⇒ Object
- #restart ⇒ Object
- #restart? ⇒ Boolean
- #start ⇒ Object
- #stop ⇒ Object
- #thread_safely ⇒ Object
- #watching?(file) ⇒ Boolean
Constructor Details
#initialize(files, dirs) ⇒ Core
Returns a new instance of Core.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/active_support/evented_file_update_checker.rb', line 73 def initialize(files, dirs) @files = files.map { |file| Pathname(file). }.to_set @dirs = dirs.each_with_object({}) do |(dir, exts), hash| hash[Pathname(dir).] = Array(exts).map { |ext| ext.to_s.sub(/\A\.?/, ".") }.to_set end @common_path = common_path(@dirs.keys) @dtw = directories_to_watch @missing = [] @updated = Concurrent::AtomicBoolean.new(false) @mutex = Mutex.new start @after_fork = ActiveSupport::ForkTracker.after_fork { start } end |
Instance Attribute Details
#updated ⇒ Object (readonly)
Returns the value of attribute updated.
71 72 73 |
# File 'lib/active_support/evented_file_update_checker.rb', line 71 def updated @updated end |
Instance Method Details
#changed(modified, added, removed) ⇒ Object
131 132 133 134 135 |
# File 'lib/active_support/evented_file_update_checker.rb', line 131 def changed(modified, added, removed) unless @updated.true? @updated.make_true if (modified + added + removed).any? { |f| watching?(f) } end end |
#common_path(paths) ⇒ Object
165 166 167 |
# File 'lib/active_support/evented_file_update_checker.rb', line 165 def common_path(paths) paths.map { |path| path.ascend.to_a }.reduce(&:&)&.first end |
#directories_to_watch ⇒ Object
159 160 161 162 163 |
# File 'lib/active_support/evented_file_update_checker.rb', line 159 def directories_to_watch dtw = @dirs.keys | @files.map(&:dirname) accounted_for = dtw.to_set + Gem.path.map { |path| Pathname(path) } dtw.reject { |dir| dir.ascend.drop(1).any? { |parent| accounted_for.include?(parent) } } end |
#finalizer ⇒ Object
92 93 94 95 96 97 |
# File 'lib/active_support/evented_file_update_checker.rb', line 92 def finalizer proc do stop ActiveSupport::ForkTracker.unregister(@after_fork) end end |
#normalize_dirs! ⇒ Object
125 126 127 128 129 |
# File 'lib/active_support/evented_file_update_checker.rb', line 125 def normalize_dirs! @dirs.transform_keys! do |dir| dir.exist? ? dir.realpath : dir end end |
#restart ⇒ Object
116 117 118 119 |
# File 'lib/active_support/evented_file_update_checker.rb', line 116 def restart stop start end |
#restart? ⇒ Boolean
121 122 123 |
# File 'lib/active_support/evented_file_update_checker.rb', line 121 def restart? @missing.any?(&:exist?) end |
#start ⇒ Object
105 106 107 108 109 110 |
# File 'lib/active_support/evented_file_update_checker.rb', line 105 def start normalize_dirs! @dtw, @missing = [*@dtw, *@missing].partition(&:exist?) @listener = @dtw.any? ? Listen.to(*@dtw, &method(:changed)) : nil @listener&.start end |
#stop ⇒ Object
112 113 114 |
# File 'lib/active_support/evented_file_update_checker.rb', line 112 def stop @listener&.stop end |
#thread_safely ⇒ Object
99 100 101 102 103 |
# File 'lib/active_support/evented_file_update_checker.rb', line 99 def thread_safely @mutex.synchronize do yield self end end |
#watching?(file) ⇒ Boolean
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/active_support/evented_file_update_checker.rb', line 137 def watching?(file) file = Pathname(file) if @files.member?(file) true elsif file.directory? false else ext = file.extname file.dirname.ascend do |dir| matching = @dirs[dir] if matching && (matching.empty? || matching.include?(ext)) break true elsif dir == @common_path || dir.root? break false end end end end |