Newer
Older
B-ASIC Port Module.
TODO: More info.
"""
from abc import ABC, abstractmethod
from typing import NewType, Optional, List
from b_asic.signal import Signal
def __init__(self, port_id: PortId, operation: Operation):
self._port_id = port_id
self._operation = operation
@property
def operation(self) -> Operation:
"""Get the connected operation."""
return self._operation
@property
@abstractmethod
def signals(self) -> List[Signal]:
"""Get a list of all connected signals."""
Angus Lothian
committed
raise NotImplementedError
def signal(self, i: int = 0) -> Signal:
"""Get the connected signal at index i."""
Angus Lothian
committed
raise NotImplementedError
def signal_count(self) -> int:
"""Get the number of connected signals."""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def connect(self, signal: Signal) -> None:
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def disconnect(self, i: int = 0) -> None:
Angus Lothian
committed
raise NotImplementedError
TODO: More info.
"""
_source_signal: Optional[Signal]
def __init__(self, port_id: PortId, operation: Operation):
super().__init__(port_id, operation)
return [] if self._source_signal is None else [self._source_signal]
assert 0 <= i < self.signal_count() # TODO: Error message.
assert self._source_signal is not None # TODO: Error message.
def signal_count(self) -> int:
return 0 if self._source_signal is None else 1
def connect(self, signal: Signal) -> None:
self._source_signal = signal
assert 0 <= i < self.signal_count() # TODO: Error message.
self._source_signal = None
# TODO: More stuff.
TODO: More info.
"""
_destination_signals: List[Signal]
def __init__(self, port_id: PortId, operation: Operation):
super().__init__(port_id, operation)
def signals(self) -> List[Signal]:
return self._destination_signals.copy()
def signal(self, i: int = 0) -> Signal:
assert 0 <= i < self.signal_count() # TODO: Error message.
def signal_count(self) -> int:
return len(self._destination_signals)
def connect(self, signal: Signal) -> None:
assert signal not in self._destination_signals # TODO: Error message.
self._destination_signals.append(signal)
assert 0 <= i < self.signal_count() # TODO: Error message.
# TODO: More stuff.