Newer
Older
Angus Lothian
committed
Contains classes for managing the ports of operations.
Angus Lothian
committed
from copy import copy
from typing import TYPE_CHECKING, Iterable, List, Optional
Angus Lothian
committed
from b_asic.graph_component import Name
Angus Lothian
committed
if TYPE_CHECKING:
from b_asic.operation import Operation
Angus Lothian
committed
Ports serve as connection points for connecting signals between operations.
They also store information about the latency of the corresponding
calculations of the operation.
Aside from connected signals, each port also provides a reference to the
parent operation that "owns" it as well as the operation's port index at
which the port resides.
Angus Lothian
committed
def operation(self) -> "Operation":
"""Return the connected operation."""
raise NotImplementedError
@property
@abstractmethod
Angus Lothian
committed
def index(self) -> int:
"""Return the index of the port."""
raise NotImplementedError
@property
@abstractmethod
Angus Lothian
committed
def latency_offset(self) -> int:
"""Get the latency_offset of the port."""
Angus Lothian
committed
@latency_offset.setter
Angus Lothian
committed
def latency_offset(self, latency_offset: int) -> None:
"""Set the latency_offset of the port to the integer specified value.
"""
raise NotImplementedError
@property
@abstractmethod
def signal_count(self) -> int:
"""Return the number of connected signals."""
raise NotImplementedError
Angus Lothian
committed
@property
Angus Lothian
committed
def signals(self) -> Iterable[Signal]:
"""Return all connected signals."""
raise NotImplementedError
@abstractmethod
def add_signal(self, signal: Signal) -> None:
"""
Connect this port to the entered signal. If the entered signal isn't connected to
Angus Lothian
committed
this port then connect the entered signal to the port as well.
"""
raise NotImplementedError
@abstractmethod
def remove_signal(self, signal: Signal) -> None:
"""
Remove the signal that was entered from the Ports signals.
If the entered signal still is connected to this port then disconnect the
Angus Lothian
committed
entered signal from the port as well.
Keyword arguments:
- signal: Signal to remove.
"""
raise NotImplementedError
@abstractmethod
def clear(self) -> None:
"""Removes all connected signals from the Port."""
raise NotImplementedError
class AbstractPort(Port):
"""
Generic abstract port base class.
Angus Lothian
committed
Concrete ports should normally derive from this to get the default
behavior.
Angus Lothian
committed
_operation: "Operation"
Angus Lothian
committed
_latency_offset: Optional[int]
def __init__(
self,
operation: "Operation",
index: int,
latency_offset: Optional[int] = None,
):
Angus Lothian
committed
"""Construct a port of the given operation at the given port index."""
Angus Lothian
committed
self._index = index
self._latency_offset = latency_offset
Angus Lothian
committed
def operation(self) -> "Operation":
Angus Lothian
committed
def index(self) -> int:
Angus Lothian
committed
@property
def latency_offset(self) -> int:
return self._latency_offset
@latency_offset.setter
def latency_offset(self, latency_offset: int):
self._latency_offset = latency_offset
class SignalSourceProvider(ABC):
"""
Signal source provider interface.
Angus Lothian
committed
Signal source providers give access to a single output port that can be
used to connect signals from.
"""
@property
@abstractmethod
def source(self) -> "OutputPort":
"""Get the main source port provided by this object."""
raise NotImplementedError
class InputPort(AbstractPort):
"""Input port.
Angus Lothian
committed
May have one or zero signals connected to it.
"""
_source_signal: Optional[Signal]
Angus Lothian
committed
def __init__(self, operation: "Operation", index: int):
"""Construct an InputPort."""
super().__init__(operation, index)
self._source_signal = None
@property
def signal_count(self) -> int:
return 0 if self._source_signal is None else 1
Angus Lothian
committed
@property
def signals(self) -> Iterable[Signal]:
return [] if self._source_signal is None else [self._source_signal]
def add_signal(self, signal: Signal) -> None:
assert (
self._source_signal is None
), "Input port may have only one signal added."
assert (
signal is not self._source_signal
), "Attempted to add already connected signal."
Angus Lothian
committed
self._source_signal = signal
signal.set_destination(self)
def remove_signal(self, signal: Signal) -> None:
assert (
signal is self._source_signal
), "Attempted to remove signal that is not connected."
Angus Lothian
committed
signal.remove_destination()
Angus Lothian
committed
if self._source_signal is not None:
self.remove_signal(self._source_signal)
@property
def connected_source(self) -> Optional["OutputPort"]:
"""Get the output port that is currently connected to this input port,
or None if it is unconnected.
"""
return (
None if self._source_signal is None else self._source_signal.source
)
Angus Lothian
committed
def connect(self, src: SignalSourceProvider, name: Name = "") -> Signal:
"""Connect the provided signal source to this input port by creating a new signal.
Returns the new signal.
"""
assert (
self._source_signal is None
), "Attempted to connect already connected input port."
Angus Lothian
committed
# self._source_signal is set by the signal constructor.
return Signal(source=src.source, destination=self, name=name)
def __lshift__(self, src: SignalSourceProvider) -> Signal:
"""Overloads the left shift operator to make it connect the provided signal source to this input port.
Returns the new signal.
"""
return self.connect(src)
Angus Lothian
committed
class OutputPort(AbstractPort, SignalSourceProvider):
Angus Lothian
committed
May have zero or more signals connected to it.
"""
_destination_signals: List[Signal]
Angus Lothian
committed
def __init__(self, operation: "Operation", index: int):
"""Construct an OutputPort."""
super().__init__(operation, index)
self._destination_signals = []
@property
def signal_count(self) -> int:
return len(self._destination_signals)
Angus Lothian
committed
@property
def signals(self) -> Iterable[Signal]:
return self._destination_signals
def add_signal(self, signal: Signal) -> None:
assert (
signal not in self._destination_signals
), "Attempted to add already connected signal."
Angus Lothian
committed
signal.set_source(self)
def remove_signal(self, signal: Signal) -> None:
assert (
signal in self._destination_signals
), "Attempted to remove signal that is not connected."
Angus Lothian
committed
self._destination_signals.remove(signal)
signal.remove_source()
Angus Lothian
committed
for signal in copy(self._destination_signals):
Angus Lothian
committed
@property
def source(self) -> "OutputPort":
return self