Merge pull request #39 from zixuanzh/fix-dial
restructured raw connection
This commit is contained in:
commit
5ccf6323e8
|
@ -3,14 +3,20 @@ from .raw_connection_interface import IRawConnection
|
|||
|
||||
class RawConnection(IRawConnection):
|
||||
|
||||
def __init__(self, ip, port):
|
||||
def __init__(self, ip, port, reader, writer):
|
||||
self.conn_ip = ip
|
||||
self.conn_port = port
|
||||
self.reader, self.writer = self.open_connection()
|
||||
self.reader = reader
|
||||
self.writer = writer
|
||||
|
||||
async def open_connection(self):
|
||||
"""
|
||||
opens a connection on self.ip and self.port
|
||||
:return: a raw connection
|
||||
"""
|
||||
return await asyncio.open_connection(self.conn_ip, self.conn_port)
|
||||
# def __init__(self, ip, port):
|
||||
# self.conn_ip = ip
|
||||
# self.conn_port = port
|
||||
# self.reader, self.writer = self.open_connection()
|
||||
|
||||
# async def open_connection(self):
|
||||
# """
|
||||
# opens a connection on self.ip and self.port
|
||||
# :return: a raw connection
|
||||
# """
|
||||
# return await asyncio.open_connection(self.conn_ip, self.conn_port)
|
||||
|
|
|
@ -6,10 +6,10 @@ class IRawConnection(ABC):
|
|||
open_connection should return such a connection
|
||||
"""
|
||||
|
||||
@abstractmethod
|
||||
async def open_connection(self):
|
||||
"""
|
||||
opens a connection on ip and port
|
||||
:return: a raw connection
|
||||
"""
|
||||
pass
|
||||
# @abstractmethod
|
||||
# async def open_connection(self):
|
||||
# """
|
||||
# opens a connection on ip and port
|
||||
# :return: a raw connection
|
||||
# """
|
||||
# pass
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import asyncio
|
||||
from .transport_interface import ITransport
|
||||
from .listener_interface import IListener
|
||||
from transport.transport_interface import ITransport
|
||||
from transport.listener_interface import IListener
|
||||
from transport.connection.raw_connection import RawConnection
|
||||
|
||||
class TCP(ITransport):
|
||||
|
||||
|
@ -67,9 +68,10 @@ class TCP(ITransport):
|
|||
:return: True if successful
|
||||
"""
|
||||
_multiaddr_dict = multiaddr.to_dict()
|
||||
reader, writer = await asyncio.open_connection(_multiaddr_dict.host,\
|
||||
_multiaddr_dict.port)
|
||||
return False
|
||||
host = _multiaddr_dict.host
|
||||
port = _multiaddr_dict.port
|
||||
reader, writer = open_conn(host, port)
|
||||
return RawConnection(host, port, reader, writer)
|
||||
# TODO dial behavior not fully understood
|
||||
|
||||
def create_listener(self, handler_function, options=None):
|
||||
|
@ -81,3 +83,7 @@ class TCP(ITransport):
|
|||
:return: a listener object that implements listener_interface.py
|
||||
"""
|
||||
return self.Listener(handler_function)
|
||||
|
||||
async def open_conn(host, port):
|
||||
reader, writer = await asyncio.open_connection(host, port)
|
||||
return reader, writer
|
||||
|
|
Loading…
Reference in New Issue
Block a user