Create concrete classes for O-RAN Nodes
[oam.git] / code / network-generator / model / python / o_ran_du.py
1 # Copyright 2023 highstreet technologies GmbH
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 #!/usr/bin/python
16
17 """
18 A Class representing an O-RAN distributed unit (ORanDu)
19 """
20 from model.python.tower import Tower
21 from model.python.o_ran_object import IORanObject
22 from model.python.o_ran_node import ORanNode
23 import xml.etree.ElementTree as ET
24
25 # Define the "IORanDu" interface
26 class IORanDu(IORanObject):
27     def __init__(self, **kwargs):
28         super().__init__(**kwargs)
29
30
31 # Define an abstract O-RAN Node class
32 class ORanDu(ORanNode, IORanDu):
33     def __init__(self, o_ran_du_data: IORanDu = None, **kwargs):
34         super().__init__(o_ran_du_data, **kwargs)
35         self._towers: list(ORanDu) = self._calculate_towers()
36
37     def _calculate_towers(self):
38         hex_ring_radius: int = self.spiralRadiusProfile.oRanDuSpiralRadiusOfTowers
39         index: int = 0
40         s: str = "00" + str(index)
41         name: str = "Tower-" + s[len(s) - 2 : len(s)]
42         result : list(Tower) = []
43         result.append(
44             Tower(
45                 {
46                     "name": name,
47                     "geoLocation": self.geoLocation,
48                     "position": self.position,
49                     "layout": self.layout,
50                     "spiralRadiusProfile": self.spiralRadiusProfile,
51                     "parent": self
52                 }
53             )
54         )
55         return result
56
57     @property
58     def towers(self):
59         return self._towers
60     
61     def toKml(self):
62         return None
63
64     def toSvg(self):
65         return None