# Copyright 2023 highstreet technologies GmbH # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # !/usr/bin/python """ An abstract Class for O-RAN Node """ import xml.etree.ElementTree as ET from abc import abstractmethod from typing import Any, cast import network_generation.model.python.hexagon as Hexagon from network_generation.model.python.countries import Country from network_generation.model.python.geo_location import GeoLocation from network_generation.model.python.hexagon import Hex, Layout from network_generation.model.python.o_ran_object import ( IORanObject, ORanObject, ) from network_generation.model.python.o_ran_spiral_radius_profile import ( SpiralRadiusProfile, ) from network_generation.model.python.o_ran_termination_point import ( ORanTerminationPoint, ) from network_generation.model.python.point import Point from network_generation.model.python.type_definitions import AddressType # Define the "IORanObject" interface class IORanNode(IORanObject): address: AddressType geoLocation: GeoLocation url: str position: Hex layout: Layout spiralRadiusProfile: SpiralRadiusProfile parent: Any default_address: AddressType = { "street": "highstreet", "building": "none", "city": "heaven", "room": "frist", "zip": "12345", "state": "none", "country": Country.Germany, } default_value: IORanNode = cast( IORanNode, { **ORanObject.default(), **{ "address": default_address, "geoLocation": GeoLocation(), "url": "non-url", "position": Hex(0, 0, 0), "layout": Layout(Hexagon.layout_flat, Point(1, 1), Point(0, 0)), "spiralRadiusProfile": SpiralRadiusProfile(), "parent": None, }, }, ) # Define an abstract O-RAN Node class class ORanNode(ORanObject): @staticmethod def default() -> dict[str, Any]: return cast(dict[str, Any], default_value) def __init__( self, data: dict[str, Any] = cast(dict[str, Any], default_value), **kwargs: dict[str, Any] ) -> None: o_ran_node_data: IORanNode = self._to_o_ran_node_data(data) super().__init__(cast(dict[str, Any], data), **kwargs) self._address: AddressType = cast( AddressType, o_ran_node_data["address"] ) self._geo_location: GeoLocation = cast( GeoLocation, o_ran_node_data["geoLocation"] ) self._url: str = str(o_ran_node_data["url"]) self._position: Hex = cast(Hex, o_ran_node_data["position"]) self._layout: Layout = cast(Layout, o_ran_node_data["layout"]) self._spiral_radius_profile: SpiralRadiusProfile = cast( SpiralRadiusProfile, o_ran_node_data["spiralRadiusProfile"] ) self._parent: Any = o_ran_node_data["parent"] self._termination_points: list[ORanTerminationPoint] = [] def _to_o_ran_node_data(self, data: dict[str, Any]) -> IORanNode: result: IORanNode = default_value for key, key_type in IORanNode.__annotations__.items(): if key in data: result[key] = data[key] # type: ignore return result @property def address(self) -> AddressType: return self._address @address.setter def address(self, value: AddressType) -> None: self._address = value @property def geo_location(self) -> GeoLocation: return self._geo_location @geo_location.setter def geo_location(self, value: GeoLocation) -> None: self._geo_location = value @property def url(self) -> str: return self._url @url.setter def url(self, value: str) -> None: self._url = value @property def position(self) -> Hex: return self._position @position.setter def position(self, value: Hex) -> None: self._position = value @property def layout(self) -> Layout: return self._layout @layout.setter def layout(self, value: Layout) -> None: self._layout = value @property def spiral_radius_profile(self) -> SpiralRadiusProfile: return self._spiral_radius_profile @spiral_radius_profile.setter def spiral_radius_profile(self, value: SpiralRadiusProfile) -> None: self._spiral_radius_profile = value @property def parent( self, ) -> Any: # expected are ORanNodes and all inherits for ORanNode return self._parent @parent.setter def parent(self, value: Any) -> None: self._parent = value # @property # @abstractmethod def termination_points(self) -> list[ORanTerminationPoint]: return self._termination_points @abstractmethod def to_topology_nodes(self) -> list[dict[str, Any]]: tps: list[dict[str, Any]] = [] for tp in self.termination_points(): tps.append(tp.to_topology()) result: list[dict[str, Any]] = [] result.append( { "node-id": self.name, "ietf-network-topology:termination-point": tps, } ) return result @abstractmethod def to_topology_links(self) -> list[dict[str, Any]]: result: list[dict[str, Any]] = [] source_tp: str = "-".join([self.name, "phy".upper()]) dest_tp: str = "-".join([self.parent.name, "phy".upper()]) if self.parent and "Tower" not in source_tp and "Tower" not in dest_tp: link_id: str = "".join( ["phy", ":", self.name, "<->", self.parent.name] ) link = { "link-id": link_id, "source": {"source-node": self.name, "source-tp": source_tp}, "destination": { "dest-node": self.parent.name, "dest-tp": dest_tp, }, } result.append(link) return result @abstractmethod def toKml(self) -> ET.Element | None: pass @abstractmethod def toSvg(self) -> ET.Element: pass @abstractmethod def to_directory(self, parent_dir: str) -> None: pass