X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fauditor%2Fpserver_if_handler.py;h=4f337adb88dcfe34c197f42702c0d4a443db84ee;hb=413424db37c0c950fdb2d3e53f627dd5e909ae16;hp=022f71740df59b8b55a3db9b28271013a0abe488;hpb=0c60b5232b47e292f54728e78bd0161901cdd974;p=pti%2Fo2.git diff --git a/o2ims/service/auditor/pserver_if_handler.py b/o2ims/service/auditor/pserver_if_handler.py index 022f717..4f337ad 100644 --- a/o2ims/service/auditor/pserver_if_handler.py +++ b/o2ims/service/auditor/pserver_if_handler.py @@ -15,23 +15,18 @@ # pylint: disable=unused-argument from __future__ import annotations import uuid -import json -from o2ims.domain import commands, events -from o2ims.domain.stx_object import StxGenericModel from o2common.service.unit_of_work import AbstractUnitOfWork -from o2ims.domain.resource_type import MismatchedModel -from o2ims.domain.ocloud import Resource, ResourceType +from o2ims.domain import commands, events +from o2ims.domain.ocloud import ResourceType from o2ims.domain.subscription_obj import NotificationEventEnum +from o2ims.service.auditor.pserver_res_handler import is_outdated, \ + create_by, update_by from o2common.helper import o2logging logger = o2logging.get_logger(__name__) -class InvalidResourceType(Exception): - pass - - def update_pserver_if( cmd: commands.UpdatePserverIf, uow: AbstractUnitOfWork @@ -96,52 +91,3 @@ def update_pserver_if( logger.info("Update the interface of pserver: " + stxobj.id + ", name: " + stxobj.name) uow.commit() - - -def is_outdated(resource: Resource, stxobj: StxGenericModel): - return True if resource.hash != stxobj.hash else False - - -def create_by(stxobj: StxGenericModel, parent: Resource, resourcetype_id: str)\ - -> Resource: - # content = json.loads(stxobj.content) - resourcetype_id = resourcetype_id - resourcepool_id = parent.resourcePoolId - parent_id = parent.resourceId - gAssetId = '' # TODO: global ID - # description = "%s : An interface resource of the physical server"\ - # % stxobj.name - content = json.loads(stxobj.content) - selected_keys = [ - "ifname", "iftype", "imac", "vlan_id", "imtu", - "ifclass", "uses", "max_tx_rate", - "sriov_vf_driver", "sriov_numvfs", "ptp_role" - ] - 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, - extensions) - resource.createtime = stxobj.createtime - resource.updatetime = stxobj.updatetime - resource.hash = stxobj.hash - - return resource - - -def update_by(target: Resource, stxobj: StxGenericModel, - parentid: str) -> None: - if target.resourceId != stxobj.id: - raise MismatchedModel("Mismatched Id") - target.createtime = stxobj.createtime - target.updatetime = stxobj.updatetime - target.hash = stxobj.hash - target.version_number = target.version_number + 1 - target.events.append(events.ResourceChanged( - id=stxobj.id, - resourcePoolId=target.resourcePoolId, - notificationEventType=NotificationEventEnum.MODIFY, - updatetime=stxobj.updatetime - ))