Update resource details
[pti/o2.git] / o2ims / service / auditor / pserver_cpu_handler.py
1 # Copyright (C) 2021 Wind River Systems, Inc.
2 #
3 #  Licensed under the Apache License, Version 2.0 (the "License");
4 #  you may not use this file except in compliance with the License.
5 #  You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #  Unless required by applicable law or agreed to in writing, software
10 #  distributed under the License is distributed on an "AS IS" BASIS,
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #  See the License for the specific language governing permissions and
13 #  limitations under the License.
14
15 # pylint: disable=unused-argument
16 from __future__ import annotations
17 import uuid
18 import json
19
20 from o2ims.domain import commands, events
21 from o2ims.domain.stx_object import StxGenericModel
22 from o2common.service.unit_of_work import AbstractUnitOfWork
23 from o2ims.domain.resource_type import MismatchedModel
24 from o2ims.domain.ocloud import Resource, ResourceType
25 from o2ims.domain.subscription_obj import NotificationEventEnum
26
27 from o2common.helper import o2logging
28 logger = o2logging.get_logger(__name__)
29
30
31 class InvalidResourceType(Exception):
32     pass
33
34
35 def update_pserver_cpu(
36     cmd: commands.UpdatePserverCpu,
37     uow: AbstractUnitOfWork
38 ):
39     stxobj = cmd.data
40     with uow:
41         p_resource = uow.resources.get(cmd.parentid)
42         resourcepool = uow.resource_pools.get(p_resource.resourcePoolId)
43
44         res = uow.session.execute(
45             '''
46             SELECT "resourceTypeId", "oCloudId", "name"
47             FROM "resourceType"
48             WHERE "resourceTypeEnum" = :resource_type_enum
49             ''',
50             dict(resource_type_enum=stxobj.type.name)
51         )
52         first = res.first()
53         if first is None:
54             res_type_name = 'pserver_cpu'
55             resourcetype_id = str(uuid.uuid3(
56                 uuid.NAMESPACE_URL, res_type_name))
57             uow.resource_types.add(ResourceType(
58                 resourcetype_id,
59                 res_type_name, stxobj.type,
60                 resourcepool.oCloudId,
61                 description='A CPU resource type of the Physical Server'))
62         else:
63             resourcetype_id = first['resourceTypeId']
64
65         resource = uow.resources.get(stxobj.id)
66         if not resource:
67             logger.info("add the cpu of pserver:" + stxobj.name
68                         + " update_at: " + str(stxobj.updatetime)
69                         + " id: " + str(stxobj.id)
70                         + " hash: " + str(stxobj.hash))
71             localmodel = create_by(stxobj, p_resource, resourcetype_id)
72             uow.resources.add(localmodel)
73
74             logger.info("Add the cpu of pserver: " + stxobj.id
75                         + ", name: " + stxobj.name)
76         else:
77             localmodel = resource
78             if is_outdated(localmodel, stxobj):
79                 logger.info("update cpu of pserver:" + stxobj.name
80                             + " update_at: " + str(stxobj.updatetime)
81                             + " id: " + str(stxobj.id)
82                             + " hash: " + str(stxobj.hash))
83                 update_by(localmodel, stxobj, p_resource)
84                 uow.resources.update(localmodel)
85
86             logger.info("Update the cpu of pserver: " + stxobj.id
87                         + ", name: " + stxobj.name)
88         uow.commit()
89
90
91 def is_outdated(resource: Resource, stxobj: StxGenericModel):
92     return True if resource.hash != stxobj.hash else False
93
94
95 def create_by(stxobj: StxGenericModel, parent: Resource, resourcetype_id: str)\
96         -> Resource:
97     # content = json.loads(stxobj.content)
98     resourcetype_id = resourcetype_id
99     resourcepool_id = parent.resourcePoolId
100     parent_id = parent.resourceId
101     gAssetId = ''  # TODO: global ID
102     # description = "%s : A CPU resource of the physical server" % stxobj.name
103     content = json.loads(stxobj.content)
104     selected_keys = [
105         "cpu", "core", "thread", "allocated_function", "numa_node",
106         "cpu_model", "cpu_family"
107         ]
108     filtered = dict(
109         filter(lambda item: item[0] in selected_keys, content.items()))
110     extensions = json.dumps(filtered)
111     description = ";".join([f"{k}:{v}" for k, v in filtered.items()])
112     resource = Resource(stxobj.id, resourcetype_id, resourcepool_id,
113                         stxobj.name, parent_id, gAssetId, stxobj.content,
114                         description, extensions)
115     resource.createtime = stxobj.createtime
116     resource.updatetime = stxobj.updatetime
117     resource.hash = stxobj.hash
118
119     return resource
120
121
122 def update_by(target: Resource, stxobj: StxGenericModel,
123               parentid: str) -> None:
124     if target.resourceId != stxobj.id:
125         raise MismatchedModel("Mismatched Id")
126     target.createtime = stxobj.createtime
127     target.updatetime = stxobj.updatetime
128     target.hash = stxobj.hash
129     target.version_number = target.version_number + 1
130     target.events.append(events.ResourceChanged(
131         id=stxobj.id,
132         resourcePoolId=target.resourcePoolId,
133         notificationEventType=NotificationEventEnum.MODIFY,
134         updatetime=stxobj.updatetime
135     ))