2018-10-15 01:47:06 +08:00
|
|
|
from abc import ABC
|
|
|
|
|
|
|
|
class Stream(ABC):
|
|
|
|
|
|
|
|
def __init__(self, context, peer_id):
|
|
|
|
self.context = context
|
|
|
|
self.peer_id = peer_id
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def protocol():
|
|
|
|
"""
|
|
|
|
:return: protocol id that stream runs on
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def set_protocol(protocol_id):
|
|
|
|
"""
|
|
|
|
:param protocol_id: protocol id that stream runs on
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def read():
|
|
|
|
"""
|
|
|
|
read from stream
|
|
|
|
:return: bytes of input
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def write(bytes):
|
|
|
|
"""
|
|
|
|
write to stream
|
|
|
|
:return: number of bytes written
|
|
|
|
"""
|
|
|
|
pass
|
2018-10-15 02:11:03 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def close():
|
|
|
|
"""
|
|
|
|
close stream
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|