20

我正在构建一个实时 Web 应用程序。我希望能够从我的 python 应用程序的服务器端实现发送广播消息。

这是设置:

我可以成功地将 socket.io 消息从客户端发送到服务器。服务器处理这些并可以发送响应。在下文中,我将描述我是如何做到的。

当前设置和代码

首先,我们需要定义一个 Connection 来处理 socket.io 事件:

class BaseConnection(tornadio2.SocketConnection):
    def on_message(self, message):
        pass

    # will be run if client uses socket.emit('connect', username)
    @event
    def connect(self, username):
        # send answer to client which will be handled by socket.on('log', function)
        self.emit('log', 'hello ' + username)

启动服务器由 Django 管理自定义方法完成:

class Command(BaseCommand):
    args = ''
    help = 'Starts the TornadIO2 server for handling socket.io connections'

    def handle(self, *args, **kwargs):
        autoreload.main(self.run, args, kwargs)

    def run(self, *args, **kwargs):
        port = settings.SOCKETIO_PORT

        router = tornadio2.TornadioRouter(BaseConnection)

        application = tornado.web.Application(
            router.urls,
            socket_io_port = port
        )

        print 'Starting socket.io server on port %s' % port
        server = SocketServer(application)

很好,服务器现在运行。让我们添加客户端代码:

<script type="text/javascript">    
    var sio = io.connect('localhost:9000');

    sio.on('connect', function(data) {
        console.log('connected');
        sio.emit('connect', '{{ user.username }}');
    });

    sio.on('log', function(data) {
        console.log("log: " + data);
    });
</script>

显然,{{ user.username }}将替换为当前登录用户的用户名,在本例中用户名是“alp”。

现在,每次刷新页面时,控制台输出都是:

connected
log: hello alp

因此,调用消息和发送响应是有效的。但现在是棘手的部分。

问题

响应“hello alp”仅发送给 socket.io 消息的调用者。我想向所有连接的客户端广播一条消息,以便在新用户加入聚会时实时通知他们(例如在聊天应用程序中)。

所以,这是我的问题:

  1. 如何向所有连接的客户端发送广播消息?

  2. 如何向在特定频道上订阅的多个连接的客户端发送广播消息?

  3. 如何在我的 python 代码中的任何地方(BaseConnection课堂外)发送广播消息?这是否需要某种用于 python 的 Socket.IO 客户端,或者是 TornadIO2 内置的?

所有这些广播都应该以可靠的方式完成,所以我想 websockets 是最好的选择。但我对所有好的解决方案持开放态度。

4

3 回答 3

16

我最近在类似的设置上编写了一个非常类似的应用程序,所以我确实有一些见解。

做你需要的正确方法是拥有一个 pub-sub 后端。简单的 s 能做的只有这么多ConnectionHandler。最终,处理类级别的连接集开始变得丑陋(更不用说有问题了)。

理想情况下,您希望使用 Redis 之类的东西,异步绑定到龙卷风(查看brukva)。这样,您就不必为将客户端注册到特定渠道而烦恼——Redis 开箱即用。

本质上,你有这样的东西:

class ConnectionHandler(SockJSConnection):
    def __init__(self, *args, **kwargs):
        super(ConnectionHandler, self).__init__(*args, **kwargs)
        self.client = brukva.Client()
        self.client.connect()
        self.client.subscribe('some_channel')

    def on_open(self, info):
        self.client.listen(self.on_chan_message)

    def on_message(self, msg):
        # this is a message broadcast from the client
        # handle it as necessary (this implementation ignores them)
        pass

    def on_chan_message(self, msg):
        # this is a message received from redis
        # send it to the client
        self.send(msg.body)

    def on_close(self):
        self.client.unsubscribe('text_stream')
        self.client.disconnect()

请注意,我使用了 sockjs-tornado,我发现它比 socket.io 稳定得多。

无论如何,一旦您进行了这种设置,从任何其他客户端(例如 Django,在您的情况下)发送消息就像打开 Redis 连接(redis-py是一个安全的选择)并发布消息一样简单:

import redis
r = redis.Redis()
r.publish('text_channel', 'oh hai!')

这个答案很长,所以我加倍努力并用它写了一篇博文:http: //blog.y3xz.com/blog/2012/06/08/a-modern-python-stack-for-实时网络应用程序/

于 2012-06-08T14:23:06.337 回答
3

我在这里写,因为在评论部分很难写。您可以在示例目录中查看 tornadoio2 的示例,您可以在其中找到聊天的实现,并且:

class ChatConnection(tornadio2.conn.SocketConnection):
    # Class level variable
    participants = set()

    def on_open(self, info):
        self.send("Welcome from the server.")
        self.participants.add(self)

    def on_message(self, message):
        # Pong message back
        for p in self.participants:
            p.send(message)

如您所见,他们将参与者设置为集合))

于 2012-06-08T14:22:08.863 回答
2

如果您已经在使用 django,为什么不看看 gevent-socketio。

于 2012-06-09T16:36:28.107 回答