1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------
import logging
import uuid
from uamqp import c_uamqp, constants, errors, utils
_logger = logging.getLogger(__name__)
class MessageSender(object):
"""A Message Sender that opens its own exclsuive Link on an
existing Session.
:ivar send_settle_mode: The mode by which to settle message send
operations. If set to `Unsettled`, the client will wait for a confirmation
from the service that the message was successfully send. If set to 'Settled',
the client will not wait for confirmation and assume success.
:vartype send_settle_mode: ~uamqp.constants.SenderSettleMode
:ivar receive_settle_mode: The mode by which to settle message receive
operations. If set to `PeekLock`, the receiver will lock a message once received until
the client accepts or rejects the message. If set to `ReceiveAndDelete`, the service
will assume successful receipt of the message and clear it from the queue. The
default is `PeekLock`.
:vartype receive_settle_mode: ~uamqp.constants.ReceiverSettleMode
:ivar max_message_size: The maximum allowed message size negotiated for the Link.
:vartype max_message_size: int
:param session: The underlying Session with which to send.
:type session: ~uamqp.session.Session
:param source: The name of source (i.e. the client).
:type source: str or bytes
:param target: The AMQP endpoint to send to.
:type target: ~uamqp.address.Target
:param name: A unique name for the sender. If not specified a GUID will be used.
:type name: str or bytes
:param send_settle_mode: The mode by which to settle message send
operations. If set to `Unsettled`, the client will wait for a confirmation
from the service that the message was successfully sent. If set to 'Settled',
the client will not wait for confirmation and assume success.
:type send_settle_mode: ~uamqp.constants.SenderSettleMode
:param receive_settle_mode: The mode by which to settle message receive
operations. If set to `PeekLock`, the receiver will lock a message once received until
the client accepts or rejects the message. If set to `ReceiveAndDelete`, the service
will assume successful receipt of the message and clear it from the queue. The
default is `PeekLock`.
:type receive_settle_mode: ~uamqp.constants.ReceiverSettleMode
:param desired_capabilities: The extension capabilities desired from the peer endpoint.
To create a desired_capabilities object, please do as follows:
- 1. Create an array of desired capability symbols: `capabilities_symbol_array = [types.AMQPSymbol(string)]`
- 2. Transform the array to AMQPValue object: `utils.data_factory(types.AMQPArray(capabilities_symbol_array))`
:type desired_capabilities: ~uamqp.c_uamqp.AMQPValue
:param max_message_size: The maximum allowed message size negotiated for the Link.
:type max_message_size: int
:param link_credit: The sender Link credit that determines how many
messages the Link will attempt to handle per connection iteration.
:type link_credit: int
:param properties: Metadata to be sent in the Link ATTACH frame.
:type properties: dict
:param error_policy: A policy for parsing errors on link, connection and message
disposition to determine whether the error should be retryable.
:type error_policy: ~uamqp.errors.ErrorPolicy
:param debug: Whether to turn on network trace logs. If `True`, trace logs
will be logged at INFO level. Default is `False`.
:type debug: bool
:param encoding: The encoding to use for parameters supplied as strings.
Default is 'UTF-8'
:type encoding: str
"""
def __init__(self, session, source, target,
name=None,
send_settle_mode=constants.SenderSettleMode.Unsettled,
receive_settle_mode=constants.ReceiverSettleMode.PeekLock,
max_message_size=constants.MAX_MESSAGE_LENGTH_BYTES,
link_credit=None,
properties=None,
error_policy=None,
debug=False,
encoding='UTF-8',
desired_capabilities=None):
# pylint: disable=protected-access
if name:
self.name = name.encode(encoding) if isinstance(name, str) else name
else:
self.name = str(uuid.uuid4()).encode(encoding)
source = source.encode(encoding) if isinstance(source, str) else source
role = constants.Role.Sender
self.source = c_uamqp.Messaging.create_source(source)
self.target = target._address.value
self.error_policy = error_policy or errors.ErrorPolicy()
self._conn = session._conn
self._session = session
self._link = c_uamqp.create_link(session._session, self.name, role.value, self.source, self.target)
self._link.max_message_size = max_message_size
self._link.subscribe_to_detach_event(self)
if link_credit:
self._link.set_prefetch_count(link_credit)
if properties:
self._link.set_attach_properties(utils.data_factory(properties, encoding=encoding))
if send_settle_mode:
self.send_settle_mode = send_settle_mode
if receive_settle_mode:
self.receive_settle_mode = receive_settle_mode
if max_message_size:
self.max_message_size = max_message_size
if desired_capabilities:
self._link.set_desired_capabilities(desired_capabilities)
self._sender = c_uamqp.create_message_sender(self._link, self)
self._sender.set_trace(debug)
self._state = constants.MessageSenderState.Idle
self._error = None
def __enter__(self):
"""Open the MessageSender in a context manager."""
self.open()
return self
def __exit__(self, *args):
"""Close the MessageSender when exiting a context manager."""
self.destroy()
def _detach_received(self, error):
"""Callback called when a link DETACH frame is received.
This callback will process the received DETACH error to determine if
the link is recoverable or whether it should be shutdown.
:param error: The error information from the detach
frame.
:type error: ~uamqp.errors.ErrorResponse
"""
# pylint: disable=protected-access
if error:
condition = error.condition
description = error.description
info = error.info
else:
condition = b"amqp:unknown-error"
description = None
info = None
self._error = errors._process_link_error(self.error_policy, condition, description, info)
_logger.info("Received Link detach event: %r\nLink: %r\nDescription: %r"
"\nDetails: %r\nRetryable: %r\nConnection: %r",
condition, self.name, description, info, self._error.action.retry,
self._session._connection.container_id)
def _state_changed(self, previous_state, new_state):
"""Callback called whenever the underlying Sender undergoes a change
of state. This function wraps the states as Enums to prepare for
calling the public callback.
:param previous_state: The previous Sender state.
:type previous_state: int
:param new_state: The new Sender state.
:type new_state: int
"""
try:
try:
_previous_state = constants.MessageSenderState(previous_state)
except ValueError:
_previous_state = previous_state
try:
_new_state = constants.MessageSenderState(new_state)
except ValueError:
_new_state = new_state
if _previous_state == constants.MessageSenderState.Opening \
and _new_state == constants.MessageSenderState.Error:
_logger.info("Sender link failed to open - expecting to receive DETACH frame.")
elif self._session._link_error: # pylint: disable=protected-access
_logger.info("Sender link ATTACH frame invalid - expecting to receive DETACH frame.")
else:
self.on_state_changed(_previous_state, _new_state)
except KeyboardInterrupt:
_logger.error("Received shutdown signal while updating sender state from {} to {}".format(
previous_state, new_state))
self._error = errors.AMQPClientShutdown()
def get_state(self):
"""Get the state of the MessageSender and its underlying Link.
:rtype: ~uamqp.constants.MessageSenderState
"""
try:
raise self._error
except TypeError:
pass
except Exception as e:
_logger.warning("%r", e)
raise
return self._state
def work(self):
"""Update the link status."""
self._link.do_work()
def destroy(self):
"""Close both the Sender and the Link. Clean up any C objects."""
self._sender.destroy()
self._link.destroy()
def open(self):
"""Open the MessageSender in order to start processing messages.
:raises: ~uamqp.errors.AMQPConnectionError if the Sender raises
an error on opening. This can happen if the target URI is invalid
or the credentials are rejected.
"""
try:
self._sender.open()
except ValueError:
raise errors.AMQPConnectionError(
"Failed to open Message Sender. "
"Please confirm credentials and target URI.")
def close(self):
"""Close the sender, leaving the link intact."""
self._sender.close()
def send(self, message, callback, timeout=0):
"""Add a single message to the internal pending queue to be processed
by the Connection without waiting for it to be sent.
:param message: The message to send.
:type message: ~uamqp.message.Message
:param callback: The callback to be run once a disposition is received
in receipt of the message. The callback must take three arguments, the message,
the send result and the optional delivery condition (exception).
:type callback:
callable[~uamqp.message.Message, ~uamqp.constants.MessageSendResult, ~uamqp.errors.MessageException]
:param timeout: An expiry time for the message added to the queue. If the
message is not sent within this timeout it will be discarded with an error
state. If set to 0, the message will not expire. The default is 0.
"""
# pylint: disable=protected-access
try:
raise self._error
except TypeError:
pass
except Exception as e:
_logger.warning("%r", e)
raise
c_message = message.get_message()
message._on_message_sent = callback
try:
self._session._connection.lock(timeout=-1)
return self._sender.send(c_message, timeout, message)
finally:
self._session._connection.release()
def on_state_changed(self, previous_state, new_state):
"""Callback called whenever the underlying Sender undergoes a change
of state. This function can be overridden.
:param previous_state: The previous Sender state.
:type previous_state: ~uamqp.constants.MessageSenderState
:param new_state: The new Sender state.
:type new_state: ~uamqp.constants.MessageSenderState
"""
# pylint: disable=protected-access
_logger.info("Message sender %r state changed from %r to %r on connection: %r",
self.name, previous_state, new_state, self._session._connection.container_id)
self._state = new_state
@property
def send_settle_mode(self):
return self._link.send_settle_mode
@send_settle_mode.setter
def send_settle_mode(self, value):
self._link.send_settle_mode = value.value
@property
def receive_settle_mode(self):
return self._link.receive_settle_mode
@receive_settle_mode.setter
def receive_settle_mode(self, value):
self._link.receive_settle_mode = value.value
@property
def max_message_size(self):
return self._link.max_message_size
@max_message_size.setter
def max_message_size(self, value):
self._link.max_message_size = int(value)
|