Enhance: Enable O2 IMS for distributed cloud
[pti/o2.git] / o2common / service / watcher / base.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 # from logging import exception
16 # from cgtsclient import exc
17 from o2common.service.client.base_client import BaseClient
18 from o2common.domain import commands
19 from o2common.service.messagebus import MessageBus
20 from o2common.helper import o2logging
21 logger = o2logging.get_logger(__name__)
22
23
24 class BaseWatcher(object):
25     def __init__(self, client: BaseClient,
26                  bus: MessageBus) -> None:
27         super().__init__()
28         self._client = client
29         self._bus = bus
30         self._tags = None
31         # self._uow = bus.uow
32
33     def targetname(self) -> str:
34         return self._targetname()
35
36     def probe(self, parent: commands.Command = None, tags: object = None):
37         try:
38             cmds = self._probe(
39                 parent.data if parent else None, tags)
40             for cmd in cmds:
41                 self._bus.handle(cmd)
42
43             # return self._probe(parent)
44             return cmds
45         except Exception as ex:
46             logger.warning("Failed to probe resource due to: " + str(ex))
47             return []
48
49     def _probe(self, parent: object = None, tags: object = None) \
50             -> commands.Command:
51         raise NotImplementedError
52
53     def _targetname(self):
54         raise NotImplementedError
55
56     # def _compare_and_update(self, newmodel: StxGenericModel) -> bool:
57     #     with self._uow:
58     #         # localmodel = self._uow.stxobjects.get(ocloudmodel.id)
59     #         localmodel = self._uow.stxobjects.get(str(newmodel.id))
60     #         if not localmodel:
61     #             logger.info("add entry:" + newmodel.name)
62     #             self._uow.stxobjects.add(newmodel)
63     #         elif localmodel.is_outdated(newmodel):
64     #             logger.info("update entry:" + newmodel.name)
65     #             localmodel.update_by(newmodel)
66     #             self._uow.stxobjects.update(localmodel)
67     #         self._uow.commit()
68
69
70 # node to organize watchers in tree hierachy
71 class WatcherTree(object):
72     def __init__(self, watcher: BaseWatcher) -> None:
73         super().__init__()
74         self.watcher = watcher
75         self.children = {}
76         self.tags = None
77
78     def addchild(self, watcher: BaseWatcher) -> object:
79         child = WatcherTree(watcher)
80         self.children[watcher.targetname()] = child
81         return child
82
83     def removechild(self, targetname: str) -> object:
84         return self.children.pop(targetname)
85
86     # probe all resources by parent, depth = 0 for indefinite recursive
87     def probe(self, parentresource=None, depth: int = 0, tags: object = None):
88         logger.debug("probe resources with watcher: "
89                      + self.watcher.targetname())
90         childdepth = depth - 1 if depth > 0 else 0
91         resources = self.watcher.probe(parentresource, tags)
92         logger.debug("probe returns " + str(len(resources)) + " resources")
93         if self.watcher._tags is not None:
94             tags = self.watcher._tags
95
96         if depth == 1:
97             # stop recursive
98             return
99
100         for res in resources:
101             for targetname in self.children.keys():
102                 self.children[targetname].probe(res, childdepth, tags)