私は最近、学習目的でサーバークライアントチャットプロトコルの開発を開始しました(後でこの通信でさらにやりたいと思いますが、今のところこれで十分です。言うまでもなく、私はまだPythonのこの部分の学習段階にあります。しかし、オンラインで見つけたサーバーとクライアントにいくつかの例を変更しました。これまで見てきたことから通信はうまく機能しますが、サーバーにメッセージを送信するたびにクライアントを再起動する必要があります。ここではコードは次のとおりです。
サーバ:
from twisted.internet import reactor, protocol
from twisted.protocols import basic
class Echo(protocol.Protocol):
def dataReceived(self, data):
"As soon as any data is received, write it back."
self.transport.write(data)
class MyChat(basic.LineReceiver):
def connectionMade(self):
print "Got new client!"
self.factory.clients.append(self)
def connectionLost(self, reason):
print "Lost a client!"
self.factory.clients.remove(self)
def dataReceived(self, data):
print "received", repr(data)
for c in self.factory.clients:
c.message(data)
def message(self, message):
self.transport.write(message + '\n')
def main():
"""This runs the protocol on port 8000"""
factory = protocol.ServerFactory()
factory.protocol = MyChat
factory.clients = []
reactor.listenTCP(8000,factory)
reactor.run()
# this only runs if the module was *not* imported
if __name__ == '__main__':
main()
クライアント:
from twisted.internet import reactor, protocol
# a client protocol
class EchoClient(protocol.Protocol):
"""Once connected, send a message, then print the result."""
def connectionMade(self):
self.transport.write("hello, world!")
def dataReceived(self, data):
"As soon as any data is received, write it back."
print "Server said:", data
self.transport.loseConnection()
def connectionLost(self, reason):
print "connection lost"
class EchoFactory(protocol.ClientFactory):
protocol = EchoClient
def clientConnectionFailed(self, connector, reason):
connector.connect()
print "Connection failed - goodbye!"
reactor.stop()
def clientConnectionLost(self, connector, reason):
connector.connect()
print "Connection lost - goodbye!"
reactor.stop()
# this connects the protocol to a server runing on port 8000
def main():
f = EchoFactory()
client = EchoClient()
reactor.connectTCP("localhost", 8000, f)
reactor.run()
# this only runs if the module was *not* imported
if __name__ == '__main__':
main()
複数のクライアントをサーバーに接続して接続を維持できるように、何を追加するのを忘れていますか?私はこことここを見ました(最初の質問は同じタイプの質問のようです)が、この問題を修正する方法についてはまだ混乱しています。任意の提案をいただければ幸いです。ありがとう!