This change was generated with the following command pyupgrade --keep-percent-format --keep-runtime-typing --py3-only $(git ls-files | grep .py) then formated with pre-commit and autopep8 Change-Id: Iefb974d448ab91a01b07656cc5f6590307020f3a Signed-off-by: Sean Mooney <work@seanmooney.info>
178 lines
4.6 KiB
Python
178 lines
4.6 KiB
Python
# Copyright 2013 IBM Corp.
|
|
#
|
|
# 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.
|
|
|
|
"""Utility methods for objects"""
|
|
|
|
import ast
|
|
|
|
from oslo_serialization import jsonutils
|
|
from oslo_versionedobjects import fields
|
|
|
|
|
|
BaseEnumField = fields.BaseEnumField
|
|
BooleanField = fields.BooleanField
|
|
DateTimeField = fields.DateTimeField
|
|
Enum = fields.Enum
|
|
FloatField = fields.FloatField
|
|
IntegerField = fields.IntegerField
|
|
ListOfStringsField = fields.ListOfStringsField
|
|
NonNegativeFloatField = fields.NonNegativeFloatField
|
|
NonNegativeIntegerField = fields.NonNegativeIntegerField
|
|
ObjectField = fields.ObjectField
|
|
StringField = fields.StringField
|
|
UnspecifiedDefault = fields.UnspecifiedDefault
|
|
|
|
|
|
class UUIDField(fields.UUIDField):
|
|
def coerce(self, obj, attr, value):
|
|
if value is None or value == "":
|
|
return self._null(obj, attr)
|
|
else:
|
|
return self._type.coerce(obj, attr, value)
|
|
|
|
|
|
class Numeric(fields.FieldType):
|
|
@staticmethod
|
|
def coerce(obj, attr, value):
|
|
if value is None:
|
|
return value
|
|
f_value = float(value)
|
|
return f_value if not f_value.is_integer() else value
|
|
|
|
|
|
class NumericField(fields.AutoTypedField):
|
|
AUTO_TYPE = Numeric()
|
|
|
|
|
|
class DictField(fields.AutoTypedField):
|
|
AUTO_TYPE = fields.Dict(fields.FieldType())
|
|
|
|
|
|
class ListOfUUIDsField(fields.AutoTypedField):
|
|
AUTO_TYPE = fields.List(fields.UUID())
|
|
|
|
|
|
class FlexibleDict(fields.FieldType):
|
|
@staticmethod
|
|
def coerce(obj, attr, value):
|
|
if isinstance(value, str):
|
|
value = ast.literal_eval(value)
|
|
return dict(value)
|
|
|
|
|
|
class FlexibleDictField(fields.AutoTypedField):
|
|
AUTO_TYPE = FlexibleDict()
|
|
|
|
# TODO(lucasagomes): In our code we've always translated None to {},
|
|
# this method makes this field to work like this. But probably won't
|
|
# be accepted as-is in the oslo_versionedobjects library
|
|
def _null(self, obj, attr):
|
|
if self.nullable:
|
|
return {}
|
|
super()._null(obj, attr)
|
|
|
|
|
|
class FlexibleListOfDict(fields.FieldType):
|
|
@staticmethod
|
|
def coerce(obj, attr, value):
|
|
if isinstance(value, str):
|
|
value = ast.literal_eval(value)
|
|
return list(value)
|
|
|
|
|
|
class FlexibleListOfDictField(fields.AutoTypedField):
|
|
AUTO_TYPE = FlexibleListOfDict()
|
|
|
|
# TODO(lucasagomes): In our code we've always translated None to {},
|
|
# this method makes this field to work like this. But probably won't
|
|
# be accepted as-is in the oslo_versionedobjects library
|
|
def _null(self, obj, attr):
|
|
if self.nullable:
|
|
return []
|
|
super()._null(obj, attr)
|
|
|
|
|
|
class Json(fields.FieldType):
|
|
def coerce(self, obj, attr, value):
|
|
if isinstance(value, str):
|
|
loaded = jsonutils.loads(value)
|
|
return loaded
|
|
return value
|
|
|
|
def from_primitive(self, obj, attr, value):
|
|
return self.coerce(obj, attr, value)
|
|
|
|
def to_primitive(self, obj, attr, value):
|
|
return jsonutils.dumps(value)
|
|
|
|
|
|
class JsonField(fields.AutoTypedField):
|
|
AUTO_TYPE = Json()
|
|
|
|
# ### Notification fields ### #
|
|
|
|
|
|
class BaseWatcherEnum(Enum):
|
|
|
|
ALL = ()
|
|
|
|
def __init__(self, **kwargs):
|
|
super().__init__(valid_values=self.__class__.ALL)
|
|
|
|
|
|
class NotificationPriority(BaseWatcherEnum):
|
|
DEBUG = 'debug'
|
|
INFO = 'info'
|
|
WARNING = 'warning'
|
|
ERROR = 'error'
|
|
CRITICAL = 'critical'
|
|
|
|
ALL = (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
|
|
|
|
|
class NotificationPhase(BaseWatcherEnum):
|
|
START = 'start'
|
|
END = 'end'
|
|
ERROR = 'error'
|
|
|
|
ALL = (START, END, ERROR)
|
|
|
|
|
|
class NotificationAction(BaseWatcherEnum):
|
|
CREATE = 'create'
|
|
UPDATE = 'update'
|
|
EXCEPTION = 'exception'
|
|
DELETE = 'delete'
|
|
|
|
STRATEGY = 'strategy'
|
|
PLANNER = 'planner'
|
|
EXECUTION = 'execution'
|
|
|
|
CANCEL = 'cancel'
|
|
|
|
ALL = (CREATE, UPDATE, EXCEPTION, DELETE, STRATEGY, PLANNER, EXECUTION,
|
|
CANCEL)
|
|
|
|
|
|
class NotificationPriorityField(BaseEnumField):
|
|
AUTO_TYPE = NotificationPriority()
|
|
|
|
|
|
class NotificationPhaseField(BaseEnumField):
|
|
AUTO_TYPE = NotificationPhase()
|
|
|
|
|
|
class NotificationActionField(BaseEnumField):
|
|
AUTO_TYPE = NotificationAction()
|