123456789_123456789_123456789_123456789_123456789_

Class: ActiveSupport::Notifications::Fanout

Relationships & Source Files
Namespace Children
Modules:
Classes:
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
self, FanoutIteration, Mutex_m
Inherits: Object
Defined in: activesupport/lib/active_support/notifications/fanout.rb

Overview

This is a default queue implementation that ships with ::ActiveSupport::Notifications. It just pushes events to all registered log subscribers.

This class is thread safe. All methods are reentrant.

Class Method Summary

Instance Method Summary

Constructor Details

.newFanout

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 54

def initialize
  @string_subscribers = Concurrent::Map.new { |h, k| h.compute_if_absent(k) { [] } }
  @other_subscribers = []
  @all_listeners_for = Concurrent::Map.new
  @groups_for = Concurrent::Map.new
  @silenceable_groups_for = Concurrent::Map.new
  super
end

Instance Method Details

#all_listeners_for(name)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 301

def all_listeners_for(name)
  # this is correctly done double-checked locking (Concurrent::Map's lookups have volatile semantics)
  @all_listeners_for[name] || synchronize do
    # use synchronisation when accessing @subscribers
    @all_listeners_for[name] ||=
      @string_subscribers[name] + @other_subscribers.select { |s| s.subscribed_to?(name) }
  end
end

#build_handle(name, id, payload)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 276

def build_handle(name, id, payload)
  Handle.new(self, name, id, payload)
end

#clear_cache(key = nil)

This method is for internal use only.
[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 105

def clear_cache(key = nil) # :nodoc:
  if key
    @all_listeners_for.delete(key)
    @groups_for.delete(key)
    @silenceable_groups_for.delete(key)
  else
    @all_listeners_for.clear
    @groups_for.clear
    @silenceable_groups_for.clear
  end
end

#finish(name, id, payload, listeners = nil)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 287

def finish(name, id, payload, listeners = nil)
  handle_stack = IsolatedExecutionState[:_fanout_handle_stack]
  handle = handle_stack.pop
  handle.finish_with_values(name, id, payload)
end

#groups_for(name)

This method is for internal use only.
[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 191

def groups_for(name) # :nodoc:
  groups = @groups_for.compute_if_absent(name) do
    all_listeners_for(name).reject(&:silenceable).group_by(&:group_class).transform_values do |s|
      s.map(&:delegate)
    end
  end

  silenceable_groups = @silenceable_groups_for.compute_if_absent(name) do
    all_listeners_for(name).select(&:silenceable).group_by(&:group_class).transform_values do |s|
      s.map(&:delegate)
    end
  end

  unless silenceable_groups.empty?
    groups = groups.dup
    silenceable_groups.each do |group_class, subscriptions|
      active_subscriptions = subscriptions.reject { |s| s.silenced?(name) }
      unless active_subscriptions.empty?
        groups[group_class] = (groups[group_class] || []) + active_subscriptions
      end
    end
  end

  groups
end

#inspect

This method is for internal use only.
[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 63

def inspect # :nodoc:
  total_patterns = @string_subscribers.size + @other_subscribers.size
  "#<#{self.class} (#{total_patterns} patterns)>"
end

#listeners_for(name)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 310

def listeners_for(name)
  all_listeners_for(name).reject { |s| s.silenced?(name) }
end

#listening?(name) ⇒ Boolean

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 314

def listening?(name)
  all_listeners_for(name).any? { |s| !s.silenced?(name) }
end

#publish(name, *args)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 293

def publish(name, *args)
  iterate_guarding_exceptions(listeners_for(name)) { |s| s.publish(name, *args) }
end

#publish_event(event)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 297

def publish_event(event)
  iterate_guarding_exceptions(listeners_for(event.name)) { |s| s.publish_event(event) }
end

#start(name, id, payload)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 280

def start(name, id, payload)
  handle_stack = (IsolatedExecutionState[:_fanout_handle_stack] ||= [])
  handle = build_handle(name, id, payload)
  handle_stack << handle
  handle.start
end

#subscribe(pattern = nil, callable = nil, monotonic: false, &block)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 68

def subscribe(pattern = nil, callable = nil, monotonic: false, &block)
  subscriber = Subscribers.new(pattern, callable || block, monotonic)
  synchronize do
    case pattern
    when String
      @string_subscribers[pattern] << subscriber
      clear_cache(pattern)
    when NilClass, Regexp
      @other_subscribers << subscriber
      clear_cache
    else
      raise ArgumentError,  "pattern must be specified as a String, Regexp or empty"
    end
  end
  subscriber
end

#unsubscribe(subscriber_or_name)

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 85

def unsubscribe(subscriber_or_name)
  synchronize do
    case subscriber_or_name
    when String
      @string_subscribers[subscriber_or_name].clear
      clear_cache(subscriber_or_name)
      @other_subscribers.each { |sub| sub.unsubscribe!(subscriber_or_name) }
    else
      pattern = subscriber_or_name.try(:pattern)
      if String === pattern
        @string_subscribers[pattern].delete(subscriber_or_name)
        clear_cache(pattern)
      else
        @other_subscribers.delete(subscriber_or_name)
        clear_cache
      end
    end
  end
end

#wait

This is a sync queue, so there is no waiting.

[ GitHub ]

  
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 319

def wait
end