![Steve Leon](/assets/img/avatar_default.png)
Quota check for create/delete/resize volume Quota is implemented as a decorator, which can be easy enabled and disabled if wanted. The quota feature uses a reservation system that reserves resources prior to usage. BP https://blueprints.launchpad.net/reddwarf/+spec/quotas Change-Id: I5df82c8f1d7b40311b5d5d7301992607f98e9b2a
216 lines
5.3 KiB
Python
216 lines
5.3 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2011 OpenStack LLC.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
"""I totally stole most of this from melange, thx guys!!!"""
|
|
|
|
from reddwarf.openstack.common import log as logging
|
|
from reddwarf.openstack.common import exception as openstack_exception
|
|
from reddwarf.openstack.common import processutils
|
|
from reddwarf.openstack.common.gettextutils import _
|
|
from webob import exc
|
|
|
|
|
|
ClientConnectionError = openstack_exception.ClientConnectionError
|
|
ProcessExecutionError = processutils.ProcessExecutionError
|
|
DatabaseMigrationError = openstack_exception.DatabaseMigrationError
|
|
LOG = logging.getLogger(__name__)
|
|
wrap_exception = openstack_exception.wrap_exception
|
|
|
|
|
|
class ReddwarfError(openstack_exception.OpenstackException):
|
|
"""Base exception that all custom reddwarf app exceptions inherit from."""
|
|
internal_message = None
|
|
|
|
def __init__(self, message=None, **kwargs):
|
|
if message is not None:
|
|
self.message = message
|
|
if self.internal_message is not None:
|
|
try:
|
|
LOG.error(self.internal_message % kwargs)
|
|
except Exception:
|
|
LOG.error(self.internal_message)
|
|
super(ReddwarfError, self).__init__(**kwargs)
|
|
|
|
|
|
class DBConstraintError(ReddwarfError):
|
|
|
|
message = _("Failed to save %(model_name)s because: %(error)s")
|
|
|
|
|
|
class InvalidRPCConnectionReuse(ReddwarfError):
|
|
|
|
message = _("Invalid RPC Connection Reuse")
|
|
|
|
|
|
class NotFound(ReddwarfError):
|
|
|
|
message = _("Resource %(uuid)s cannot be found")
|
|
|
|
|
|
class FlavorNotFound(ReddwarfError):
|
|
|
|
message = _("Resource %(uuid)s cannot be found")
|
|
|
|
|
|
class UserNotFound(NotFound):
|
|
|
|
message = _("User %(uuid)s cannot be found on the instance.")
|
|
|
|
|
|
class DatabaseNotFound(NotFound):
|
|
|
|
message = _("Database %(uuid)s cannot be found on the instance.")
|
|
|
|
|
|
class ComputeInstanceNotFound(NotFound):
|
|
|
|
internal_message = _("Cannot find compute instance %(server_id)s for "
|
|
"instance %(instance_id)s.")
|
|
|
|
message = _("Resource %(instance_id)s can not be retrieved.")
|
|
|
|
|
|
class DnsRecordNotFound(NotFound):
|
|
|
|
message = _("DnsRecord with name= %(name)s not found.")
|
|
|
|
|
|
class OverLimit(ReddwarfError):
|
|
|
|
internal_message = _("The server rejected the request due to its size or "
|
|
"rate.")
|
|
|
|
|
|
class QuotaExceeded(ReddwarfError):
|
|
|
|
message = _("Quota exceeded for resources: %(overs)s")
|
|
|
|
|
|
class VolumeQuotaExceeded(QuotaExceeded):
|
|
|
|
message = _("Instance volume quota exceeded.")
|
|
|
|
|
|
class GuestError(ReddwarfError):
|
|
|
|
message = _("An error occurred communicating with the guest: "
|
|
"%(original_message)s.")
|
|
|
|
|
|
class GuestTimeout(ReddwarfError):
|
|
|
|
message = _("Timeout trying to connect to the Guest Agent.")
|
|
|
|
|
|
class BadRequest(ReddwarfError):
|
|
|
|
message = _("The server could not comply with the request since it is "
|
|
"either malformed or otherwise incorrect.")
|
|
|
|
|
|
class MissingKey(BadRequest):
|
|
|
|
message = _("Required element/key - %(key)s was not specified")
|
|
|
|
|
|
class DatabaseAlreadyExists(BadRequest):
|
|
|
|
message = _('A database with the name "%(name)s" already exists.')
|
|
|
|
|
|
class UserAlreadyExists(BadRequest):
|
|
|
|
message = _('A user with the name "%(name)s" already exists.')
|
|
|
|
|
|
class UnprocessableEntity(ReddwarfError):
|
|
|
|
message = _("Unable to process the contained request")
|
|
|
|
|
|
class CannotResizeToSameSize(ReddwarfError):
|
|
|
|
message = _("When resizing, instances must change size!")
|
|
|
|
|
|
class VolumeAttachmentsNotFound(NotFound):
|
|
|
|
message = _("Cannot find the volumes attached to compute "
|
|
"instance %(server_id)")
|
|
|
|
|
|
class VolumeCreationFailure(ReddwarfError):
|
|
|
|
message = _("Failed to create a volume in Nova.")
|
|
|
|
|
|
class TaskManagerError(ReddwarfError):
|
|
|
|
message = _("An error occurred communicating with the task manager: "
|
|
"%(original_message)s.")
|
|
|
|
|
|
class BadValue(ReddwarfError):
|
|
|
|
message = _("Value could not be converted: %(msg)s")
|
|
|
|
|
|
class PollTimeOut(ReddwarfError):
|
|
|
|
message = _("Polling request timed out.")
|
|
|
|
|
|
class Forbidden(ReddwarfError):
|
|
|
|
message = _("User does not have admin privileges.")
|
|
|
|
|
|
class InvalidModelError(ReddwarfError):
|
|
|
|
message = _("The following values are invalid: %(errors)s")
|
|
|
|
|
|
class ModelNotFoundError(NotFound):
|
|
|
|
message = _("Not Found")
|
|
|
|
|
|
class UpdateGuestError(ReddwarfError):
|
|
|
|
message = _("Failed to update instances")
|
|
|
|
|
|
class ConfigNotFound(NotFound):
|
|
|
|
message = _("Config file not found")
|
|
|
|
|
|
class PasteAppNotFound(NotFound):
|
|
|
|
message = _("Paste app not found.")
|
|
|
|
|
|
class QuotaNotFound(NotFound):
|
|
message = _("Quota could not be found")
|
|
|
|
|
|
class TenantQuotaNotFound(QuotaNotFound):
|
|
message = _("Quota for tenant %(tenant_id)s could not be found.")
|
|
|
|
|
|
class QuotaResourceUnknown(QuotaNotFound):
|
|
message = _("Unknown quota resources %(unknown)s.")
|