2022-03-02 08:16:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module EventStore
|
|
|
|
class Store
|
|
|
|
attr_reader :subscriptions
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@subscriptions = Hash.new { |h, k| h[k] = [] }
|
|
|
|
|
|
|
|
yield(self) if block_given?
|
|
|
|
|
|
|
|
# freeze the subscriptions as safety measure to avoid further
|
|
|
|
# subcriptions after initialization.
|
|
|
|
lock!
|
|
|
|
end
|
|
|
|
|
|
|
|
def subscribe(worker, to:, if: nil)
|
|
|
|
condition = binding.local_variable_get('if')
|
|
|
|
|
|
|
|
Array(to).each do |event|
|
|
|
|
validate_subscription!(worker, event)
|
|
|
|
subscriptions[event] << Gitlab::EventStore::Subscription.new(worker, condition)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def publish(event)
|
|
|
|
unless event.is_a?(Event)
|
|
|
|
raise InvalidEvent, "Event being published is not an instance of Gitlab::EventStore::Event: got #{event.inspect}"
|
|
|
|
end
|
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
subscriptions.fetch(event.class, []).each do |subscription|
|
2022-03-02 08:16:31 +05:30
|
|
|
subscription.consume_event(event)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def lock!
|
|
|
|
@subscriptions.freeze
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate_subscription!(subscriber, event_class)
|
|
|
|
unless event_class < Event
|
|
|
|
raise InvalidEvent, "Event being subscribed to is not a subclass of Gitlab::EventStore::Event: got #{event_class}"
|
|
|
|
end
|
|
|
|
|
|
|
|
unless subscriber.respond_to?(:perform_async)
|
|
|
|
raise InvalidSubscriber, "Subscriber is not an ApplicationWorker: got #{subscriber}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|