master/lib/guard/listener.rb

340 lines
9.3 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'
2011-09-20 11:58:25 +00:00
# The Listener is the base class for all listener
# implementations.
#
# @abstract
#
2010-10-03 21:00:33 +00:00
class Listener
# Default paths that gets ignored by the listener
2011-09-20 11:58:25 +00:00
DEFAULT_IGNORE_PATHS = %w[. .. .bundle .git log tmp vendor]
2011-09-01 21:24:45 +00:00
attr_accessor :changed_files
attr_reader :directory, :ignore_paths, :locked
2011-09-20 11:58:25 +00:00
# Select the appropriate listener implementation for the
# current OS and initializes it.
#
# @param [Array] args the arguments for the listener
# @return [Guard::Listener] the chosen listener
#
def self.select_and_init(*args)
if mac? && Darwin.usable?
2011-09-20 11:58:25 +00:00
Darwin.new(*args)
elsif linux? && Linux.usable?
2011-09-20 11:58:25 +00:00
Linux.new(*args)
elsif windows? && Windows.usable?
2011-09-20 11:58:25 +00:00
Windows.new(*args)
else
2011-09-20 11:58:25 +00:00
UI.info 'Using polling (Please help us to support your system better than that).'
Polling.new(*args)
2010-10-03 21:00:33 +00:00
end
end
2011-09-20 11:58:25 +00:00
# Initialize the listener.
#
# @param [String] directory the root directory to listen to
# @option options [Boolean] relativize_paths use only relative paths
# @option options [Array<String>] ignore_paths the paths to ignore by the listener
#
def initialize(directory = Dir.pwd, options = {})
@directory = directory.to_s
@sha1_checksums_hash = {}
@file_timestamp_hash = {}
@relativize_paths = options.fetch(:relativize_paths, true)
@changed_files = []
@locked = false
2011-09-20 11:58:25 +00:00
@ignore_paths = DEFAULT_IGNORE_PATHS
@ignore_paths |= options[:ignore_paths] if options[:ignore_paths]
@watch_all_modifications = options.fetch(:watch_all_modifications, false)
2011-09-01 21:24:45 +00:00
update_last_event
start_reactor
end
2011-09-20 11:58:25 +00:00
# Start the listener thread.
#
def start_reactor
return if ENV["GUARD_ENV"] == 'test'
2011-09-20 11:58:25 +00:00
Thread.new do
loop do
if @changed_files != [] && !@locked
changed_files = @changed_files.dup
clear_changed_files
::Guard.run_on_change(changed_files)
else
sleep 0.1
end
end
end
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Start watching the root directory.
#
def start
watch(@directory)
timestamp_files
end
2011-09-20 11:58:25 +00:00
# Stop listening for events.
#
def stop
end
2011-09-20 11:58:25 +00:00
# Lock the listener to ignore change events.
#
def lock
@locked = true
end
2011-09-20 11:58:25 +00:00
# Unlock the listener to listen again to change events.
#
def unlock
@locked = false
end
2011-09-20 11:58:25 +00:00
# Clear the list of changed files.
#
def clear_changed_files
@changed_files.clear
end
2011-09-20 11:58:25 +00:00
# Store a listener callback.
#
# @param [Block] callback the callback to store
#
def on_change(&callback)
@callback = callback
end
2011-09-20 11:58:25 +00:00
# Updates the timestamp of the last event.
#
def update_last_event
@last_event = Time.now
end
# Get the modified files.
#
# If watch_all_modifications is true then moved and deleted files are also appended
# to the returned array prefixed so !/home/user/dir/file.rb
#
# @param [Array<String>] dirs the watched directories
# @param [Hash] options the listener options
# @return [Array<String>] paths of files that have been modified
#
def modified_files(dirs, options = {})
last_event = @last_event
files = []
if @watch_all_modifications
deleted_files = @file_timestamp_hash.collect do |path, ts|
unless File.exists?(path)
@sha1_checksums_hash.delete(path)
@file_timestamp_hash.delete(path)
"!#{path}"
end
end
files.concat(deleted_files.compact)
end
update_last_event
files.concat(potentially_modified_files(dirs, options).select { |path| file_modified?(path, last_event) })
relativize_paths(files)
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Register a directory to watch.
# Must be implemented by the subclasses.
#
# @param [String] directory the directory to watch
#
def watch(directory)
raise NotImplementedError, "do whatever you want here, given the directory as only argument"
end
2011-09-20 11:58:25 +00:00
# Get all files that are in the watched directory.
#
# @return [Array<String>] the list of files
#
def all_files
potentially_modified_files([@directory], :all => true)
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Scopes all given paths to the current directory.
#
# @param [Array<String>] paths the paths to change
# @return [Array<String>] all paths now relative to the current dir
#
def relativize_paths(paths)
return paths unless relativize_paths?
paths.map do |path|
path.gsub(%r{^(!)?#{ @directory }/},'\1')
end
end
# Use paths relative to the current directory.
2011-09-20 11:58:25 +00:00
#
# @return [Boolean] whether to use relative or absolute paths
#
def relativize_paths?
!!@relativize_paths
2011-05-15 17:00:15 +00:00
end
# populate initial timestamp file hash to watch for deleted or moved files
def timestamp_files
all_files.each {|path| set_file_timestamp_hash(path, file_timestamp(path)) } if @watch_all_modifications
end
# Removes the ignored paths from the directory list.
2011-09-20 11:58:25 +00:00
#
# @param [Array<String>] dirs the directory to listen to
# @param [Array<String>] ignore_paths the paths to ignore
# @return children of the passed dirs that are not in the ignore_paths list
#
2011-09-01 11:30:25 +00:00
def exclude_ignored_paths(dirs, ignore_paths = self.ignore_paths)
Dir.glob(dirs.map { |d| "#{d.sub(%r{/+$}, '')}/*" }, File::FNM_DOTMATCH).reject do |path|
ignore_paths.include?(File.basename(path))
end
end
2011-05-15 17:00:15 +00:00
2011-09-20 11:58:25 +00:00
private
# Gets a list of files that are in the modified directories.
2011-09-20 11:58:25 +00:00
#
# @param [Array<String>] dirs the list of directories
# @option options [Symbol] all whether to include all files
#
def potentially_modified_files(dirs, options = {})
2011-09-01 11:30:25 +00:00
paths = exclude_ignored_paths(dirs)
if options[:all]
paths.inject([]) do |array, path|
if File.file?(path)
array << path
else
2011-09-20 11:58:25 +00:00
array += Dir.glob("#{ path }/**/*", File::FNM_DOTMATCH).select { |p| File.file?(p) }
end
array
end
else
paths.select { |path| File.file?(path) }
end
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Test if the file content has changed.
#
2011-09-03 19:33:06 +00:00
# Depending on the filesystem, mtime/ctime is probably only precise to the second, so round
# both values down to the second for the comparison.
2011-09-20 11:58:25 +00:00
#
2011-09-05 08:44:50 +00:00
# ctime is used only on == comparison to always catches Rails 3.1 Assets pipelined on Mac OSX
2011-09-20 11:58:25 +00:00
#
# @param [String] path the file path
# @param [Time] last_event the time of the last event
# @return [Boolean] Whether the file content has changed or not.
#
def file_modified?(path, last_event)
ctime = File.ctime(path).to_i
mtime = File.mtime(path).to_i
if [mtime, ctime].max == last_event.to_i
file_content_modified?(path, sha1_checksum(path))
elsif mtime > last_event.to_i
set_sha1_checksums_hash(path, sha1_checksum(path))
true
elsif @watch_all_modifications
ts = file_timestamp(path)
if ts != @file_timestamp_hash[path]
set_file_timestamp_hash(path, ts)
true
end
2011-09-03 12:16:32 +00:00
else
false
end
rescue
false
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Tests if the file content has been modified by
# comparing the SHA1 checksum.
#
# @param [String] path the file path
# @param [String] sha1_checksum the checksum of the file
#
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
# Set save a files current timestamp
#
# @param [String] path the file path
# @param [Int] file_timestamp the files modified timestamp
#
def set_file_timestamp_hash(path, file_timestamp)
@file_timestamp_hash[path] = file_timestamp
end
2011-09-20 11:58:25 +00:00
# Set the current checksum of a file.
#
# @param [String] path the file path
# @param [String] sha1_checksum the checksum of the file
#
def set_sha1_checksums_hash(path, sha1_checksum)
@sha1_checksums_hash[path] = sha1_checksum
end
# Gets a files modified timestamp
#
# @path [String] path the file path
# @return [Int] file modified timestamp
#
def file_timestamp(path)
File.mtime(path).to_i
end
2011-09-20 11:58:25 +00:00
# Calculates the SHA1 checksum of a file.
#
# @param [String] path the path to the file
# @return [String] the SHA1 checksum
#
def sha1_checksum(path)
Digest::SHA1.file(path).to_s
end
2011-09-20 11:58:25 +00:00
# Test if the OS is Mac OS X.
#
# @return [Boolean] Whether the OS is Mac OS X
#
def self.mac?
RbConfig::CONFIG['target_os'] =~ /darwin/i
end
2011-09-20 11:58:25 +00:00
# Test if the OS is Linux.
#
# @return [Boolean] Whether the OS is Linux
#
def self.linux?
RbConfig::CONFIG['target_os'] =~ /linux/i
2010-10-03 21:00:33 +00:00
end
2011-09-20 11:58:25 +00:00
# Test if the OS is Windows.
#
# @return [Boolean] Whether the OS is Windows
#
def self.windows?
RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
end
2010-10-03 21:00:33 +00:00
end
end