blob: 7d7d2c0ad46c478658654fc314ca1db550a00737 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
require 'chef/event_dispatch/base'
class Chef
module EventDispatch
# == EventDispatch::Dispatcher
# The Dispatcher handles receiving event data from the sources
# (Chef::Client, Resources and Providers, etc.) and publishing the data to
# the registered subscribers.
class Dispatcher < Base
attr_reader :subscribers
def initialize(*subscribers)
@subscribers = subscribers
end
# Add a new subscriber to the list of registered subscribers
def register(subscriber)
@subscribers << subscriber
end
# Check to see if we are dispatching to a formatter
def formatter?
@subscribers.each do |s|
return s.is_formatter? if s.respond_to?(:is_formatter?)
end
false
end
####
# All messages are unconditionally forwarded to all subscribers, so just
# define the forwarding in one go:
#
def call_subscribers(method_name, *args)
@subscribers.each do |s|
# Skip new/unsupported event names.
next if !s.respond_to?(method_name)
mth = s.method(method_name)
# Trim arguments to match what the subscriber expects to allow
# adding new arguments without breaking compat.
if mth.arity < args.size && mth.arity >= 0
mth.call(*args.take(mth.arity))
else
mth.call(*args)
end
end
end
(Base.instance_methods - Object.instance_methods).each do |method_name|
class_eval <<-EOM
def #{method_name}(*args)
call_subscribers(#{method_name.inspect}, *args)
end
EOM
end
# Special case deprecation, since it needs to know its caller
def deprecation(message, location=caller(2..2)[0])
call_subscribers(:deprecation, message, location)
end
end
end
end
|