Class: FileWatch::Watch

Inherits:
Object
  • Object
show all
Defined in:
lib/filewatch/watch.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Watch

Returns a new instance of Watch.



11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/filewatch/watch.rb', line 11

def initialize(opts={})
  @iswindows = ((RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/) != nil)
  if opts[:logger]
    @logger = opts[:logger]
  else
    @logger = Logger.new(STDERR)
    @logger.level = Logger::INFO
  end
  @watching = []
  @exclude = []
  @files = Hash.new { |h, k| h[k] = Hash.new }
end

Instance Attribute Details

#loggerObject

Returns the value of attribute logger.



8
9
10
# File 'lib/filewatch/watch.rb', line 8

def logger
  @logger
end

Instance Method Details

#discoverObject



106
107
108
109
110
# File 'lib/filewatch/watch.rb', line 106

def discover
  @watching.each do |path|
    _discover_file(path)
  end
end

#each(&block) ⇒ Object



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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/filewatch/watch.rb', line 62

def each(&block)
  # Send any creates.
  @files.keys.each do |path|
    if ! @files[path][:create_sent]
      if @files[path][:initial]
        yield(:create_initial, path)
      else
        yield(:create, path)
      end
      @files[path][:create_sent] = true
    end
  end

  @files.keys.each do |path|
    begin
      stat = File::Stat.new(path)
    rescue Errno::ENOENT
      # file has gone away or we can't read it anymore.
      @files.delete(path)
      @logger.debug? && @logger.debug("#{path}: stat failed (#{$!}), deleting from @files")
      yield(:delete, path)
      next
    end

    inode = inode(path,stat)
    if inode != @files[path][:inode]
      @logger.debug? && @logger.debug("#{path}: old inode was #{@files[path][:inode].inspect}, new is #{inode.inspect}")
      yield(:delete, path)
      yield(:create, path)
    elsif stat.size < @files[path][:size]
      @logger.debug? && @logger.debug("#{path}: file rolled, new size is #{stat.size}, old size #{@files[path][:size]}")
      yield(:delete, path)
      yield(:create, path)
    elsif stat.size > @files[path][:size]
      @logger.debug? && @logger.debug("#{path}: file grew, old size #{@files[path][:size]}, new size #{stat.size}")
      yield(:modify, path)
    end

    @files[path][:size] = stat.size
    @files[path][:inode] = inode
  end # @files.keys.each
end

#exclude(path) ⇒ Object



30
31
32
# File 'lib/filewatch/watch.rb', line 30

def exclude(path)
  path.to_a.each { |p| @exclude << p }
end

#inode(path, stat) ⇒ Object



45
46
47
48
49
50
51
52
53
# File 'lib/filewatch/watch.rb', line 45

def inode(path,stat)
  if @iswindows
    fileId = Winhelper.GetWindowsUniqueFileIdentifier(path)
    inode = [fileId, stat.dev_major, stat.dev_minor]
  else
    inode = [stat.ino.to_s, stat.dev_major, stat.dev_minor]
  end
  return inode
end

#quitObject



165
166
167
# File 'lib/filewatch/watch.rb', line 165

def quit
  @quit = true
end

#subscribe(stat_interval = 1, discover_interval = 5, &block) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/filewatch/watch.rb', line 113

def subscribe(stat_interval = 1, discover_interval = 5, &block)
  glob = 0
  @quit = false
  while !@quit
    each(&block)

    glob += 1
    if glob == discover_interval
      discover
      glob = 0
    end

    sleep(stat_interval)
  end
end

#watch(path) ⇒ Object



35
36
37
38
39
40
41
42
# File 'lib/filewatch/watch.rb', line 35

def watch(path)
  if ! @watching.member?(path)
    @watching << path
    _discover_file(path, true)
  end

  return true
end