1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
require "set"
require "pathname"
require "mutex_m"
module Spring
module Watcher
# A user of a watcher can use IO.select to wait for changes:
#
# watcher = MyWatcher.new(root, latency)
# IO.select([watcher]) # watcher is running in background
# watcher.stale? # => true
class Abstract
include Mutex_m
attr_reader :files, :directories, :root, :latency
def initialize(root, latency)
super()
@root = File.realpath(root)
@latency = latency
@files = Set.new
@directories = Set.new
@stale = false
@listeners = []
end
def add(*items)
items = items.flatten.map do |item|
item = Pathname.new(item)
if item.relative?
Pathname.new("#{root}/#{item}")
else
item
end
end
items = items.select(&:exist?)
synchronize {
items.each do |item|
if item.directory?
directories << item.realpath.to_s
else
files << item.realpath.to_s
end
end
subjects_changed
}
end
def stale?
@stale
end
def on_stale(&block)
@listeners << block
end
def mark_stale
return if stale?
@stale = true
@listeners.each(&:call)
end
def restart
stop
start
end
def start
raise NotImplementedError
end
def stop
raise NotImplementedError
end
def subjects_changed
raise NotImplementedError
end
end
end
end
|