added linter

This commit is contained in:
zixuanzh
2018-10-15 01:52:25 -04:00
parent d0b12f5b4f
commit d512dfaf19
11 changed files with 748 additions and 113 deletions

0
network/__init__.py Normal file
View File

View File

@ -1,25 +1,25 @@
from abc import ABC
from abc import ABC, abstractmethod
class Network(ABC):
class INetwork(ABC):
def __init__(self, context, my_peer_id, peer_store):
self.context = context
self.my_peer_id = my_peer_id
self.peer_store = peer_store
def __init__(self, context, my_peer_id, peer_store):
self.context = context
self.my_peer_id = my_peer_id
self.peer_store = peer_store
@abstractmethod
def set_stream_handler(stream_handler):
"""
:param stream_handler: a stream handler instance
:return: true if successful
"""
pass
@abstractmethod
def set_stream_handler(self, stream_handler):
"""
:param stream_handler: a stream handler instance
:return: true if successful
"""
pass
@abstractmethod
def new_stream(context, peer_id):
"""
:param context: context instance
:param peer_id: peer_id of destination
:return: stream instance
"""
pass
@abstractmethod
def new_stream(self, context, peer_id):
"""
:param context: context instance
:param peer_id: peer_id of destination
:return: stream instance
"""
pass

41
network/stream.py Normal file
View File

@ -0,0 +1,41 @@
from .stream_interface import IStream
class Stream(IStream):
def __init__(self, context, peer_id):
self.context = context
self.peer_id = peer_id
def protocol(self):
"""
:return: protocol id that stream runs on
"""
pass
def set_protocol(self, protocol_id):
"""
:param protocol_id: protocol id that stream runs on
:return: true if successful
"""
pass
def read(self):
"""
read from stream
:return: bytes of input
"""
pass
def write(self, _bytes):
"""
write to stream
:return: number of bytes written
"""
pass
def close(self):
"""
close stream
:return: true if successful
"""
pass

View File

@ -1,47 +1,46 @@
from abc import ABC
from abc import ABC, abstractmethod
class Stream(ABC):
class IStream(ABC):
def __init__(self, context, peer_id):
self.context = context
self.peer_id = peer_id
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 protocol(self):
"""
: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 set_protocol(self, 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 read(self):
"""
read from stream
:return: bytes of input
"""
pass
@abstractmethod
def write(bytes):
"""
write to stream
:return: number of bytes written
"""
pass
@abstractmethod
def close():
"""
close stream
:return: true if successful
"""
pass
@abstractmethod
def write(self, _bytes):
"""
write to stream
:return: number of bytes written
"""
pass
@abstractmethod
def close(self):
"""
close stream
:return: true if successful
"""
pass

View File

@ -1,4 +1,23 @@
from network_interface import Network
from .network_interface import INetwork
class Swarm(Network):
pass
class Swarm(INetwork):
def __init__(self, context, my_peer_id, peer_store):
self.context = context
self.my_peer_id = my_peer_id
self.peer_store = peer_store
def set_stream_handler(self, stream_handler):
"""
:param stream_handler: a stream handler instance
:return: true if successful
"""
pass
def new_stream(self, context, peer_id):
"""
:param context: context instance
:param peer_id: peer_id of destination
:return: stream instance
"""
pass