An Eventable Scanner is one that can be utilized by something that has an Event Loop. It is intended to be subclassed by classes that implement the specific event loop semantics for say EventMachine or Cool.io.
The Events that the EventableScanner is programmed for are:
on_scan - this should be called every interval times on_modified - If the event loop can monitor individual files then this should
be called when the file is modified
on_removed - Similar to on_modified but called when a file is removed.
Sub classes are required to implement the following:
start_loop_with_attached_scan_timer() - Instance Method This method is to start up the loop, if necessary assign to @loop_thread instance variable the Thread that is controlling the event loop. This method must also assign an object to @timer which is what does the periodic scanning of the globs. This object must respond to +detach()+ so that it may be detached from the event loop. stop_loop() - Instance Method This method must shut down the event loop, or detach these classes from the event loop if we just attached to an existing event loop. Watcher - An Embedded class This is a class that must have a class method +watcher(path,scanner)+ which is used to instantiate a file watcher. The Watcher instance must respond to +detach()+ so that it may be independently detached from the event loop.
config - the Configuration instances
# File lib/directory_watcher/eventable_scanner.rb, line 43 def initialize( config ) @config = config @scan_and_queue = DirectoryWatcher::ScanAndQueue.new(config.glob, config.collection_queue) @watchers = {} @stopping = false @timer = nil @loop_thread = nil @paused = false end
Have we completed up to the maximum_iterations?
# File lib/directory_watcher/eventable_scanner.rb, line 146 def finished_iterations? self.iterations >= self.maximum_iterations end
The interval at which to scan
# File lib/directory_watcher/eventable_scanner.rb, line 61 def interval @config.interval end
EventableScanners do not join
# File lib/directory_watcher/eventable_scanner.rb, line 119 def join( limit = nil ) end
Setting maximum iterations means hooking into the periodic timer event and counting the number of times it is going on. This also resets the current iterations count
# File lib/directory_watcher/eventable_scanner.rb, line 133 def maximum_iterations=(value) unless value.nil? value = Integer(value) raise ArgumentError, "maximum iterations must be >= 1" unless value >= 1 end @iterations = 0 @maximum_iterations = value end
This callback is invoked by the Watcher instance when it is triggered by the loop for file modifications.
# File lib/directory_watcher/eventable_scanner.rb, line 163 def on_modified(watcher, new_stat) logger.debug "on_modified called" queue_item(new_stat) end
This callback is invoked by the Watcher instance when it is triggered by the loop for file removals
# File lib/directory_watcher/eventable_scanner.rb, line 171 def on_removed(watcher, new_stat) logger.debug "on_removed called" unwatch_file(watcher.path) queue_item(new_stat) end
This callback is invoked by the Timer instance when it is triggered by the Loop. This method will check for added files and stable files and notify the directory watcher accordingly.
# File lib/directory_watcher/eventable_scanner.rb, line 154 def on_scan logger.debug "on_scan called" scan_and_watch_files progress_towards_maximum_iterations end
Pause the scanner.
Pausing the scanner does not stop the scanning per se, it stops items from being sent to the collection queue
# File lib/directory_watcher/eventable_scanner.rb, line 97 def pause logger.debug "pausing scanner" @paused = true end
Is the Scanner currently paused.
# File lib/directory_watcher/eventable_scanner.rb, line 113 def paused? @paused end
Resume the scanner.
This removes the blockage on sending items to the collection queue.
# File lib/directory_watcher/eventable_scanner.rb, line 106 def resume logger.debug "resuming scanner" @paused = false end
Do a single scan and send those items to the collection queue.
# File lib/directory_watcher/eventable_scanner.rb, line 124 def run logger.debug "running scan and queue" @scan_and_queue.scan_and_queue end
Returns true if the scanner is currently running. Returns false if this is not the case.
# File lib/directory_watcher/eventable_scanner.rb, line 68 def running? return !@stopping if @timer return false end
Generated with the Darkfish Rdoc Generator 2.