2c486bd7704f13d2f219ff3e97a3a3aec70af7a5
[pti/o2.git] / o2ims / domain / ocloud_repo.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 abc\r
16 from typing import List, Set\r
17 from o2ims.domain import ocloud\r
18 \r
19 \r
20 class OcloudRepository(abc.ABC):\r
21     def __init__(self):\r
22         self.seen = set()  # type: Set[ocloud.Ocloud]\r
23 \r
24     def add(self, ocloud: ocloud.Ocloud):\r
25         self._add(ocloud)\r
26         self.seen.add(ocloud)\r
27 \r
28     def get(self, ocloudid) -> ocloud.Ocloud:\r
29         ocloud = self._get(ocloudid)\r
30         if ocloud:\r
31             self.seen.add(ocloud)\r
32         return ocloud\r
33 \r
34     def list(self) -> List[ocloud.Ocloud]:\r
35         return self._list()\r
36 \r
37     def update(self, ocloud: ocloud.Ocloud):\r
38         self._update(ocloud)\r
39 \r
40     # def update_fields(self, ocloudid: str, updatefields: dict):\r
41     #     self._update(ocloudid, updatefields)\r
42 \r
43     @abc.abstractmethod\r
44     def _add(self, ocloud: ocloud.Ocloud):\r
45         raise NotImplementedError\r
46 \r
47     @abc.abstractmethod\r
48     def _get(self, ocloudid) -> ocloud.Ocloud:\r
49         raise NotImplementedError\r
50 \r
51     @abc.abstractmethod\r
52     def _update(self, ocloud: ocloud.Ocloud):\r
53         raise NotImplementedError\r