Class: Listen::Adapter::Base

Inherits:
Object
  • Object
show all
Includes:
Celluloid
Defined in:
lib/listen/adapter/base.rb

Direct Known Subclasses

BSD, Darwin, Linux, Polling, TCP, Windows

Constant Summary collapse

DEFAULTS =

TODO: only used by tests

{}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts) ⇒ Base

Returns a new instance of Base.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/listen/adapter/base.rb', line 13

def initialize(opts)
  @configured = nil
  options = opts.dup
  @mq = options.delete(:mq)
  @directories = options.delete(:directories)

  Array(@directories).each do |dir|
    next if dir.is_a?(Pathname)
    fail ArgumentError, "not a Pathname: #{dir.inspect}"
  end

  # TODO: actually use this in every adapter
  @recursion = options.delete(:recursion)
  @recursion = true if @recursion.nil?

  defaults = self.class.const_get('DEFAULTS')
  @options = Listen::Options.new(options, defaults)
rescue
  _log_exception 'adapter config failed: %s:%s called from: %s', caller
  raise
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



8
9
10
# File 'lib/listen/adapter/base.rb', line 8

def options
  @options
end

Class Method Details

.local_fs?Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/listen/adapter/base.rb', line 67

def self.local_fs?
  true
end

.usable?Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/listen/adapter/base.rb', line 71

def self.usable?
  const_get('OS_REGEXP') =~ RbConfig::CONFIG['target_os']
end

Instance Method Details

#configureObject

TODO: it’s a separate method as a temporary workaround for tests



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/listen/adapter/base.rb', line 36

def configure
  return if @configured
  @configured = true

  @callbacks ||= {}
  @directories.each do |dir|
    unless dir.is_a?(Pathname)
      fail ArgumentError, "not a Pathname: #{dir.inspect}"
    end

    callback = @callbacks[dir] || lambda do |event|
      _process_event(dir, event)
    end
    @callbacks[dir] = callback
    _configure(dir, &callback)
  end
end

#startObject



54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/listen/adapter/base.rb', line 54

def start
  configure
  calling_stack = caller.dup
  Listen::Internals::ThreadPool.add do
    begin
      _run
    rescue
      _log_exception "run() in thread failed: %s:\n %s\n\ncalled from:\n %s", calling_stack
      raise
    end
  end
end