master/lib/guard/listener.rb

137 lines
3.4 KiB
Ruby
Raw Normal View History

require 'rbconfig'
2011-05-24 01:36:51 +00:00
require 'digest/sha1'
2010-10-03 21:00:33 +00:00
module Guard
autoload :Darwin, 'guard/listeners/darwin'
autoload :Linux, 'guard/listeners/linux'
autoload :Windows, 'guard/listeners/windows'
autoload :Polling, 'guard/listeners/polling'
2010-10-03 21:00:33 +00:00
class Listener
attr_reader :last_event, :sha1_checksums_hash, :directory, :callback
def self.select_and_init(*a)
if mac? && Darwin.usable?
Darwin.new(*a)
elsif linux? && Linux.usable?
Linux.new(*a)
elsif windows? && Windows.usable?
Windows.new(*a)
else
UI.info "Using polling (Please help us to support your system better than that.)"
Polling.new(*a)
2010-10-03 21:00:33 +00:00
end
end
def initialize(directory=Dir.pwd, options={})
@directory = directory.to_s
@sha1_checksums_hash = {}
@relativate_paths = options.fetch(:relativate_paths, true)
update_last_event
2010-10-03 21:00:33 +00:00
end
def start
watch directory
end
def stop
end
def on_change(&callback)
@callback = callback
end
def update_last_event
@last_event = Time.now
end
def modified_files(dirs, options = {})
# <<<<<<< HEAD
# files = potentially_modified_files(dirs, options).select { |path| File.file?(path) && file_modified?(path) }
# files.map! { |file| file.gsub("#{Dir.pwd}/", '') }
# =======
files = potentially_modified_files(dirs, options).select { |path| File.file?(path) && file_modified?(path) }
relativate_paths files
2010-10-03 21:00:33 +00:00
end
def worker
raise NotImplementedError, "should respond to #watch"
end
# register a directory to watch. must be implemented by the subclasses
def watch(directory)
raise NotImplementedError, "do whatever you want here, given the directory as only argument"
end
def all_files
potentially_modified_files [directory + '/'], :all => true
# >>>>>>> b12769d2bf385b3c69973721144cae3d5d8fbed9
2010-10-03 21:00:33 +00:00
end
# scopes all given paths to the current #directory
def relativate_paths(paths)
2011-05-15 17:00:15 +00:00
return paths unless relativate_paths?
paths.map do |path|
path.gsub(%r~^#{directory}/~, '')
end
end
2011-05-15 17:00:15 +00:00
attr_writer :relativate_paths
def relativate_paths?
!!@relativate_paths
end
private
def potentially_modified_files(dirs, options = {})
match = options[:all] ? "**/*" : "*"
Dir.glob(dirs.map { |dir| "#{dir}#{match}" })
2010-10-03 21:00:33 +00:00
end
# Depending on the filesystem, mtime is probably only precise to the second, so round
# both values down to the second for the comparison.
def file_modified?(path)
if File.mtime(path).to_i == last_event.to_i
file_content_modified?(path, sha1_checksum(path))
elsif File.mtime(path).to_i > last_event.to_i
set_sha1_checksums_hash(path, sha1_checksum(path))
true
end
rescue
false
2010-10-03 21:00:33 +00:00
end
def file_content_modified?(path, sha1_checksum)
if sha1_checksums_hash[path] != sha1_checksum
set_sha1_checksums_hash(path, sha1_checksum)
true
else
false
end
end
def set_sha1_checksums_hash(path, sha1_checksum)
@sha1_checksums_hash[path] = sha1_checksum
end
def sha1_checksum(path)
Digest::SHA1.file(path).to_s
end
def self.mac?
Config::CONFIG['target_os'] =~ /darwin/i
end
def self.linux?
Config::CONFIG['target_os'] =~ /linux/i
2010-10-03 21:00:33 +00:00
end
def self.windows?
Config::CONFIG['target_os'] =~ /mswin|mingw/i
end
2010-10-03 21:00:33 +00:00
end
end