|
@ -45,23 +45,28 @@ class KombuManager(PubSubManager): # pragma: no cover |
|
|
'virtualenv).') |
|
|
'virtualenv).') |
|
|
super(KombuManager, self).__init__(channel=channel) |
|
|
super(KombuManager, self).__init__(channel=channel) |
|
|
self.url = url |
|
|
self.url = url |
|
|
self.writer_conn = kombu.Connection(self.url) |
|
|
self.producer = self._producer() |
|
|
self.writer_queue = self._queue(self.writer_conn) |
|
|
|
|
|
|
|
|
|
|
|
def _queue(self, conn=None): |
|
|
def _connection(self): |
|
|
exchange = kombu.Exchange(self.channel, type='fanout', durable=False) |
|
|
return kombu.Connection(self.url) |
|
|
queue = kombu.Queue(str(uuid.uuid4()), exchange, |
|
|
|
|
|
queue_arguments={'x-expires': 300000}) |
|
|
def _exchange(self): |
|
|
return queue |
|
|
return kombu.Exchange(self.channel, type='fanout', durable=False) |
|
|
|
|
|
|
|
|
|
|
|
def _queue(self): |
|
|
|
|
|
queue_name = 'flask-socketio.' + str(uuid.uuid4()) |
|
|
|
|
|
return kombu.Queue(queue_name, self._exchange(), |
|
|
|
|
|
queue_arguments={'x-expires': 300000}) |
|
|
|
|
|
|
|
|
|
|
|
def _producer(self): |
|
|
|
|
|
return self._connection().Producer(exchange=self._exchange()) |
|
|
|
|
|
|
|
|
def _publish(self, data): |
|
|
def _publish(self, data): |
|
|
with self.writer_conn.SimpleQueue(self.writer_queue) as queue: |
|
|
self.producer.publish(pickle.dumps(data)) |
|
|
queue.put(pickle.dumps(data)) |
|
|
|
|
|
|
|
|
|
|
|
def _listen(self): |
|
|
def _listen(self): |
|
|
reader_conn = kombu.Connection(self.url) |
|
|
reader_queue = self._queue() |
|
|
reader_queue = self._queue(reader_conn) |
|
|
with self._connection().SimpleQueue(reader_queue) as queue: |
|
|
with reader_conn.SimpleQueue(reader_queue) as queue: |
|
|
|
|
|
while True: |
|
|
while True: |
|
|
message = queue.get(block=True) |
|
|
message = queue.get(block=True) |
|
|
message.ack() |
|
|
message.ack() |
|
|