143 lines
4.0 KiB
Python
143 lines
4.0 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from eventlet import patcher
|
|
puka = patcher.import_patched('puka')
|
|
#import puka
|
|
import anyjson
|
|
import config
|
|
|
|
|
|
class RmqClient(object):
|
|
def __init__(self):
|
|
settings = config.CONF.rabbitmq
|
|
self._client = puka.Client('amqp://{0}:{1}@{2}:{3}/{4}'.format(
|
|
settings.login,
|
|
settings.password,
|
|
settings.host,
|
|
settings.port,
|
|
settings.virtual_host
|
|
))
|
|
self._connected = False
|
|
|
|
def __enter__(self):
|
|
self.connect()
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
self.close()
|
|
return False
|
|
|
|
def connect(self):
|
|
if not self._connected:
|
|
promise = self._client.connect()
|
|
self._client.wait(promise, timeout=10000)
|
|
self._connected = True
|
|
|
|
def close(self):
|
|
if self._connected:
|
|
self._client.close()
|
|
self._connected = False
|
|
|
|
def declare(self, queue, exchange=None):
|
|
promise = self._client.queue_declare(str(queue), durable=True)
|
|
self._client.wait(promise)
|
|
|
|
if exchange:
|
|
promise = self._client.exchange_declare(
|
|
str(exchange),
|
|
durable=True)
|
|
self._client.wait(promise)
|
|
promise = self._client.queue_bind(
|
|
str(queue), str(exchange), routing_key=str(queue))
|
|
self._client.wait(promise)
|
|
|
|
def send(self, message, key, exchange='', timeout=None):
|
|
if not self._connected:
|
|
raise RuntimeError('Not connected to RabbitMQ')
|
|
|
|
headers = {'message_id': message.id}
|
|
|
|
promise = self._client.basic_publish(
|
|
exchange=str(exchange),
|
|
routing_key=str(key),
|
|
body=anyjson.dumps(message.body),
|
|
headers=headers)
|
|
self._client.wait(promise, timeout=timeout)
|
|
|
|
def open(self, queue):
|
|
if not self._connected:
|
|
raise RuntimeError('Not connected to RabbitMQ')
|
|
|
|
return Subscription(self._client, queue)
|
|
|
|
|
|
class Subscription(object):
|
|
def __init__(self, client, queue):
|
|
self._client = client
|
|
self._queue = queue
|
|
self._promise = None
|
|
self._lastMessage = None
|
|
|
|
def __enter__(self):
|
|
self._promise = self._client.basic_consume(
|
|
queue=self._queue,
|
|
prefetch_count=1)
|
|
return self
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
self._ack_last()
|
|
promise = self._client.basic_cancel(self._promise)
|
|
self._client.wait(promise)
|
|
return False
|
|
|
|
def _ack_last(self):
|
|
if self._lastMessage:
|
|
self._client.basic_ack(self._lastMessage)
|
|
self._lastMessage = None
|
|
|
|
def get_message(self, timeout=None):
|
|
if not self._promise:
|
|
raise RuntimeError(
|
|
"Subscription object must be used within 'with' block")
|
|
self._ack_last()
|
|
self._lastMessage = self._client.wait(self._promise, timeout=timeout)
|
|
msg = Message()
|
|
msg.body = anyjson.loads(self._lastMessage['body'])
|
|
msg.id = self._lastMessage['headers'].get('message_id')
|
|
return msg
|
|
|
|
|
|
class Message(object):
|
|
def __init__(self):
|
|
self._body = {}
|
|
self._id = ''
|
|
|
|
@property
|
|
def body(self):
|
|
return self._body
|
|
|
|
@body.setter
|
|
def body(self, value):
|
|
self._body = value
|
|
|
|
@property
|
|
def id(self):
|
|
return self._id
|
|
|
|
@id.setter
|
|
def id(self, value):
|
|
self._id = value or ''
|