Add auditor for resource pool, pserver and cpu/memory/port/interface for pserver...
[pti/o2.git] / o2ims / service / watcher / pserver_cpu_watcher.py
index 3add20b..51a5a76 100644 (file)
 #  See the License for the specific language governing permissions and\r
 #  limitations under the License.\r
 \r
-from o2ims.service.client.base_client import BaseClient\r
-from o2ims.service.unit_of_work import AbstractUnitOfWork\r
+from o2ims.domain.stx_object import StxGenericModel\r
+from o2common.service.client.base_client import BaseClient\r
+# from o2common.service.unit_of_work import AbstractUnitOfWork\r
 from o2ims.service.watcher.resource_watcher import ResourceWatcher\r
+from o2ims.domain import commands\r
+from o2common.service.messagebus import MessageBus\r
 \r
 from o2common.helper import o2logging\r
 logger = o2logging.get_logger(__name__)\r
@@ -22,15 +25,14 @@ logger = o2logging.get_logger(__name__)
 \r
 class PServerCpuWatcher(ResourceWatcher):\r
     def __init__(self, client: BaseClient,\r
-                 uow: AbstractUnitOfWork) -> None:\r
-        super().__init__(client, uow)\r
+                 bus: MessageBus) -> None:\r
+        super().__init__(client, bus)\r
 \r
     def _targetname(self):\r
         return "pserver_cpu"\r
 \r
-    def _probe(self, parent: object = None):\r
-        hostid = parent.id if parent else None\r
+    def _probe(self, parent: StxGenericModel):\r
+        hostid = parent.id\r
         newmodels = self._client.list(hostid=hostid)\r
-        for newmodel in newmodels:\r
-            super()._compare_and_update(newmodel)\r
-        return newmodels\r
+        return [commands.UpdatePserverCpu(data=m, parentid=hostid)\r
+                for m in newmodels]\r