Create a script to generate a Topology
[oam.git] / code / network-topology-instance-generator / model / python / tapi_node_fronthaul_gateway.py
1 # Copyright 2022 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 Module containing a class representing an O-RAN Radio Unit as TAPI Node.
18 """
19 from model.python.tapi_node import TapiNode
20 from model.python.tapi_node_edge_point import TapiNodeEdgePoint
21
22
23 class TapiNodeFronthaulGateway(TapiNode):
24     """
25     Class representing a O-RAN Fronthaul Gateway as TAPI Node.
26     """
27
28     # constructor
29     def __init__(self, parent, configuration):
30         super().__init__(parent, configuration)
31
32         count = max(2, configuration["node"]["southbound-nep-count"])
33         super().width((count + 1) * (2*self.FONTSIZE))
34
35         # add Ethernet Northbound provider
36         nep_configuration = {
37             "parent": self.identifier(),
38             "nodeEdgePoint": {
39                 "interface": "eth", "cep": [{"protocol": "ofh", "role": "provider"}]
40             }
41         }
42         self.add(TapiNodeEdgePoint(nep_configuration))
43
44         # add OAM provider
45         nep_configuration = {
46             "parent": self.identifier(),
47             "nodeEdgePoint": {
48                 "interface": "oam", "cep": [{"protocol": "netconf", "role": "provider"}]
49             }
50         }
51         self.add(TapiNodeEdgePoint(nep_configuration))
52
53         # add Ethernet Southbound consumer
54         for nep_index in range(configuration["node"]["southbound-nep-count"]):
55             nep_configuration = {
56                 "parent": self.identifier(),
57                 "nodeEdgePoint": {
58                     "local-id": nep_index,
59                     "interface": "eth",
60                     "cep": [{"protocol": "ofh", "role": "consumer"}]
61                 }
62             }
63             self.add(TapiNodeEdgePoint(nep_configuration))