我正在尝试使用 autobahn|python 和 实现一个 websocket/wamp 客户端asyncio
,虽然它有些工作,但有些部分让我无法理解。
我真正想做的是在 qt5/QML 中实现 WAMP,但目前这似乎是一条更简单的路径。
这个主要从网上复制的简化客户端确实有效。它在发生时读取时间服务onJoin
。
我想做的是从外部来源触发此读取。
我采用的复杂方法是asyncio
在线程中运行事件循环,然后通过套接字发送命令以触发读取。到目前为止,我无法弄清楚将例程/协程放在哪里,以便可以从阅读器例程中找到它。
我怀疑有一种更简单的方法可以解决这个问题,但我还没有找到。欢迎提出建议。
#!/usr/bin/python3
try:
import asyncio
except ImportError:
## Trollius >= 0.3 was renamed
import trollius as asyncio
from autobahn.asyncio import wamp, websocket
import threading
import time
from socket import socketpair
rsock, wsock = socketpair()
def reader() :
data = rsock.recv(100)
print("Received:", data.decode())
class MyFrontendComponent(wamp.ApplicationSession):
def onConnect(self):
self.join(u"realm1")
@asyncio.coroutine
def onJoin(self, details):
print('joined')
## call a remote procedure
##
try:
now = yield from self.call(u'com.timeservice.now')
except Exception as e:
print("Error: {}".format(e))
else:
print("Current time from time service: {}".format(now))
def onLeave(self, details):
self.disconnect()
def onDisconnect(self):
asyncio.get_event_loop().stop()
def start_aloop() :
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
transport_factory = websocket.WampWebSocketClientFactory(session_factory,
debug = False,
debug_wamp = False)
coro = loop.create_connection(transport_factory, '127.0.0.1', 8080)
loop.add_reader(rsock,reader)
loop.run_until_complete(coro)
loop.run_forever()
loop.close()
if __name__ == '__main__':
session_factory = wamp.ApplicationSessionFactory()
session_factory.session = MyFrontendComponent
## 4) now enter the asyncio event loop
print('starting thread')
thread = threading.Thread(target=start_aloop)
thread.start()
time.sleep(5)
print("IN MAIN")
# emulate an outside call
wsock.send(b'a byte string')