X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fauditor%2Fpserver_handler.py;h=f8ad40cf73eb997bcc8abf0853f74c736894b502;hb=8d6c2f135ee103b9a94ea6c29986a608069b6982;hp=48692c86d08d28747dc2a227f7cf1711d8607bcb;hpb=9c887a3038703e7883450677f9d1ece4d40acd3d;p=pti%2Fo2.git diff --git a/o2ims/service/auditor/pserver_handler.py b/o2ims/service/auditor/pserver_handler.py index 48692c8..f8ad40c 100644 --- a/o2ims/service/auditor/pserver_handler.py +++ b/o2ims/service/auditor/pserver_handler.py @@ -40,13 +40,13 @@ def update_pserver( ): stxobj = cmd.data with uow: - resourcepool = uow.resource_pools.get(cmd.parentid) + # resourcepool = uow.resource_pools.get(cmd.parentid) # res = uow.session.execute(select(resourcetype).where( # resourcetype.c.resourceTypeEnum == stxobj.type)) res = uow.session.execute( ''' - SELECT "resourceTypeId", "oCloudId", "name" + SELECT "resourceTypeId", "name" FROM "resourceType" WHERE "resourceTypeEnum" = :resource_type_enum ''', @@ -57,11 +57,21 @@ def update_pserver( res_type_name = 'pserver' 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='The Physical Server resource type')) + description='The Physical Server resource type') + 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'] @@ -110,18 +120,25 @@ def create_by(stxobj: StxGenericModel, parentid: str, resourcetype_id: str) \ "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, - stxobj.name, parent_id, gAssetId, stxobj.content, - description, extensions) + parent_id, gAssetId, stxobj.content, description, + extensions) resource.createtime = stxobj.createtime resource.updatetime = stxobj.updatetime resource.hash = stxobj.hash + resource.events.append(events.ResourceChanged( + id=stxobj.id, + resourcePoolId=resource.resourcePoolId, + notificationEventType=NotificationEventEnum.CREATE, + updatetime=stxobj.updatetime + )) + return resource