
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>
130 lines
4.6 KiB
Python
130 lines
4.6 KiB
Python
# Copyright (c) 2015 Ericsson AB.
|
|
# Copyright (c) 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.
|
|
#
|
|
# Copyright (c) 2020 Wind River Systems, Inc.
|
|
#
|
|
|
|
"""Subcloud object."""
|
|
from oslo_log import log as logging
|
|
from oslo_versionedobjects import base as ovo_base
|
|
from oslo_versionedobjects import fields as ovo_fields
|
|
|
|
from dcorch.common import exceptions
|
|
from dcorch.db import api as db_api
|
|
from dcorch.objects import base
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
@base.OrchestratorObjectRegistry.register
|
|
class Subcloud(base.OrchestratorObject, base.VersionedObjectDictCompat):
|
|
"""DC Orchestrator subcloud object."""
|
|
|
|
fields = {
|
|
"id": ovo_fields.IntegerField(),
|
|
"uuid": ovo_fields.UUIDField(),
|
|
"region_name": ovo_fields.StringField(),
|
|
"software_version": ovo_fields.StringField(),
|
|
"management_state": ovo_fields.StringField(nullable=True),
|
|
"availability_status": ovo_fields.StringField(),
|
|
"capabilities": ovo_fields.DictOfListOfStringsField(),
|
|
"initial_sync_state": ovo_fields.StringField(),
|
|
"management_ip": ovo_fields.StringField(),
|
|
}
|
|
|
|
def create(self):
|
|
if self.obj_attr_is_set("id"):
|
|
raise exceptions.ObjectActionError(
|
|
action="create", reason="already created"
|
|
)
|
|
updates = self.obj_get_changes()
|
|
try:
|
|
region_name = updates.pop("region_name")
|
|
except KeyError:
|
|
raise exceptions.ObjectActionError(
|
|
action="create",
|
|
reason="cannot create a Subcloud object without a region_name set",
|
|
)
|
|
try:
|
|
db_subcloud = db_api.subcloud_create(self._context, region_name, updates)
|
|
return self._from_db_object(self._context, self, db_subcloud)
|
|
except Exception as e:
|
|
LOG.error(
|
|
"Failed to create subcloud %s: %s"
|
|
% (self.region_name, str(e)) # pylint: disable=no-member
|
|
)
|
|
raise e
|
|
|
|
@classmethod
|
|
def get_by_name(cls, context, subcloud_name):
|
|
db_subcloud = db_api.subcloud_get(context, subcloud_name)
|
|
return cls._from_db_object(context, cls(), db_subcloud)
|
|
|
|
@classmethod
|
|
def delete_subcloud_by_name(cls, context, subcloud_name):
|
|
try:
|
|
db_api.subcloud_delete(context, subcloud_name)
|
|
except Exception as e:
|
|
LOG.error("Failed to delete subcloud entry for %s: %s" % (subcloud_name, e))
|
|
|
|
def save(self):
|
|
updates = self.obj_get_changes()
|
|
updates.pop("id", None)
|
|
updates.pop("uuid", None)
|
|
db_subcloud = db_api.subcloud_update(
|
|
self._context, self.region_name, updates # pylint: disable=no-member
|
|
)
|
|
self._from_db_object(self._context, self, db_subcloud)
|
|
self.obj_reset_changes()
|
|
|
|
def delete(self):
|
|
# TODO(cfriesen): fix up to use delete cascade
|
|
# delete the associated sync requests
|
|
try:
|
|
db_api.orch_request_delete_by_subcloud(
|
|
self._context, self.region_name # pylint: disable=no-member
|
|
)
|
|
except Exception as e:
|
|
LOG.error(
|
|
"Failed to delete orchestration request for %s: %s"
|
|
% (self.region_name, str(e)) # pylint: disable=no-member
|
|
)
|
|
try:
|
|
db_api.subcloud_delete(
|
|
self._context, self.region_name # pylint: disable=no-member
|
|
)
|
|
except Exception as e:
|
|
LOG.error(
|
|
"Failed to delete subcloud entry for %s: %s"
|
|
% (self.region_name, str(e)) # pylint: disable=no-member
|
|
)
|
|
|
|
|
|
@base.OrchestratorObjectRegistry.register
|
|
class SubcloudList(ovo_base.ObjectListBase, base.OrchestratorObject):
|
|
"""DC Orchestrator subcloud list object."""
|
|
|
|
VERSION = "1.1"
|
|
|
|
fields = {
|
|
"objects": ovo_fields.ListOfObjectsField("Subcloud"),
|
|
}
|
|
|
|
@classmethod
|
|
def get_all(cls, context):
|
|
subclouds = db_api.subcloud_get_all(context)
|
|
return ovo_base.obj_make_list(context, cls(context), Subcloud, subclouds)
|