Sha256: 3d2d4e4092f7901138cff8ddf99882d8603bf3f7bfb482888a15cee20d00244c

Contents?: true

Size: 1.53 KB

Versions: 8

Compression:

Stored size: 1.53 KB

Contents

module QueueBus
  # only process local queues
  class Local

    class << self
      def publish(attributes = {})
        if ::QueueBus.local_mode == :suppress
          ::QueueBus.log_worker("Suppressed: #{attributes.inspect}")
          return  # not doing anything
        end

        # To json and back to simlulate enqueueing
        json = ::QueueBus::Util.encode(attributes)
        attributes = ::QueueBus::Util.decode(json)

        ::QueueBus.log_worker("Local running: #{attributes.inspect}")

        # looking for subscriptions, not queues
        subscription_matches(attributes).each do |sub|
          bus_attr = {  "bus_driven_at" => Time.now.to_i,
                        "bus_rider_queue" => sub.queue_name,
                        "bus_rider_app_key" => sub.app_key,
                        "bus_rider_sub_key" => sub.key,
                        "bus_rider_class_name" => sub.class_name}
          to_publish = bus_attr.merge(attributes || {})
          if ::QueueBus.local_mode == :standalone
            ::QueueBus.enqueue_to(sub.queue_name, sub.class_name, bus_attr.merge(attributes || {}))
          else  # defaults to inline mode
            sub.execute!(to_publish)
          end
        end
      end

      # looking directly at subscriptions loaded into dispatcher
      # so we don't need redis server up
      def subscription_matches(attributes)
        out = []
        ::QueueBus.dispatchers.each do |dispatcher|
          out.concat(dispatcher.subscription_matches(attributes))
        end
        out
      end
    end

  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
queue-bus-0.9.0 lib/queue_bus/local.rb
queue-bus-0.8.1 lib/queue_bus/local.rb
queue-bus-0.8.0 lib/queue_bus/local.rb
queue-bus-0.7.0 lib/queue_bus/local.rb
queue-bus-0.6.0 lib/queue_bus/local.rb
queue-bus-0.5.9 lib/queue_bus/local.rb
queue-bus-0.5.8 lib/queue_bus/local.rb
queue-bus-0.5.7 lib/queue_bus/local.rb