Update O2app start with global ocloud ID
[pti/o2.git] / o2ims / domain / configuration_repo.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 import abc
16 from typing import List, Set
17 from o2ims.domain import configuration_obj as obj
18
19
20 class ConfigurationRepository(abc.ABC):
21     def __init__(self):
22         self.seen = set()  # type: Set[obj.Configuration]
23
24     def add(self, configuration: obj.Configuration):
25         self._add(configuration)
26         self.seen.add(configuration)
27
28     def get(self, configuration_id) -> obj.Configuration:
29         configuration = self._get(configuration_id)
30         if configuration:
31             self.seen.add(configuration)
32         return configuration
33
34     def list(self) -> List[obj.Configuration]:
35         return self._list()
36
37     def update(self, configuration: obj.Configuration):
38         self._update(configuration)
39
40     def delete(self, configuration_id):
41         self._delete(configuration_id)
42
43     @abc.abstractmethod
44     def _add(self, configuration: obj.Configuration):
45         raise NotImplementedError
46
47     @abc.abstractmethod
48     def _get(self, configuration_id) -> obj.Configuration:
49         raise NotImplementedError
50
51     @abc.abstractmethod
52     def _update(self, configuration: obj.Configuration):
53         raise NotImplementedError
54
55     @abc.abstractmethod
56     def _delete(self, configuration_id):
57         raise NotImplementedError