Class: Attentive::ListenerCollection

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/attentive/listener_collection.rb

Instance Method Summary collapse

Constructor Details

#initializeListenerCollection

Returns a new instance of ListenerCollection.



11
12
13
# File 'lib/attentive/listener_collection.rb', line 11

def initialize
  super ThreadSafe::Array.new
end

Instance Method Details

#hear(message) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/attentive/listener_collection.rb', line 23

def hear(message)
  message = Attentive::Message.new(message) unless message.is_a?(Attentive::Message)

  listeners = select { |listener| listener.matches_context?(message) }

  # Listen for any known phrase, starting with any token in the message.
  matches = []
  message.tokens.each_with_index do |token, i|
    listeners.each do |listener|
      listener.phrases.each do |phrase|
        match = Attentive::Matcher.new(phrase, Cursor.new(message, i), listener: listener).match!
        next unless match

        # Don't match more than one phrase per listener
        matches.push match
        break
      end
    end
  end
  matches
end

#listen_for(*args, &block) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/attentive/listener_collection.rb', line 15

def listen_for(*args, &block)
  options = args.last.is_a?(::Hash) ? args.pop : {}

  Attentive::Listener.new(self, args, options, block).tap do |listener|
    push listener
  end
end