2018-10-15 01:52:25 -04:00
|
|
|
from abc import ABC, abstractmethod
|
2018-10-14 13:47:06 -04:00
|
|
|
|
2018-11-12 13:02:49 -05:00
|
|
|
|
2018-10-15 01:52:25 -04:00
|
|
|
class INetwork(ABC):
|
2018-10-14 13:47:06 -04:00
|
|
|
|
2018-11-18 17:22:56 +01:00
|
|
|
@abstractmethod
|
|
|
|
def get_peer_id(self):
|
|
|
|
"""
|
|
|
|
:return: the peer id
|
|
|
|
"""
|
|
|
|
|
2018-11-29 16:06:40 +01:00
|
|
|
@abstractmethod
|
|
|
|
def dial_peer(self, peer_id):
|
|
|
|
"""
|
|
|
|
dial_peer try to create a connection to peer_id
|
|
|
|
|
|
|
|
:param peer_id: peer if we want to dial
|
|
|
|
:raises SwarmException: raised when no address if found for peer_id
|
|
|
|
:return: muxed connection
|
|
|
|
"""
|
|
|
|
|
2018-10-15 01:52:25 -04:00
|
|
|
@abstractmethod
|
2018-11-11 20:29:17 -05:00
|
|
|
def set_stream_handler(self, protocol_id, stream_handler):
|
2018-10-15 01:52:25 -04:00
|
|
|
"""
|
2018-11-11 20:29:17 -05:00
|
|
|
:param protocol_id: protocol id used on stream
|
2018-10-15 01:52:25 -04:00
|
|
|
:param stream_handler: a stream handler instance
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
2018-10-14 13:47:06 -04:00
|
|
|
|
2018-10-15 01:52:25 -04:00
|
|
|
@abstractmethod
|
2018-11-28 13:51:50 -05:00
|
|
|
def new_stream(self, peer_id, protocol_ids):
|
2018-10-15 01:52:25 -04:00
|
|
|
"""
|
|
|
|
:param peer_id: peer_id of destination
|
2018-11-28 13:51:50 -05:00
|
|
|
:param protocol_ids: available protocol ids to use for stream
|
|
|
|
:return: net stream instance
|
2018-10-15 01:52:25 -04:00
|
|
|
"""
|
2018-10-21 13:44:39 -04:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def listen(self, *args):
|
|
|
|
"""
|
|
|
|
:param *args: one or many multiaddrs to start listening on
|
2018-10-26 22:16:24 +02:00
|
|
|
:return: True if at least one success
|
2018-10-21 13:44:39 -04:00
|
|
|
"""
|
2019-02-28 18:12:33 -05:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def notify(self, notifee):
|
|
|
|
"""
|
|
|
|
:param notifee: object implementing Notifee interface
|
2019-03-14 14:01:37 -04:00
|
|
|
:return: true if notifee registered successfully, false otherwise
|
2019-02-28 18:12:33 -05:00
|
|
|
"""
|