]> git.jsancho.org Git - pyrabbit.git/blob - pyrabbit.py
dfb9ac8f797051d6ad373962a89390c1ab85f48b
[pyrabbit.git] / pyrabbit.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    pyrabbit, a Python library for easy playing with RabbitMQ
5 #    Copyright (C) 2013 by Javier Sancho Fernandez <jsf at jsancho dot org>
6 #
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.
11 #
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.
16 #
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/>.
19 #
20 ##############################################################################
21
22 import errno
23 import os
24 import pika
25 import time
26 import uuid
27
28 class TimeoutError(Exception):
29     pass
30
31 class Connection(object):
32     def __init__(self, host):
33         self.host = host
34         self.open(host=self.host)
35
36     def open(self, host=None):
37         if host is None:
38             host = self.host
39         self.connection = pika.BlockingConnection(pika.ConnectionParameters(host=host))
40         self.channel = self.connection.channel()
41         self.callback_queue = None
42
43     def close(self):
44         self.channel.cancel()
45         self.connection.close()
46
47     def __getattr__(self, queue_name):
48         return Queue(self, queue_name)
49
50     def __getitem__(self, queue_name):
51         return self.__getattr__(queue_name)
52
53     def receive(self, queues=[], timeout=0):
54         if len(queues) == 0:
55             return None
56
57         t_start = time.time()
58         method = None
59         i = 0
60         while method is None and (time.time()-t_start < timeout or timeout <= 0):
61             time.sleep(0.1)
62             method, properties, body = self.channel.basic_get(queues[i])
63             if i == len(queues) - 1:
64                 i = 0
65             else:
66                 i += 1
67
68         if method is None:
69             raise TimeoutError(os.strerror(errno.ETIME))
70         else:
71             return Message(self, method, properties, body)
72
73
74 class Queue(object):
75     def __init__(self, connection, queue_name):
76         self.connection = connection
77         self.queue_name = queue_name
78         self.connection.channel.queue_declare(queue=self.queue_name)
79
80     def receive(self, timeout=0):
81         return self.connection.receive(queues=[self.queue_name], timeout=timeout)
82
83     def send(self, body, wait_response=False, timeout=0):
84         properties = None
85
86         if wait_response:
87             corr_id = str(uuid.uuid4())
88             if self.connection.callback_queue is None:
89                 self.connection.callback_queue = self.connection.channel.queue_declare(exclusive=True).method.queue
90             properties = pika.BasicProperties(
91                 reply_to=self.connection.callback_queue,
92                 correlation_id=corr_id,
93                 )
94         else:
95             properties = pika.BasicProperties()
96
97         self.connection.channel.basic_publish(exchange='',
98                                               routing_key=self.queue_name,
99                                               properties=properties,
100                                               body=body)
101
102         response = None
103         if wait_response:
104             response = self.connection.receive(queues=[self.connection.callback_queue], timeout=timeout)
105
106         return response
107
108
109 class Message(object):
110     def __init__(self, connection, method, properties, body):
111         self.connection = connection
112         self.method = method
113         self.properties = properties
114         self.body = body
115         self._ack = False
116
117     def ack(self):
118         if not self._ack:
119             self.connection.channel.basic_ack(delivery_tag=self.method.delivery_tag)
120             self._ack = True
121
122     def response(self, body):
123         if self.properties.reply_to:
124             self.connection.channel.basic_publish(exchange='',
125                                                   routing_key=self.properties.reply_to,
126                                                   properties=pika.BasicProperties(correlation_id=self.properties.correlation_id),
127                                                   body=body)