Class: Listen::Adapter::Base
- Inherits:
-
Object
- Object
- Listen::Adapter::Base
- Includes:
- Celluloid
- Defined in:
- lib/listen/adapter/base.rb
Constant Summary collapse
- DEFAULTS =
TODO: only used by tests
{}
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
Instance Method Summary collapse
-
#configure ⇒ Object
TODO: it’s a separate method as a temporary workaround for tests.
-
#initialize(opts) ⇒ Base
constructor
A new instance of Base.
- #start ⇒ Object
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 = opts.dup @mq = .delete(:mq) @directories = .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 = .delete(:recursion) @recursion = true if @recursion.nil? defaults = self.class.const_get('DEFAULTS') @options = Listen::Options.new(, defaults) rescue _log_exception 'adapter config failed: %s:%s called from: %s', caller raise end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
8 9 10 |
# File 'lib/listen/adapter/base.rb', line 8 def @options end |
Class Method Details
.local_fs? ⇒ Boolean
67 68 69 |
# File 'lib/listen/adapter/base.rb', line 67 def self.local_fs? true end |
.usable? ⇒ 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
#configure ⇒ Object
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 |
#start ⇒ Object
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 |