Skip to content

Instantly share code, notes, and snippets.

@cmheisel
Forked from nathanborror/flopsy.py
Created June 8, 2009 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmheisel/125852 to your computer and use it in GitHub Desktop.
Save cmheisel/125852 to your computer and use it in GitHub Desktop.
Fork of nathanb's flopsy but doesn't require Django SETTINGS
"""
Copyright (c) 2008-2009, Nathan Borror
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
Neither the name of the flopsy nor the names of its contributors may be
used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Flopsy
======
A very simple way to interact with python AMQPlib. For my case I'm using
RabbitMQ as my implementation but it should work with others.
settings.py
-----------
AMQP_SERVER = '24.143.38.241'
AMQP_PORT = 5672
AMQP_USER = 'guest'
AMQP_PASSWORD = 'guest'
AMQP_VHOST = '/'
Consumer
--------
>>> from flopsy import Connection, Consumer
>>> consumer = Consumer(connection=Connection())
>>> consumer.declare(queue='po_box', exchange='sorting_room', routing_key='jason', auto_delete=False)
>>> def message_callback(message):
... print 'Recieved: ' + message.body
... consumer.channel.basic_ack(message.delivery_tag)
>>>
>>> consumer.register(message_callback)
>>> consumer.wait()
Publisher
---------
>>> from flopsy import Connection, Publisher
>>> publisher = Publisher(connection=Connection(), exchange='sorting_room', routing_key='jason')
>>> publisher.publish('Test message!')
>>> publisher.close()
"""
from django.conf import settings
from amqplib import client_0_8 as amqp
class Connection(object):
def __init__(self, *args, **kwargs):
self.host = kwargs.get('host', None) or getattr(settings, 'AMQP_SERVER')
self.user_id = kwargs.get('user_id', None) or getattr(settings, 'AMQP_USER')
self.password = kwargs.get('password', None) or getattr(settings, 'AMQP_PASSWORD')
self.vhost = kwargs.get('vhost', None) or getattr(settings, 'AMQP_VHOST', '/')
self.port = kwargs.get('port', None) or getattr(settings, 'AMQP_PORT', 5672)
self.insist = False
self.connect()
def connect(self):
self.connection = amqp.Connection(host='%s:%s' % (self.host, self.port), userid=self.user_id,
password=self.password, virtual_host=self.vhost, insist=self.insist)
class Consumer(object):
def __init__(self, connection):
self.connection = connection
self.channel = self.connection.connection.channel()
def close(self):
if getattr(self, 'channel'):
self.channel.close()
if getattr(self, 'connection'):
self.connection.close()
def declare(self, queue, exchange, routing_key, durable=True, exclusive=False, auto_delete=False):
self.queue = queue
self.exchange = exchange
self.routing_key = routing_key
self.channel.queue_declare(queue=self.queue, durable=durable,
exclusive=exclusive, auto_delete=auto_delete)
self.channel.exchange_declare(exchange=self.exchange, type='direct',
durable=durable, auto_delete=auto_delete)
self.channel.queue_bind(queue=self.queue, exchange=self.exchange,
routing_key=self.routing_key)
def wait(self):
while True:
self.channel.wait()
def register(self, callback, queue=None, consumer_tag='flopsy_callback'):
if hasattr(self, 'queue') or queue:
self.consumer_tag = consumer_tag
self.channel.basic_consume(queue=getattr(self, 'queue', queue), no_ack=True,
callback=callback, consumer_tag=consumer_tag)
def unregister(self, consumer_tag='flopsy_callback'):
self.channel.basic_cancel(consumer_tag)
class Publisher(object):
def __init__(self, connection, exchange, routing_key, delivery_mode=2):
self.connection = connection
self.channel = self.connection.connection.channel()
self.exchange = exchange
self.routing_key = routing_key
self.delivery_mode = delivery_mode
def publish(self, message_data):
message = amqp.Message(message_data)
message.properties['delivery_mode'] = self.delivery_mode
self.channel.basic_publish(message, exchange=self.exchange, routing_key=self.routing_key)
return message
def close(self):
if getattr(self, 'channel'):
self.channel.close()
if getattr(self, 'connection'):
self.connection.connection.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment