X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fauditor%2Fpserver_port_handler.py;h=1faa08aaa86cc845edaa21ff1ac6ee756d2827ec;hb=9cda6dd9bfcf3de766d7be0c42a7ec671f5ac308;hp=f911c2d035e84c434a78d2c460afe366d093e2c4;hpb=c34ab47848138150a1456be2fa9f82d7260e37b8;p=pti%2Fo2.git diff --git a/o2ims/service/auditor/pserver_port_handler.py b/o2ims/service/auditor/pserver_port_handler.py index f911c2d..1faa08a 100644 --- a/o2ims/service/auditor/pserver_port_handler.py +++ b/o2ims/service/auditor/pserver_port_handler.py @@ -39,11 +39,11 @@ def update_pserver_port( stxobj = cmd.data with uow: p_resource = uow.resources.get(cmd.parentid) - resourcepool = uow.resource_pools.get(p_resource.resourcePoolId) + # resourcepool = uow.resource_pools.get(p_resource.resourcePoolId) res = uow.session.execute( ''' - SELECT "resourceTypeId", "oCloudId", "name" + SELECT "resourceTypeId", "name" FROM "resourceType" WHERE "resourceTypeEnum" = :resource_type_enum ''', @@ -51,19 +51,24 @@ def update_pserver_port( ) first = res.first() if first is None: - resourcetype_id = str(uuid.uuid4()) - uow.resource_types.add(ResourceType( - resourcetype_id, - 'pserver_if_port', stxobj.type, - resourcepool.oCloudId)) res_type_name = 'pserver_if_port' resourcetype_id = str(uuid.uuid3( uuid.NAMESPACE_URL, res_type_name)) - uow.resource_types.add(ResourceType( + res_type = ResourceType( resourcetype_id, res_type_name, stxobj.type, - resourcepool.oCloudId, - description='A Port resource type of Physical Server')) + description='A Port resource type of Physical Server') + dict_id = str(uuid.uuid3( + uuid.NAMESPACE_URL, + str(f"{res_type_name}_alarmdictionary"))) + alarm_dictionary = uow.alarm_dictionaries.get(dict_id) + if alarm_dictionary: + res_type.alarmDictionary = alarm_dictionary + res_type.events.append(events.ResourceTypeChanged( + id=res_type.resourceTypeId, + notificationEventType=NotificationEventEnum.CREATE, + updatetime=stxobj.updatetime)) + uow.resource_types.add(res_type) else: resourcetype_id = first['resourceTypeId'] @@ -107,8 +112,7 @@ def create_by(stxobj: StxGenericModel, parent: Resource, resourcetype_id: str)\ description = "%s : A port resource of the interface"\ % stxobj.name resource = Resource(stxobj.id, resourcetype_id, resourcepool_id, - stxobj.name, parent_id, gAssetId, stxobj.content, - description) + parent_id, gAssetId, stxobj.content, description) resource.createtime = stxobj.createtime resource.updatetime = stxobj.updatetime resource.hash = stxobj.hash