Add auditor for resource pool, pserver and cpu/memory/port/interface for pserver...
[pti/o2.git] / o2ims / service / auditor / resourcepool_handler.py
diff --git a/o2ims/service/auditor/resourcepool_handler.py b/o2ims/service/auditor/resourcepool_handler.py
new file mode 100644 (file)
index 0000000..88cf182
--- /dev/null
@@ -0,0 +1,101 @@
+# Copyright (C) 2021 Wind River Systems, Inc.
+#
+#  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.
+
+# pylint: disable=unused-argument
+from __future__ import annotations
+import json
+
+from o2ims.domain.stx_object import StxGenericModel
+# from dataclasses import asdict
+# from typing import List, Dict, Callable, Type
+# TYPE_CHECKING
+from o2ims.domain import commands
+from o2common.service.unit_of_work import AbstractUnitOfWork
+# from o2ims.domain.resource_type import InvalidOcloudState
+from o2ims.domain.resource_type import MismatchedModel
+from o2ims.domain.ocloud import ResourcePool
+# if TYPE_CHECKING:
+#     from . import unit_of_work
+
+from o2common.helper import o2logging
+logger = o2logging.get_logger(__name__)
+
+
+class InvalidResourceType(Exception):
+    pass
+
+
+def update_resourcepool(
+    cmd: commands.UpdateResourcePool,
+    uow: AbstractUnitOfWork
+):
+    stxobj = cmd.data
+    with uow:
+        resource_pool = uow.resource_pools.get(stxobj.id)
+        if not resource_pool:
+            logger.info("add resource pool:" + stxobj.name
+                        + " update_at: " + str(stxobj.updatetime)
+                        + " id: " + str(stxobj.id)
+                        + " hash: " + str(stxobj.hash))
+            localmodel = create_by(stxobj, cmd.parentid)
+            uow.resource_pools.add(localmodel)
+
+            logger.info("Add the resource pool: " + stxobj.id
+                        + ", name: " + stxobj.name)
+        else:
+            localmodel = resource_pool
+            if is_outdated(localmodel, stxobj):
+                logger.info("update resource pool:" + stxobj.name
+                            + " update_at: " + str(stxobj.updatetime)
+                            + " id: " + str(stxobj.id)
+                            + " hash: " + str(stxobj.hash))
+                update_by(localmodel, stxobj, cmd.parentid)
+                uow.resource_pools.update(localmodel)
+
+            logger.info("Update the resource pool: " + stxobj.id
+                        + ", name: " + stxobj.name)
+        uow.commit()
+
+
+def is_outdated(resourcepool: ResourcePool, stxobj: StxGenericModel):
+    return True if resourcepool.hash != stxobj.hash else False
+
+
+def create_by(stxobj: StxGenericModel, parentid: str) -> ResourcePool:
+    content = json.loads(stxobj.content)
+    globalcloudId = stxobj.id  # to be updated
+    description = "A Resource Pool"
+    resourcepool = ResourcePool(stxobj.id, stxobj.name,
+                                content['location'],
+                                parentid, globalcloudId, description)
+    resourcepool.createtime = stxobj.createtime
+    resourcepool.updatetime = stxobj.updatetime
+    resourcepool.hash = stxobj.hash
+
+    return resourcepool
+
+
+def update_by(target: ResourcePool, stxobj: StxGenericModel,
+              parentid: str) -> None:
+    if target.resourcePoolId != stxobj.id:
+        raise MismatchedModel("Mismatched Id")
+    content = json.loads(stxobj.content)
+    target.name = stxobj.name
+    target.location = content['location']
+    target.createtime = stxobj.createtime
+    target.updatetime = stxobj.updatetime
+    target.hash = stxobj.hash
+    target.oCloudId = parentid
+    target.version_number = target.version_number + 1
+    target.events = []