twisted客户端停止连接到服务器

时间:2016-10-20 07:34:59

标签: python python-2.7 twisted

我正在使用以下扭曲的客户端代码连接到服务器,该服务器每3秒后将数据发送到服务器,如果它们断开连接,客户端将再次尝试每隔10次连接服务器。此客户端代码运行24小时。但我观察到,从长远来看,即使服务器在线,客户端也无法向服务器发送数据。我必须在杀死旧客户端进程后重新启动此客户端代码才能使其再次运行。以下是我正在使用的代码:

#!/usr/bin/python
import binascii
from functools import partial

from twisted.internet import reactor, protocol, task
from twisted.internet.protocol import ReconnectingClientFactory

connection = None
lineNumber = 5
displayIP = '192.168.0.207'
l = None

#MAIN CLASSES FOR TCP CLIENT
class EchoClient(protocol.Protocol):
    def connectionMade(self):
        global connection
        connection = self.transport
        startClock(self)
    def dataReceived(self, data):
        self.print_message(data)

    def print_message(self, data):
        print " message received"

class EchoFactory(protocol.ReconnectingClientFactory):
    protocol = EchoClient
    maxDelay = 10

    def startedConnecting(self, connector):
        pass    

    def buildProtocol(self,addr):
        self.resetDelay()
        return EchoClient()

    def clientConnectionLost(self, conn, reason):
        global connection
        connection = None
        ReconnectingClientFactory.clientConnectionLost(self, conn, reason)

    def clientConnectionFailed(self, conn, reason):
        global connection
        connection = None
        ReconnectingClientFactory.clientConnectionFailed(self, conn, reason)


#TO SEND to server
def sendToServer(self):
    if connection:
        sendPackets(self)
    else: pass

#clock after every 3 seconds packet is send to server
def startClock(self):
    l = task.LoopingCall(partial(sendToServer,self))
    l.start(3.0)

#send current status to server
def sendPackets(self):
    try:
        self.transport.write((binascii.unhexlify(sendString)))
    except Exception, ex: pass

#THIS CONNECTS CLIENT TO server
def main():
    f = EchoFactory()
    reactor.connectTCP(displayIP, 8004, f)
    reactor.run()

#MAIN FUNCTION CALLING MODULE
if __name__ == '__main__':
    main()

从长远来看,这段代码失败的原因是什么?

1 个答案:

答案 0 :(得分:0)

我注意到在连接失败或丢失时完成了日志记录。您可能在实际代码中执行此操作。 reason参数给出了一些关于为什么事情失败的背景,因此记录它们可能是值得的。此外,您应该resetDelay()何时连接丢失/失败,而不是在buildProtocol()中运行。

如果执行上述操作仍然无法在客户端发现问题,请尝试在服务器端添加一些日志记录(如果可能)。有一个无限的原因,为什么一个连接"只是停止"它可以从环境到环境。如果所有其他方法都失败了,那么您将需要使用wireshark之​​类的东西。