Sha256: 745e1d765cb5fe6d152dfa584385fd59103737c47ee85eaee8734665613badb3

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 KB

Contents

require 'carrot'
module MessageQueue
  class Rabbit < Base

    def initialize(opts={})
      @opts = opts
    end

    def delete(queue)
      send_command do
        client.queue(queue).delete
      end
    end

    def queue_size(queue)
      send_command do
        client.queue(queue).message_count
      end
    end

    def enqueue(queue, data)
      send_command do 
        client.queue(queue, :durable => true).publish(Marshal.dump(data), :persistent => true)
      end
    end

    def dequeue(queue)
      send_command do
        task = client.queue(queue).pop(:ack => true)
        return unless task
        Marshal.load(task)
      end
    end

    def confirm(queue)
      send_command do
        client.queue(queue).ack
      end
    end

    def send_command(&block)
      retried = false
      begin
        block.call
      rescue Carrot::AMQP::Server::ServerDown => e
        if not retried
          puts "Error #{e.message}. Retrying..."
          @client = nil
          retried = true
          retry
        else
          raise e
        end
      end
    end

    def client
      @client ||= Carrot.new(
        :host   => @opts['host'], 
        :port   => @opts['port'].to_i, 
        :user   => @opts['user'], 
        :pass   => @opts['pass'], 
        :vhost  => @opts['vhost'],
        :insist => @opts['insist']
      ) 
    end

    def stop
      client.stop
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
famoseagle-sweat_shop-1.1.0 lib/message_queue/rabbit.rb
famoseagle-sweat_shop-1.2.0 lib/message_queue/rabbit.rb
famoseagle-sweat_shop-1.3.0 lib/message_queue/rabbit.rb
famoseagle-sweat_shop-1.3.1 lib/message_queue/rabbit.rb