901f3e0ca0
This patch introduces three new queue stats in order to expose a better user experience via control panels. Also included in the changes is a bug fix for calculating timestamp differences, as well as a renaming of 'queue' to 'queue_name' for consistency within the MongoDB driver. Note that there are several remaining stats identified in the associated blueprint. This may be addressed in a future patch. Implements: blueprint extra-queue-stats Change-Id: I31e48a581ccdd014ec97674af0c0dd43c808c42c
110 lines
3.2 KiB
Python
110 lines
3.2 KiB
Python
# Copyright (c) 2013 Red Hat, 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.
|
|
|
|
|
|
class ConnectionError(Exception):
|
|
"""Raised when the connection with the back-end
|
|
was lost.
|
|
"""
|
|
|
|
|
|
class DoesNotExist(Exception):
|
|
pass
|
|
|
|
|
|
class NotPermitted(Exception):
|
|
pass
|
|
|
|
|
|
class Conflict(Exception):
|
|
"""Resource could not be created due to a conflict
|
|
with an existing resource.
|
|
"""
|
|
|
|
|
|
class MalformedID(ValueError):
|
|
"""ID was malformed."""
|
|
|
|
|
|
class MalformedMarker(ValueError):
|
|
"""Pagination marker was malformed."""
|
|
|
|
|
|
class MessageConflict(Conflict):
|
|
|
|
def __init__(self, queue, project, message_ids):
|
|
"""Initializes the error with contextual information.
|
|
|
|
:param queue: name of the queue to which the message was posted
|
|
:param project: name of the project to which the queue belongs
|
|
:param message_ids: list of IDs for messages successfully
|
|
posted. Note that these must be in the same order as the
|
|
list of messages originally submitted to be enqueued.
|
|
"""
|
|
msg = ('Message could not be enqueued due to a conflict '
|
|
'with another message that is already in '
|
|
'queue %(queue)s for project %(project)s' %
|
|
dict(queue=queue, project=project))
|
|
|
|
super(MessageConflict, self).__init__(msg)
|
|
|
|
self._succeeded_ids = message_ids
|
|
|
|
@property
|
|
def succeeded_ids(self):
|
|
return self._succeeded_ids
|
|
|
|
|
|
class QueueDoesNotExist(DoesNotExist):
|
|
|
|
def __init__(self, name, project):
|
|
msg = ('Queue %(name)s does not exist for project %(project)s' %
|
|
dict(name=name, project=project))
|
|
super(QueueDoesNotExist, self).__init__(msg)
|
|
|
|
|
|
class QueueIsEmpty(Exception):
|
|
|
|
def __init__(self, name, project):
|
|
msg = ('Queue %(name)s in project %(project)s is empty' %
|
|
dict(name=name, project=project))
|
|
super(QueueIsEmpty, self).__init__(msg)
|
|
|
|
|
|
class MessageDoesNotExist(DoesNotExist):
|
|
|
|
def __init__(self, mid, queue, project):
|
|
msg = ('Message %(mid)s does not exist in '
|
|
'queue %(queue)s for project %(project)s' %
|
|
dict(mid=mid, queue=queue, project=project))
|
|
super(MessageDoesNotExist, self).__init__(msg)
|
|
|
|
|
|
class ClaimDoesNotExist(DoesNotExist):
|
|
|
|
def __init__(self, cid, queue, project):
|
|
msg = ('Claim %(cid)s does not exist in '
|
|
'queue %(queue)s for project %(project)s' %
|
|
dict(cid=cid, queue=queue, project=project))
|
|
super(ClaimDoesNotExist, self).__init__(msg)
|
|
|
|
|
|
class ClaimNotPermitted(NotPermitted):
|
|
|
|
def __init__(self, mid, cid):
|
|
msg = ('Message %(mid)s is not claimed by %(cid)s' %
|
|
dict(cid=cid, mid=mid))
|
|
super(ClaimNotPermitted, self).__init__(msg)
|