mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
* refactored : host_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : network_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : notifee_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored : net_connection_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored: raw_connection_interface, secure_conn_interface and stream_muxer abc.py * refactored: addrbook_interface * refactored :peerdata_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :peermetadata_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_client_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_communicator_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :multiselect_muxer_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :interfaces Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :security_transport_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * refactored :listener_interface Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * moved all interfaces and typing files Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> * fixed documentation and moved pubsub abc.py Co-authored-by: Khwahish Patel <khwahish.p1@ahduni.edu.in> * added exclude-members in custom_types docs * added : newsfragment for moving all interfaces to libp2p.abc --------- Co-authored-by: mystical-prog <jdgt.vd.0405@gmail.com> Co-authored-by: Mystical <125946525+mystical-prog@users.noreply.github.com>
110 lines
3.3 KiB
Python
110 lines
3.3 KiB
Python
from typing import (
|
|
TYPE_CHECKING,
|
|
)
|
|
|
|
import trio
|
|
|
|
from libp2p.abc import (
|
|
IMuxedConn,
|
|
IMuxedStream,
|
|
INetConn,
|
|
)
|
|
from libp2p.network.stream.net_stream import (
|
|
NetStream,
|
|
)
|
|
from libp2p.stream_muxer.exceptions import (
|
|
MuxedConnUnavailable,
|
|
)
|
|
|
|
if TYPE_CHECKING:
|
|
from libp2p.network.swarm import Swarm # noqa: F401
|
|
|
|
|
|
"""
|
|
Reference: https://github.com/libp2p/go-libp2p-swarm/blob/04c86bbdafd390651cb2ee14e334f7caeedad722/swarm_conn.go # noqa: E501
|
|
"""
|
|
|
|
|
|
class SwarmConn(INetConn):
|
|
muxed_conn: IMuxedConn
|
|
swarm: "Swarm"
|
|
streams: set[NetStream]
|
|
event_closed: trio.Event
|
|
|
|
def __init__(self, muxed_conn: IMuxedConn, swarm: "Swarm") -> None:
|
|
self.muxed_conn = muxed_conn
|
|
self.swarm = swarm
|
|
self.streams = set()
|
|
self.event_closed = trio.Event()
|
|
self.event_started = trio.Event()
|
|
|
|
@property
|
|
def is_closed(self) -> bool:
|
|
return self.event_closed.is_set()
|
|
|
|
async def close(self) -> None:
|
|
if self.event_closed.is_set():
|
|
return
|
|
self.event_closed.set()
|
|
await self._cleanup()
|
|
|
|
async def _cleanup(self) -> None:
|
|
self.swarm.remove_conn(self)
|
|
|
|
await self.muxed_conn.close()
|
|
|
|
# This is just for cleaning up state. The connection has already been closed.
|
|
# We *could* optimize this but it really isn't worth it.
|
|
for stream in self.streams.copy():
|
|
await stream.reset()
|
|
# Force context switch for stream handlers to process the stream reset event we
|
|
# just emit before we cancel the stream handler tasks.
|
|
await trio.sleep(0.1)
|
|
|
|
await self._notify_disconnected()
|
|
|
|
async def _handle_new_streams(self) -> None:
|
|
self.event_started.set()
|
|
async with trio.open_nursery() as nursery:
|
|
while True:
|
|
try:
|
|
stream = await self.muxed_conn.accept_stream()
|
|
except MuxedConnUnavailable:
|
|
await self.close()
|
|
break
|
|
# Asynchronously handle the accepted stream, to avoid blocking
|
|
# the next stream.
|
|
nursery.start_soon(self._handle_muxed_stream, stream)
|
|
|
|
async def _handle_muxed_stream(self, muxed_stream: IMuxedStream) -> None:
|
|
net_stream = await self._add_stream(muxed_stream)
|
|
try:
|
|
await self.swarm.common_stream_handler(net_stream)
|
|
finally:
|
|
# As long as `common_stream_handler`, remove the stream.
|
|
self.remove_stream(net_stream)
|
|
|
|
async def _add_stream(self, muxed_stream: IMuxedStream) -> NetStream:
|
|
net_stream = NetStream(muxed_stream)
|
|
self.streams.add(net_stream)
|
|
await self.swarm.notify_opened_stream(net_stream)
|
|
return net_stream
|
|
|
|
async def _notify_disconnected(self) -> None:
|
|
await self.swarm.notify_disconnected(self)
|
|
|
|
async def start(self) -> None:
|
|
await self._handle_new_streams()
|
|
|
|
async def new_stream(self) -> NetStream:
|
|
muxed_stream = await self.muxed_conn.open_stream()
|
|
return await self._add_stream(muxed_stream)
|
|
|
|
def get_streams(self) -> tuple[NetStream, ...]:
|
|
return tuple(self.streams)
|
|
|
|
def remove_stream(self, stream: NetStream) -> None:
|
|
if stream not in self.streams:
|
|
return
|
|
self.streams.remove(stream)
|