1

ここにあるTwistedドキュメントからtwisted.wordsMSNプロトコルの例を実行しています:http://twistedmatrix.com/projects/words/documentation/examples/msn_example.py

ただし、このサンプルスクリプトを実行すると、UnhandledError例外が発生します。

2012-05-12 15:39:51-0300 [-] Log opened.
2012-05-12 15:39:51-0300 [-] Starting factory <twisted.internet.protocol.ClientFactory instance at  0x8c6c18c>
2012-05-12 15:39:52-0300 [Dispatch,client] Starting factory <twisted.words.protocols.msn.NotificationFactory instance at 0x8c6c2cc>
2012-05-12 15:39:52-0300 [Dispatch,client] Stopping factory <twisted.internet.protocol.ClientFactory instance at 0x8c6c18c>
2012-05-12 15:39:53-0300 [Notification,client] Starting factory <twisted.internet.protocol.ClientFactory instance at 0x8c710ec>
2012-05-12 15:39:53-0300 [Notification,client] Unhandled Error
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/twisted/python/log.py", line 84, in callWithLogger
    return callWithContext({"system": lp}, func, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/python/log.py", line 69, in callWithContext
    return context.call({ILogContext: newCtx}, func, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/python/context.py", line 118, in callWithContext
    return self.currentContext().callWithContext(ctx, func, *args, **kw)
  File "/usr/lib/python2.7/dist-packages/twisted/python/context.py", line 81, in callWithContext
    return func(*args,**kw)
--- <exception caught here> ---
  File "/usr/lib/python2.7/dist-packages/twisted/internet/selectreactor.py", line 146, in _doReadOrWrite
    why = getattr(selectable, method)()
  File "/usr/lib/python2.7/dist-packages/twisted/internet/tcp.py", line 460, in doRead
    rval = self.protocol.dataReceived(data)
  File "/usr/lib/python2.7/dist-packages/twisted/protocols/basic.py", line 564, in dataReceived
    why = self.lineReceived(line)
  File "/usr/lib/python2.7/dist-packages/twisted/words/protocols/msn.py", line 670, in lineReceived
    handler(params.split())
  File "/usr/lib/python2.7/dist-packages/twisted/words/protocols/msn.py", line 848, in handle_USR
    authData=params[3])
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 108, in execute
    return succeed(result)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 71, in succeed
    d.callback(result)
  File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 360, in callback
    assert not isinstance(result, Deferred)
exceptions.AssertionError: 

2012-05-12 15:39:53-0300 [Notification,client] Stopping factory <twisted.words.protocols.msn.NotificationFactory instance at 0x8c6c2cc>
2012-05-12 15:39:55-0300 [PassportNexus,client] Starting factory <twisted.internet.protocol.ClientFactory instance at 0x8d014cc>
2012-05-12 15:39:55-0300 [PassportNexus,client] Stopping factory <twisted.internet.protocol.ClientFactory instance at 0x8c710ec>
2012-05-12 15:39:56-0300 [PassportLogin,client] Stopping factory <twisted.internet.protocol.ClientFactory instance at 0x8d014cc>
  • Python 2.7.2 +
  • ツイスト11.0.0
  • pyOpenSSL 0.12
4

1 に答える 1

2

私はこれまでtwprotocols.msnプロトコルを使用したことがありませんが、846行msn.py目のTwistedにバグがあるように見えます。問題の関数は次のとおりです。

def handle_USR(self, params):
    if len(params) != 4 and len(params) != 6:
        raise MSNProtocolError, "Invalid Number of Parameters for USR"

    mechanism = params[1]
    if mechanism == "OK":
        self.loggedIn(params[2], unquote(params[3]), int(params[4]))
    elif params[2].upper() == "S":
        # we need to obtain auth from a passport server
        f = self.factory
        d = execute(                                                   # <------- here
            _login, f.userHandle, f.password, f.passportServer,
            authData=params[3])
        d.addCallback(self._passportLogin)
        d.addErrback(self._passportError)

defer.executemsn._loginとそのパラメータで呼び出されますがmsn._login、Deferredを返すことになっています。defer.executeDeferredを返す可能性のある関数で使用することは適切ではありません。これは、Deferredが他のDeferredを介してすぐにラップされdefer.succeed、結果として他のDeferredを保持できないためです。

代わりexecuteに使用する必要があります。ファイルの先頭からインポートdefer.maybeDeferredに追加し、この呼び出しを呼び出しに変更すると、動作が開始されると思います(または、少なくとも別のバグが原因で失敗し始めます:))。maybeDeferredtwisted.internet.deferexecutemaybeDeferred

于 2012-05-14T16:26:45.103 に答える