Newer
Older
from __future__ import annotations
from typing import TYPE_CHECKING, Dict
from common.database.api.context.topology.device.Endpoint import Endpoint as DeviceEndpoint
from common.database.api.context.Keys import KEY_LINK_ENDPOINT
from common.database.api.entity._Entity import _Entity
from common.database.api.context.Context import Context
from common.database.api.context.topology.Topology import Topology
from common.database.api.context.topology.link.Link import Link
'device_uuid': lambda v: v is not None and isinstance(v, str) and (len(v) > 0),
'endpoint_uuid': lambda v: v is not None and isinstance(v, str) and (len(v) > 0),
TRANSCODERS = {} # no transcoding applied to attributes
class Endpoint(_Entity):
def __init__(self, endpoint_uuid : str, parent : 'Link'):
super().__init__(parent, endpoint_uuid, KEY_LINK_ENDPOINT, VALIDATORS, TRANSCODERS)
@property
def parent(self) -> 'Link': return self._parent
@property
def context(self) -> 'Context': return self.parent.context
def context_uuid(self) -> str: return self.parent.context_uuid
@property
def topology(self) -> 'Topology': return self.parent.topology
@property
def topology_uuid(self) -> str: return self.parent.topology_uuid
@property
def link(self) -> 'Link': return self.parent
@property
def link_uuid(self) -> str: return self.parent.link_uuid
@property
def endpoint_uuid(self) -> str: return self._entity_uuid
def create(self, endpoint : DeviceEndpoint) -> 'Endpoint':
self.update(update_attributes={
'device_uuid': endpoint.device_uuid,
'endpoint_uuid': endpoint.endpoint_uuid,
})
def update(self, update_attributes={}, remove_attributes=[]) -> 'Endpoint':
self.attributes.update(update_attributes=update_attributes, remove_attributes=remove_attributes)
return self
def delete(self) -> None:
device_uuid = attributes.get('device_uuid', None)
endpoint_uuid = attributes.get('endpoint_uuid', None)
endpoint = self.topology.device(device_uuid).endpoint(endpoint_uuid)
return endpoint.dump_id()
def dump(self) -> Dict:
return self.dump_id()