
This commit applies the Black format to the `dcmanager` files to ensure that it adheres to the Black code style guidelines. Test Plan: PASS: Success in stx-distcloud-tox-black Story: 2011149 Task: 50444 Change-Id: I4a8af46e24d4b5da2757f0a4e20a50a69523c44a Signed-off-by: Hugo Brito <hugo.brito@windriver.com>
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
# Copyright (c) 2015 Ericsson AB.
|
|
# Copyright (c) 2017, 2019, 2021, 2024 Wind River Systems, Inc.
|
|
# 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.
|
|
#
|
|
|
|
"""DC Manager common internal object model"""
|
|
|
|
from oslo_utils import versionutils
|
|
from oslo_versionedobjects import base
|
|
|
|
from dcmanager import objects
|
|
|
|
VersionedObjectDictCompat = base.VersionedObjectDictCompat
|
|
|
|
|
|
class DCManagerObject(base.VersionedObject):
|
|
"""Base class for dcmanager objects.
|
|
|
|
This is the base class for all objects that can be remoted or instantiated
|
|
via RPC. Simply defining a sub-class of this class would make it remotely
|
|
instantiatable. Objects should implement the "get" class method and the
|
|
"save" object method.
|
|
"""
|
|
|
|
OBJ_PROJECT_NAMESPACE = "dcmanager"
|
|
VERSION = "1.0"
|
|
|
|
@staticmethod
|
|
def _from_db_object(context, obj, db_obj):
|
|
if db_obj is None:
|
|
return None
|
|
for field in obj.fields:
|
|
if field == "metadata":
|
|
obj["metadata"] = db_obj["meta_data"]
|
|
else:
|
|
obj[field] = db_obj[field]
|
|
|
|
obj._context = context
|
|
obj.obj_reset_changes()
|
|
|
|
return obj
|
|
|
|
|
|
class DCManagerObjectRegistry(base.VersionedObjectRegistry):
|
|
def registration_hook(self, cls, index):
|
|
"""Callback for object registration.
|
|
|
|
When an object is registered, this function will be called for
|
|
maintaining dcmanager.objects.$OBJECT as the highest-versioned
|
|
implementation of a given object.
|
|
"""
|
|
version = versionutils.convert_version_to_tuple(cls.VERSION)
|
|
if not hasattr(objects, cls.obj_name()):
|
|
setattr(objects, cls.obj_name(), cls)
|
|
else:
|
|
curr_version = versionutils.convert_version_to_tuple(
|
|
getattr(objects, cls.obj_name()).VERSION
|
|
)
|
|
if version >= curr_version:
|
|
setattr(objects, cls.obj_name(), cls)
|