2017-07-09 08:06:36 -04:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 09:39:13 -04:00
|
|
|
|
2017-10-21 09:11:29 -04:00
|
|
|
require "active_support/per_thread_registry"
|
|
|
|
require "active_support/notifications"
|
2013-04-21 11:39:48 -04:00
|
|
|
|
2013-04-15 09:23:46 -04:00
|
|
|
module ActiveSupport
|
|
|
|
# ActiveSupport::Subscriber is an object set to consume
|
2013-04-16 10:50:50 -04:00
|
|
|
# ActiveSupport::Notifications. The subscriber dispatches notifications to
|
2013-04-15 09:23:46 -04:00
|
|
|
# a registered object based on its given namespace.
|
|
|
|
#
|
2015-04-25 22:09:30 -04:00
|
|
|
# An example would be an Active Record subscriber responsible for collecting
|
2013-04-15 09:23:46 -04:00
|
|
|
# statistics about queries:
|
|
|
|
#
|
|
|
|
# module ActiveRecord
|
|
|
|
# class StatsSubscriber < ActiveSupport::Subscriber
|
2015-03-24 11:10:15 -04:00
|
|
|
# attach_to :active_record
|
|
|
|
#
|
2013-04-15 09:23:46 -04:00
|
|
|
# def sql(event)
|
|
|
|
# Statsd.timing("sql.#{event.payload[:name]}", event.duration)
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# After configured, whenever a "sql.active_record" notification is published,
|
|
|
|
# it will properly dispatch the event (ActiveSupport::Notifications::Event) to
|
2013-04-16 10:50:50 -04:00
|
|
|
# the +sql+ method.
|
2019-04-04 01:27:57 -04:00
|
|
|
#
|
|
|
|
# We can detach a subscriber as well:
|
|
|
|
#
|
|
|
|
# ActiveRecord::StatsSubscriber.detach_from(:active_record)
|
2013-04-15 09:23:46 -04:00
|
|
|
class Subscriber
|
|
|
|
class << self
|
|
|
|
# Attach the subscriber to a namespace.
|
2020-09-16 13:37:24 -04:00
|
|
|
def attach_to(namespace, subscriber = new, notifier = ActiveSupport::Notifications, inherit_all: false)
|
2013-09-19 05:03:58 -04:00
|
|
|
@namespace = namespace
|
|
|
|
@subscriber = subscriber
|
|
|
|
@notifier = notifier
|
2020-09-16 13:37:24 -04:00
|
|
|
@inherit_all = inherit_all
|
2013-09-19 05:03:58 -04:00
|
|
|
|
2013-04-15 09:23:46 -04:00
|
|
|
subscribers << subscriber
|
|
|
|
|
2013-09-19 05:03:58 -04:00
|
|
|
# Add event subscribers for all existing methods on the class.
|
2020-09-16 13:37:24 -04:00
|
|
|
fetch_public_methods(subscriber, inherit_all).each do |event|
|
2013-09-19 05:03:58 -04:00
|
|
|
add_event_subscriber(event)
|
|
|
|
end
|
|
|
|
end
|
2013-04-15 09:23:46 -04:00
|
|
|
|
2019-04-04 01:27:57 -04:00
|
|
|
# Detach the subscriber from a namespace.
|
|
|
|
def detach_from(namespace, notifier = ActiveSupport::Notifications)
|
|
|
|
@namespace = namespace
|
|
|
|
@subscriber = find_attached_subscriber
|
|
|
|
@notifier = notifier
|
|
|
|
|
|
|
|
return unless subscriber
|
|
|
|
|
|
|
|
subscribers.delete(subscriber)
|
|
|
|
|
|
|
|
# Remove event subscribers of all existing methods on the class.
|
2020-09-16 13:37:24 -04:00
|
|
|
fetch_public_methods(subscriber, true).each do |event|
|
2019-04-04 01:27:57 -04:00
|
|
|
remove_event_subscriber(event)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Reset notifier so that event subscribers will not add for new methods added to the class.
|
|
|
|
@notifier = nil
|
|
|
|
end
|
|
|
|
|
2013-09-19 05:03:58 -04:00
|
|
|
# Adds event subscribers for all new methods added to the class.
|
|
|
|
def method_added(event)
|
|
|
|
# Only public methods are added as subscribers, and only if a notifier
|
|
|
|
# has been set up. This means that subscribers will only be set up for
|
|
|
|
# classes that call #attach_to.
|
|
|
|
if public_method_defined?(event) && notifier
|
|
|
|
add_event_subscriber(event)
|
2013-04-15 09:23:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def subscribers
|
|
|
|
@@subscribers ||= []
|
|
|
|
end
|
2013-09-19 05:03:58 -04:00
|
|
|
|
2016-12-17 03:13:50 -05:00
|
|
|
private
|
2018-02-16 20:14:27 -05:00
|
|
|
attr_reader :subscriber, :notifier, :namespace
|
2016-12-17 03:13:50 -05:00
|
|
|
|
2018-02-16 20:14:27 -05:00
|
|
|
def add_event_subscriber(event) # :doc:
|
2019-08-29 14:04:52 -04:00
|
|
|
return if invalid_event?(event)
|
2013-09-19 05:03:58 -04:00
|
|
|
|
2019-04-04 01:27:57 -04:00
|
|
|
pattern = prepare_pattern(event)
|
2014-05-09 05:16:18 -04:00
|
|
|
|
2019-10-06 20:18:31 -04:00
|
|
|
# Don't add multiple subscribers (e.g. if methods are redefined).
|
2019-04-04 01:27:57 -04:00
|
|
|
return if pattern_subscribed?(pattern)
|
|
|
|
|
|
|
|
subscriber.patterns[pattern] = notifier.subscribe(pattern, subscriber)
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_event_subscriber(event) # :doc:
|
2019-08-29 14:04:52 -04:00
|
|
|
return if invalid_event?(event)
|
2019-04-04 01:27:57 -04:00
|
|
|
|
|
|
|
pattern = prepare_pattern(event)
|
|
|
|
|
|
|
|
return unless pattern_subscribed?(pattern)
|
|
|
|
|
|
|
|
notifier.unsubscribe(subscriber.patterns[pattern])
|
|
|
|
subscriber.patterns.delete(pattern)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_attached_subscriber
|
|
|
|
subscribers.find { |attached_subscriber| attached_subscriber.instance_of?(self) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def invalid_event?(event)
|
2019-08-29 14:04:52 -04:00
|
|
|
%i{ start finish }.include?(event.to_sym)
|
2019-04-04 01:27:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def prepare_pattern(event)
|
|
|
|
"#{event}.#{namespace}"
|
|
|
|
end
|
2014-05-09 05:16:18 -04:00
|
|
|
|
2019-04-04 01:27:57 -04:00
|
|
|
def pattern_subscribed?(pattern)
|
|
|
|
subscriber.patterns.key?(pattern)
|
2018-02-16 20:14:27 -05:00
|
|
|
end
|
2020-09-16 13:37:24 -04:00
|
|
|
|
|
|
|
def fetch_public_methods(subscriber, inherit_all)
|
|
|
|
subscriber.public_methods(inherit_all) - Subscriber.public_instance_methods(true)
|
|
|
|
end
|
2013-04-15 09:23:46 -04:00
|
|
|
end
|
|
|
|
|
2014-05-16 20:13:34 -04:00
|
|
|
attr_reader :patterns # :nodoc:
|
2014-05-09 05:16:18 -04:00
|
|
|
|
2013-04-15 09:23:46 -04:00
|
|
|
def initialize
|
2013-04-16 10:50:50 -04:00
|
|
|
@queue_key = [self.class.name, object_id].join "-"
|
2019-04-04 01:27:57 -04:00
|
|
|
@patterns = {}
|
2013-04-15 09:23:46 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def start(name, id, payload)
|
2018-10-21 11:43:34 -04:00
|
|
|
event = ActiveSupport::Notifications::Event.new(name, nil, nil, id, payload)
|
|
|
|
event.start!
|
2013-04-15 09:23:46 -04:00
|
|
|
parent = event_stack.last
|
2018-10-21 11:43:34 -04:00
|
|
|
parent << event if parent
|
2013-04-15 09:23:46 -04:00
|
|
|
|
2018-10-21 11:43:34 -04:00
|
|
|
event_stack.push event
|
2013-04-15 09:23:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def finish(name, id, payload)
|
2018-07-26 16:39:29 -04:00
|
|
|
event = event_stack.pop
|
2018-07-26 12:55:59 -04:00
|
|
|
event.finish!
|
2013-04-15 09:23:46 -04:00
|
|
|
event.payload.merge!(payload)
|
|
|
|
|
2018-02-27 23:33:37 -05:00
|
|
|
method = name.split(".").first
|
2013-04-15 09:23:46 -04:00
|
|
|
send(method, event)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2013-04-21 11:39:48 -04:00
|
|
|
def event_stack
|
2013-11-06 19:32:47 -05:00
|
|
|
SubscriberQueueRegistry.instance.get_queue(@queue_key)
|
2013-04-21 11:39:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# This is a registry for all the event stacks kept for subscribers.
|
|
|
|
#
|
|
|
|
# See the documentation of <tt>ActiveSupport::PerThreadRegistry</tt>
|
|
|
|
# for further details.
|
|
|
|
class SubscriberQueueRegistry # :nodoc:
|
|
|
|
extend PerThreadRegistry
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@registry = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_queue(queue_key)
|
|
|
|
@registry[queue_key] ||= []
|
2013-04-15 09:23:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|