py-libp2p/libp2p/peer/peerstore_interface.py

51 lines
1.4 KiB
Python
Raw Normal View History

from abc import abstractmethod
2019-07-31 15:00:12 -07:00
from typing import List, Sequence
2019-01-09 21:38:56 +03:00
2019-07-28 22:30:51 +08:00
from .addrbook_interface import IAddrBook
2019-07-27 16:27:01 +08:00
from .id import ID
from .peerinfo import PeerInfo
from .peermetadata_interface import IPeerMetadata
2019-01-09 21:38:56 +03:00
class IPeerStore(IAddrBook, IPeerMetadata):
2019-07-27 16:27:01 +08:00
def __init__(self) -> None:
IPeerMetadata.__init__(self)
IAddrBook.__init__(self)
2018-10-21 15:15:53 -04:00
@abstractmethod
2019-07-27 16:27:01 +08:00
def peer_info(self, peer_id: ID) -> PeerInfo:
2018-10-21 15:15:53 -04:00
"""
:param peer_id: peer ID to get info for
:return: peer info object
"""
2018-10-21 15:15:53 -04:00
@abstractmethod
2019-07-27 16:27:01 +08:00
def get_protocols(self, peer_id: ID) -> List[str]:
2018-10-21 15:15:53 -04:00
"""
:param peer_id: peer ID to get protocols for
2018-10-29 13:13:39 +01:00
:return: protocols (as strings)
:raise Exception: peer ID not found exception
"""
2018-10-21 15:15:53 -04:00
@abstractmethod
2019-07-27 16:27:01 +08:00
def add_protocols(self, peer_id: ID, protocols: Sequence[str]) -> None:
2018-10-21 15:15:53 -04:00
"""
:param peer_id: peer ID to add protocols for
:param protocols: protocols to add
2018-10-30 00:03:19 +01:00
:raise Exception: peer ID not found
"""
2018-10-21 15:15:53 -04:00
@abstractmethod
2019-07-27 16:27:01 +08:00
def set_protocols(self, peer_id: ID, protocols: Sequence[str]) -> None:
2018-10-21 15:15:53 -04:00
"""
:param peer_id: peer ID to set protocols for
:param protocols: protocols to set
2018-10-30 00:03:19 +01:00
:raise Exception: peer ID not found
"""
2018-10-21 15:15:53 -04:00
@abstractmethod
2019-07-27 16:27:01 +08:00
def peer_ids(self) -> List[ID]:
2018-10-21 15:15:53 -04:00
"""
:return: all of the peer IDs stored in peer store
"""