X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fauditor%2Fpserver_handler.py;h=48692c86d08d28747dc2a227f7cf1711d8607bcb;hb=refs%2Fchanges%2F06%2F9806%2F1;hp=f5f526ad8784832ce6b500b68989db58d06ff096;hpb=f73c8e3b01b8f5b7438ba544870e06d8f30cdea0;p=pti%2Fo2.git diff --git a/o2ims/service/auditor/pserver_handler.py b/o2ims/service/auditor/pserver_handler.py index f5f526a..48692c8 100644 --- a/o2ims/service/auditor/pserver_handler.py +++ b/o2ims/service/auditor/pserver_handler.py @@ -15,10 +15,12 @@ # pylint: disable=unused-argument from __future__ import annotations import uuid -# import json +import json +from typing import Callable -from o2ims.domain import commands +from o2ims.domain import commands, events from o2ims.domain.stx_object import StxGenericModel +from o2ims.domain.subscription_obj import NotificationEventEnum from o2common.service.unit_of_work import AbstractUnitOfWork from o2ims.domain.resource_type import MismatchedModel from o2ims.domain.ocloud import Resource, ResourceType @@ -33,7 +35,8 @@ class InvalidResourceType(Exception): def update_pserver( cmd: commands.UpdatePserver, - uow: AbstractUnitOfWork + uow: AbstractUnitOfWork, + publish: Callable ): stxobj = cmd.data with uow: @@ -44,18 +47,21 @@ def update_pserver( res = uow.session.execute( ''' SELECT "resourceTypeId", "oCloudId", "name" - FROM resourcetype + FROM "resourceType" WHERE "resourceTypeEnum" = :resource_type_enum ''', dict(resource_type_enum=stxobj.type.name) ) first = res.first() if first is None: - resourcetype_id = str(uuid.uuid4()) + res_type_name = 'pserver' + resourcetype_id = str(uuid.uuid3( + uuid.NAMESPACE_URL, res_type_name)) uow.resource_types.add(ResourceType( resourcetype_id, - 'pserver', stxobj.type, - resourcepool.oCloudId)) + res_type_name, stxobj.type, + resourcepool.oCloudId, + description='The Physical Server resource type')) else: resourcetype_id = first['resourceTypeId'] @@ -94,11 +100,24 @@ def create_by(stxobj: StxGenericModel, parentid: str, resourcetype_id: str) \ # content = json.loads(stxobj.content) resourcetype_id = resourcetype_id resourcepool_id = parentid - parent_id = parentid + parent_id = None # the root of the resource has no parent id gAssetId = '' # TODO: global ID - description = "A physical server resource" + # description = "%s : A physical server resource" % stxobj.name + content = json.loads(stxobj.content) + selected_keys = [ + "hostname", "personality", "id", "mgmt_ip", "mgmt_mac", + "software_load", "capabilities", + "operational", "availability", "administrative", + "boot_device", "rootfs_device", "install_state", "subfunctions", + "clock_synchronization", "max_cpu_mhz_allowed" + ] + filtered = dict( + filter(lambda item: item[0] in selected_keys, content.items())) + extensions = json.dumps(filtered) + description = ";".join([f"{k}:{v}" for k, v in filtered.items()]) resource = Resource(stxobj.id, resourcetype_id, resourcepool_id, - parent_id, gAssetId, stxobj.content, description) + stxobj.name, parent_id, gAssetId, stxobj.content, + description, extensions) resource.createtime = stxobj.createtime resource.updatetime = stxobj.updatetime resource.hash = stxobj.hash @@ -114,4 +133,9 @@ def update_by(target: Resource, stxobj: StxGenericModel, target.updatetime = stxobj.updatetime target.hash = stxobj.hash target.version_number = target.version_number + 1 - target.events = [] + target.events.append(events.ResourceChanged( + id=stxobj.id, + resourcePoolId=target.resourcePoolId, + notificationEventType=NotificationEventEnum.MODIFY, + updatetime=stxobj.updatetime + ))