130fdad9d3210274f9f63d9790bd5fe6dea02843
[pti/o2.git] / o2common / domain / base.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 from datetime import datetime\r
16 from typing import List\r
17 from sqlalchemy.inspection import inspect\r
18 from sqlalchemy.exc import NoInspectionAvailable\r
19 from .events import Event\r
20 \r
21 \r
22 class AgRoot:\r
23 \r
24     events = []\r
25 \r
26     def __init__(self) -> None:\r
27         self.hash = ""\r
28         self.updatetime = datetime.now()\r
29         self.createtime = datetime.now()\r
30         self.events = []  # type: List[Event]\r
31         # self.id = ""\r
32 \r
33     # def append_event(self, event: Event):\r
34     #     self.events = self.events.append(event)\r
35 \r
36 \r
37 class Serializer(object):\r
38 \r
39     def serialize(self):\r
40         try:\r
41             # d = {c: getattr(self, c) for c in inspect(self).attrs.keys()}\r
42             # if 'createtime' in d:\r
43             #     d['createtime'] = d['createtime'].isoformat()\r
44             # if 'updatetime' in d:\r
45             #     d['updatetime'] = d['updatetime'].isoformat()\r
46             # return d\r
47             return {c: getattr(self, c) for c in inspect(self).attrs.keys()}\r
48         except NoInspectionAvailable:\r
49             return self.__dict__\r
50 \r
51     @staticmethod\r
52     def serialize_list(li):\r
53         return [m.serialize() for m in li]\r