2018-10-21 04:55:37 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
|
|
|
class IPeerData(ABC):
|
|
|
|
|
|
|
|
"""
|
2018-10-22 03:15:53 +08:00
|
|
|
:return: all protocols associated with given peer
|
|
|
|
"""
|
2018-10-21 04:55:37 +08:00
|
|
|
def get_protocols(self):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
:param protocols: protocols to add
|
2018-10-22 03:15:53 +08:00
|
|
|
"""
|
2018-10-21 04:55:37 +08:00
|
|
|
def add_protocols(self, protocols):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
:param addrs: multiaddresses to add
|
2018-10-22 03:15:53 +08:00
|
|
|
"""
|
2018-10-21 04:55:37 +08:00
|
|
|
def add_addrs(self, addrs):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
:return: all multiaddresses
|
2018-10-22 03:15:53 +08:00
|
|
|
"""
|
2018-10-21 04:55:37 +08:00
|
|
|
def get_addrs(self):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
Clear all addresses
|
|
|
|
"""
|
|
|
|
def clear_addrs(self):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
:param key: key in KV pair
|
|
|
|
:param val: val to associate with key
|
2018-10-30 07:03:19 +08:00
|
|
|
:raise Exception: unsuccesful put
|
2018-10-21 04:55:37 +08:00
|
|
|
"""
|
|
|
|
def put_metadata(self, key, val):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|
2018-10-21 04:55:37 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
:param key: key in KV pair
|
2018-10-29 20:13:39 +08:00
|
|
|
:return: val for key
|
2018-10-30 07:03:19 +08:00
|
|
|
:raise Exception: key not found
|
2018-10-21 04:55:37 +08:00
|
|
|
"""
|
|
|
|
def get_metadata(self, key):
|
2018-10-22 03:15:53 +08:00
|
|
|
pass
|