Newer
Older
Angus Lothian
committed
"""@package docstring
B-ASIC Operation Module.
TODO: More info.
"""
from abc import ABC, abstractmethod
Angus Lothian
committed
from typing import NewType
Name = NewType("Name", str)
TypeName = NewType("TypeName", str)
class GraphComponent(ABC):
"""Graph component interface.
TODO: More info.
"""
@property
@abstractmethod
def type_name(self) -> TypeName:
Angus Lothian
committed
"""Return the type name of the graph component"""
Angus Lothian
committed
raise NotImplementedError
@property
@abstractmethod
def name(self) -> Name:
Angus Lothian
committed
"""Return the name of the graph component."""
Angus Lothian
committed
raise NotImplementedError
@name.setter
@abstractmethod
def name(self, name: Name) -> None:
Angus Lothian
committed
"""Set the name of the graph component to the entered name."""
Angus Lothian
committed
raise NotImplementedError
Angus Lothian
committed
@abstractmethod
def copy_unconnected(self) -> "GraphComponent":
"""Get a copy of this graph component, except without any connected components."""
raise NotImplementedError
Angus Lothian
committed
class AbstractGraphComponent(GraphComponent):
"""Abstract Graph Component class which is a component of a signal flow graph.
TODO: More info.
"""
_name: Name
def __init__(self, name: Name = ""):
self._name = name
@property
def name(self) -> Name:
return self._name
@name.setter
def name(self, name: Name) -> None:
self._name = name
def copy_unconnected(self) -> GraphComponent:
new_comp = self.__class__()
new_comp.name = copy(self.name)
return new_comp