高速公路异步重新连接客户端工厂

2024-06-06 04:16:03 发布

您现在位置:Python中文网/ 问答频道 /正文

我想用asyncio生成一个ReconnectingClientFactory。特别是要处理客户机启动时服务器不可用的情况,ReconnectingClientFactory将继续尝试。这是asyncio.events.create_connection不能做的事情。在

具体来说:

EchoClient为例就可以了。 关键是如何建立联系。在

factory = EchoClientFactory('ws://127.0.0.1:5678')
connectWS(factory)

对于带有ReconnectingClientFactory扭曲版本。在

^{pr2}$

或与asycnio版本类似。在

问题是在asyncio版本中,连接是由asyncio.events.create_connection建立的,如果服务器不可用,这个连接就会失败。在

我怎样才能调和两者?在

非常感谢


Tags: 版本服务器asyncio客户机factorycreate情况connection
1条回答
网友
1楼 · 发布于 2024-06-06 04:16:03

我想我得到了你想要的。下面是基于asyncio TCP echo client protocol example的代码和示例。在

import asyncio
import random


class ReconnectingTCPClientProtocol(asyncio.Protocol):
    max_delay = 3600
    initial_delay = 1.0
    factor = 2.7182818284590451
    jitter = 0.119626565582
    max_retries = None

    def __init__(self, *args, loop=None, **kwargs):
        if loop is None:
            loop = asyncio.get_event_loop()
        self._loop = loop
        self._args = args
        self._kwargs = kwargs
        self._retries = 0
        self._delay = self.initial_delay
        self._continue_trying = True
        self._call_handle = None
        self._connector = None

    def connection_lost(self, exc):
        if self._continue_trying:
            self.retry()

    def connection_failed(self, exc):
        if self._continue_trying:
            self.retry()

    def retry(self):
        if not self._continue_trying:
            return

        self._retries += 1
        if self.max_retries is not None and (self._retries > self.max_retries):
            return

        self._delay = min(self._delay * self.factor, self.max_delay)
        if self.jitter:
            self._delay = random.normalvariate(self._delay,
                                               self._delay * self.jitter)
        self._call_handle = self._loop.call_later(self._delay, self.connect)

    def connect(self):
        if self._connector is None:
            self._connector = self._loop.create_task(self._connect())

    async def _connect(self):
        try:
            await self._loop.create_connection(lambda: self,
                                               *self._args, **self._kwargs)
        except Exception as exc:
            self._loop.call_soon(self.connection_failed, exc)
        finally:
            self._connector = None

    def stop_trying(self):
        if self._call_handle:
            self._call_handle.cancel()
            self._call_handle = None
        self._continue_trying = False
        if self._connector is not None:
            self._connector.cancel()
            self._connector = None


if __name__ == '__main__':
    class EchoClientProtocol(ReconnectingTCPClientProtocol):
        def __init__(self, message, *args, **kwargs):
            super().__init__(*args, **kwargs)
            self.message = message

        def connection_made(self, transport):
            transport.write(self.message.encode())
            print('Data sent: {!r}'.format(self.message))

        def data_received(self, data):
            print('Data received: {!r}'.format(data.decode()))

        def connection_lost(self, exc):
            print('The server closed the connection')
            print('Stop the event loop')
            self._loop.stop()


    loop = asyncio.get_event_loop()
    client = EchoClientProtocol('Hello, world!', '127.0.0.1', 8888, loop=loop)
    client.connect()
    loop.run_forever()
    loop.close()

相关问题 更多 >