1 # -*- coding: utf-8 -*-
2 ##############################################################################
4 # pyrabbit, a Python library for easy playing with RabbitMQ
5 # Copyright (C) 2013 by Javier Sancho Fernandez <jsf at jsancho dot org>
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 ##############################################################################
28 class TimeoutError(Exception):
31 class Connection(object):
32 def __init__(self, host):
34 self.open(host=self.host)
36 def open(self, host=None):
39 self.connection = pika.BlockingConnection(pika.ConnectionParameters(host=host))
40 self.channel = self.connection.channel()
41 self.callback_queue = None
45 self.connection.close()
47 def __getattr__(self, queue_name):
48 return Queue(self, queue_name)
50 def __getitem__(self, queue_name):
51 return self.__getattr__(queue_name)
55 def __init__(self, connection, queue_name):
56 self.connection = connection
57 self.queue_name = queue_name
58 self.connection.channel.queue_declare(queue=self.queue_name)
60 def receive(self, timeout=0, queue_name=None):
61 if queue_name is None:
62 queue_name = self.queue_name
63 def _handle_timeout(signum, frame):
64 raise TimeoutError(os.strerror(errno.ETIME))
65 signal.signal(signal.SIGALRM, _handle_timeout)
69 method, properties, body = self.connection.channel.consume(queue_name).next()
70 res = Message(self.connection, method, properties, body)
75 def send(self, body, wait_response=False, timeout=0):
79 corr_id = str(uuid.uuid4())
80 if self.connection.callback_queue is None:
81 self.connection.callback_queue = self.connection.channel.queue_declare(exclusive=True).method.queue
82 properties = pika.BasicProperties(
83 reply_to=self.connection.callback_queue,
84 correlation_id=corr_id,
87 properties = pika.BasicProperties()
89 self.connection.channel.basic_publish(exchange='',
90 routing_key=self.queue_name,
91 properties=properties,
96 response = self.receive(timeout=timeout, queue_name=self.connection.callback_queue)
101 class Message(object):
102 def __init__(self, connection, method, properties, body):
103 self.connection = connection
105 self.properties = properties
109 self.connection.channel.basic_ack(delivery_tag=self.method.delivery_tag)
111 def response(self, body):
112 print self.properties
113 print self.properties.reply_to
114 if self.properties.reply_to:
115 self.connection.channel.basic_publish(exchange='',
116 routing_key=self.properties.reply_to,
117 properties=pika.BasicProperties(correlation_id=self.properties.correlation_id),