py-libp2p/libp2p/network/connection/raw_connection.py

38 lines
1.2 KiB
Python
Raw Normal View History

2019-11-19 14:01:12 +08:00
import trio
2019-07-28 14:06:29 +08:00
2019-11-19 14:01:12 +08:00
from libp2p.io.exceptions import IOException
from .exceptions import RawConnError
2018-11-11 22:56:44 +08:00
from .raw_connection_interface import IRawConnection
2019-11-19 14:01:12 +08:00
from libp2p.io.abc import ReadWriteCloser
2018-11-11 22:56:44 +08:00
2019-08-01 06:00:12 +08:00
2018-11-11 22:56:44 +08:00
class RawConnection(IRawConnection):
2019-11-19 14:01:12 +08:00
read_write_closer: ReadWriteCloser
2019-10-25 01:28:42 +08:00
is_initiator: bool
2019-07-28 14:06:29 +08:00
2019-11-19 14:01:12 +08:00
def __init__(self, read_write_closer: ReadWriteCloser, initiator: bool) -> None:
self.read_write_closer = read_write_closer
2019-10-25 01:28:42 +08:00
self.is_initiator = initiator
2018-11-11 22:56:44 +08:00
2019-07-28 14:06:29 +08:00
async def write(self, data: bytes) -> None:
"""Raise `RawConnError` if the underlying connection breaks."""
try:
2019-11-19 14:01:12 +08:00
await self.read_write_closer.write(data)
except IOException as error:
2019-09-19 22:19:36 +08:00
raise RawConnError(error)
async def read(self, n: int = -1) -> bytes:
"""
Read up to ``n`` bytes from the underlying stream. This call is
delegated directly to the underlying ``self.reader``.
2019-09-19 22:19:36 +08:00
Raise `RawConnError` if the underlying connection breaks
"""
try:
2019-11-19 14:01:12 +08:00
return await self.read_write_closer.read(n)
except IOException as error:
2019-09-19 22:19:36 +08:00
raise RawConnError(error)
async def close(self) -> None:
2019-11-19 14:01:12 +08:00
await self.read_write_closer.close()