1

我正在尝试在 AMP 客户端中链接延迟,如下所示:

客户:

from twisted.internet.endpoints import TCP4ClientEndpoint, connectProtocol
from twisted.protocols.amp import AMP

import commands

def connect_protocol(host, port):
    destination = TCP4ClientEndpoint(reactor, host, port)
    d = connectProtocol(destination, AMP())

    def connect(protocol):
        print 'Connecting to server as Mr Spaceman...'
        return protocol.callRemote(commands.Connect,
                                   username='Mr Foo')

    def say(protocol):
        print 'Saying "Hello world" to the server...'
        return protocol.callRemote(commands.Say,
                                   phrase='Hello world')

    d.addCallback(connect)
    d.addCallback(say)


def main(host, port):
    connect_protocol(host, port)
    print 'Connected to %s:%d...' % (host, port)
    reactor.run()

main('127.0.0.1', 12345)

服务器:

from twisted.internet.protocol import Factory
from twisted.protocols.amp import AMP

import commands

class CommandProtocol(AMP):

    def connect(self, username):
        print "Received connect command: %s." % (username)
        return {}
    commands.Connect.responder(connect)

    def say(self, phrase):
        print "Received phrase \"%s\"." % phrase
        return {}
    commands.Say.responder(say)

def main(port):
    factory = Factory()
    factory.protocol = CommandProtocol
    reactor.listenTCP(port, factory)
    print 'Started AMP server on port %d...' % port
    reactor.run()

main(12345)

只有connect()在服务器端被解雇

4

1 回答 1

1

首先,启用日志记录:

from sys import stdout
from twisted.python.log import startLogging
startLogging(stdout)

现在您将看到程序中发生了什么。

其次,至少有一个最终的 errback 记录未处理的故障,Deferred因此这些故障将确定性地显示出来,而不是依赖于垃圾收集器:

from twisted.python.log import err

...

    d.addCallback(connect)
    d.addCallback(say)
    d.addErrback(err, "connect_protocol encountered some problem")

最后,一个 Deferred 的结果被附加到它的回调和 errbacks 改变。在这种情况下,传递给的参数sayDeferred返回的结果connect。这与 的参数不同connect,因此您不太可能callRemote在其上使用。

您可以通过许多不同的方式解决此问题。涉及最少代码更改(但不一定是最佳解决方案)的一种方法是将协议作为额外值传递给connect Deferred:

def connect(protocol):
    print 'Connecting to server as Mr Spaceman...'
    d = protocol.callRemote(commands.Connect, username='Mr Foo')
    d.addCallback(lambda result: (protocol, result))
    return d

def say((protocol, result)):
    print 'Saying "Hello world" to the server...'
    return protocol.callRemote(commands.Say,
                               phrase='Hello world')
于 2013-08-15T02:10:24.643 回答