Fix inventory subscription filter with 'neq'; fix CloudInfo notification
[pti/o2.git] / o2ims / domain / subscription_obj.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 __future__ import annotations
16 from enum import Enum
17 from dataclasses import dataclass
18
19 from o2common.domain.base import AgRoot, Serializer
20
21
22 class Subscription(AgRoot, Serializer):
23     def __init__(self, id: str, callback: str, consumersubid: str = '',
24                  filter: str = '') -> None:
25         super().__init__()
26         self.subscriptionId = id
27         self.callback = callback
28         self.consumerSubscriptionId = consumersubid
29         self.filter = filter
30
31         self.version_number = 0
32
33
34 class NotificationEventEnum(str, Enum):
35     CREATE = 0
36     MODIFY = 1
37     DELETE = 2
38
39
40 class Message2SMO(Serializer):
41     def __init__(self, eventtype: NotificationEventEnum,
42                  id: str, ref: str, updatetime: str) -> None:
43         self.notificationEventType = eventtype
44         self.objectRef = ref
45         self.id = id
46         self.updatetime = updatetime
47
48
49 class RegistrationMessage(Serializer):
50     def __init__(self, eventtype: NotificationEventEnum, id: str = '',
51                  updatetime: str = '') -> None:
52         self.notificationEventType = eventtype
53         self.id = id
54         self.updatetime = updatetime
55
56
57 @dataclass
58 class EventState():
59     Initial = 0
60     # NotInstalled = 1
61     Installing = 2
62     Installed = 3
63     Updating = 4
64     Uninstalling = 5
65     Abnormal = 6
66     Deleting = 7