Add polling worker for watcher to probe
[pti/o2.git] / o2ims / service / watcher / executor.py
1 # Copyright (C) 2021 Wind River Systems, Inc.\r
2 #\r
3 #  Licensed under the Apache License, Version 2.0 (the "License");\r
4 #  you may not use this file except in compliance with the License.\r
5 #  You may obtain a copy of the License at\r
6 #\r
7 #      http://www.apache.org/licenses/LICENSE-2.0\r
8 #\r
9 #  Unless required by applicable law or agreed to in writing, software\r
10 #  distributed under the License is distributed on an "AS IS" BASIS,\r
11 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 #  See the License for the specific language governing permissions and\r
13 #  limitations under the License.\r
14 \r
15 import cotyledon\r
16 \r
17 from o2ims.service.watcher.worker import PollWorker\r
18 from o2ims.service.watcher.base import OcloudWather\r
19 from o2ims.service.watcher.base import DmsWatcher\r
20 \r
21 import logging\r
22 logger = logging.getLogger(__name__)\r
23 \r
24 \r
25 class WatcherService(cotyledon.Service):\r
26     def __init__(self, worker_id, args) -> None:\r
27         super().__init__(worker_id)\r
28         self.args = args\r
29         self.worker = PollWorker()\r
30 \r
31     def run(self):\r
32         try:\r
33             self.worker.add_watcher(OcloudWather())\r
34             self.worker.add_watcher(DmsWatcher())\r
35             self.worker.start()\r
36         except Exception as ex:\r
37             logger.warning(ex.message)\r
38         finally:\r
39             self.worker.stop()\r
40 \r
41 \r
42 def start_watchers(sm=None):\r
43     watchersm = sm if sm else cotyledon.ServiceManager()\r
44     watchersm.add(WatcherService, workers=1, args=())\r
45     return watchersm\r