In this changeset, I added the "goal" ObjectField which can either be loaded by setting the new "eager" parameter as True or not loaded (as before) by setting it to False. The advantage of introducing this eager parameter is that this way, we can reduce to a minimum the overhead of DB queries whenever the related goal is not actually needed. Partially-Implements: blueprint watcher-versioned-objects Change-Id: I103c9ed161d2cedf7b43c55f9e095ef66bf44dea
91 lines
2.6 KiB
Python
91 lines
2.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
|
|
import six
|
|
|
|
from oslo_log import log
|
|
from oslo_versionedobjects import fields
|
|
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
BooleanField = fields.BooleanField
|
|
DateTimeField = fields.DateTimeField
|
|
IntegerField = fields.IntegerField
|
|
ListOfStringsField = fields.ListOfStringsField
|
|
ObjectField = fields.ObjectField
|
|
StringField = fields.StringField
|
|
UUIDField = fields.UUIDField
|
|
|
|
|
|
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 FlexibleDict(fields.FieldType):
|
|
@staticmethod
|
|
def coerce(obj, attr, value):
|
|
if isinstance(value, six.string_types):
|
|
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(FlexibleDictField, self)._null(obj, attr)
|
|
|
|
|
|
class FlexibleListOfDict(fields.FieldType):
|
|
@staticmethod
|
|
def coerce(obj, attr, value):
|
|
if isinstance(value, six.string_types):
|
|
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(FlexibleListOfDictField, self)._null(obj, attr)
|