/usr/lib/python2.7/dist-packages/congress/exception.py is in python-congress 7.0.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# 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.
"""Congress base exception handling."""
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import
import sys
from oslo_config import cfg
from oslo_log import log as logging
import six
from congress.api import error_codes
from congress import utils
LOG = logging.getLogger(__name__)
exc_log_opts = [
cfg.BoolOpt('fatal_exception_format_errors',
default=False,
help='Make exception message format errors fatal'),
]
CONF = cfg.CONF
CONF.register_opts(exc_log_opts)
class CongressException(Exception):
"""Base Congress Exception
To correctly use this class, inherit from it and define
a 'msg_fmt' property. That msg_fmt will get printf'd
with the keyword arguments provided to the constructor.
"""
msg_fmt = _("An unknown exception occurred.")
# FIXME(thinrichs): this exception is overly complex and should
# not include HTTP codes at all. Proper fix needs to touch
# too many files that others are currently working on.
code = 500
headers = {}
safe = False
def __init__(self, message=None, **kwargs):
"""FIXME(thinrichs):
We just want name and data as fields.
:param: name will be a name from error_codes, which includes the basic
message.
:param: data will contain specifics for this instance of the
exception, e.g. a description error message.
"""
self.data = kwargs.get('data', None)
self.name = kwargs.get('name', None)
# TODO(thinrichs): remove the rest of this (except the call to super)
self.kwargs = kwargs
if 'code' not in self.kwargs:
try:
self.kwargs['code'] = self.code
except AttributeError:
pass
if not message:
if self.name is not None:
error_code = error_codes.get_num(self.name)
description = error_codes.get_desc(self.name)
message = "(%s) %s" % (error_code, description)
else:
try:
message = self.msg_fmt % kwargs
except Exception:
exc_info = sys.exc_info()
# kwargs doesn't match a variable in the message
# log the issue and the kwargs
LOG.exception(_('Exception in string format operation'))
for name, value in kwargs.items():
LOG.error("%s: %s", name, value) # noqa
if CONF.fatal_exception_format_errors:
six.reraise(exc_info[0], exc_info[1], exc_info[2])
else:
# at least get the core message out
message = self.msg_fmt
super(CongressException, self).__init__(message)
def format_message(self):
# NOTE(mrodden): use the first argument to the python Exception object
# which should be our full CongressException message, (see __init__)
return self.args[0]
# FIXME(thinrichs): Get rid of the ones below and instead create exception
# classes to represent the parts of the code that generated the exception,
# e.g. datasources versus policy compiler versus policy runtime.
class Forbidden(CongressException):
msg_fmt = _("Not authorized.")
code = 403
class Conflict(CongressException):
msg_fmt = _("Conflict")
code = 409
class BadRequest(CongressException):
msg_fmt = _("Bad request")
code = 400
class NotFound(CongressException):
msg_fmt = _("Resource not found.")
code = 404
class PolicyNotAuthorized(Forbidden):
msg_fmt = _("Policy doesn't allow %(action)s to be performed.")
class InvalidParamException(Exception):
pass
class DataSourceConfigException(Exception):
pass
class DuplicateTableName(Exception):
pass
class InvalidTranslationType(Exception):
pass
class DanglingReference(Conflict):
pass
class LazyTable(BadRequest):
msg_fmt = _("table %(lazy_table)s is a lazy table and is not subscribed.")
class InvalidPolicyInput(BadRequest):
msg_fmt = _('Input policy item violates schema.')
# NOTE(thinrichs): The following represent different kinds of
# exceptions: the policy compiler and the policy runtime, respectively.
class PolicyException(CongressException):
def __init__(self, msg=None, obj=None, line=None, col=None,
name=None, data=None, **kwargs):
CongressException.__init__(self, message=msg, name=name, data=data)
self.obj = obj
self.location = utils.Location(line=line, col=col, obj=obj)
def __str__(self):
s = str(self.location)
if len(s) > 0:
s = " at" + s
return CongressException.__str__(self) + s
class PolicyRuntimeException(CongressException):
pass
class DatabaseError(CongressException):
msg_fmt = _("Database backend experienced an unknown error.")
class DatabaseDataError(BadRequest):
msg_fmt = _("Database backend experienced a data error. "
"E.g. value out of range, text string too long.")
class IncompleteSchemaException(CongressException):
pass
class DataServiceError(Exception):
pass
class BadConfig(BadRequest):
pass
class DatasourceDriverException(CongressException):
pass
class MissingRequiredConfigOptions(BadConfig):
msg_fmt = _("Missing required config options: %(missing_options)s")
class InvalidDriver(BadConfig):
msg_fmt = _("Invalid driver: %(driver)s")
class InvalidDriverOption(BadConfig):
msg_fmt = _("Invalid driver options: %(invalid_options)s")
class DatasourceNameInUse(Conflict):
msg_fmt = _("Datasource already in use with name %(value)s")
class InvalidDatasourceName(BadConfig):
msg_fmt = _("Datasource name %(value) is invalid. Cannot be empty or "
"start with underscore. Must be valid in policy language")
class DatasourceNotFound(NotFound):
msg_fmt = _("Datasource not found %(id)s")
class DriverNotFound(NotFound):
msg_fmt = _("Driver not found %(id)s")
class DatasourceCreationError(BadConfig):
msg_fmt = _("Datasource could not be created on the DSE: %(value)s")
|