Sha256: f4102ef7a62e1d45efcdcb7df1466e4edaa33a7452097b46efaa0be8750db103
Contents?: true
Size: 1.85 KB
Versions: 15
Compression:
Stored size: 1.85 KB
Contents
# frozen_string_literal: true require 'listen/file' require 'listen/directory' module Listen # TODO: rename to Snapshot class Change # TODO: test this class for coverage class Config def initialize(queue, silencer) @queue = queue @silencer = silencer end def silenced?(path, type) @silencer.silenced?(Pathname(path), type) end def queue(*args) @queue << args end end attr_reader :record def initialize(config, record) @config = config @record = record end # Invalidate some part of the snapshot/record (dir, file, subtree, etc.) def invalidate(type, rel_path, options) watched_dir = Pathname.new(record.root) change = options[:change] cookie = options[:cookie] if !cookie && config.silenced?(rel_path, type) Listen.logger.debug { "(silenced): #{rel_path.inspect}" } return end path = watched_dir + rel_path Listen.logger.debug do log_details = options[:silence] && 'recording' || change || 'unknown' "#{log_details}: #{type}:#{path} (#{options.inspect})" end if change options = cookie ? { cookie: cookie } : {} config.queue(type, change, watched_dir, rel_path, options) elsif type == :dir # NOTE: POSSIBLE RECURSION # TODO: fix - use a queue instead Directory.scan(self, rel_path, options) else change = File.change(record, rel_path) return if !change || options[:silence] config.queue(:file, change, watched_dir, rel_path) end rescue RuntimeError => ex msg = format( '%s#%s crashed %s:%s', self.class, __method__, exinspect, ex.backtrace * "\n") Listen.logger.error(msg) raise end private attr_reader :config end end
Version data entries
15 entries across 15 versions & 2 rubygems