1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
.. gevent-socketio documentation master file, created by
sphinx-quickstart on Tue Mar 13 20:43:40 2012.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Gevent-socketio documentation
=============================
.. toctree::
:maxdepth: 2
Introduction
------------
Socket.IO is a WebSocket-like abstraction that enables real-time
communication between a browser and a server. ``gevent-socketio`` is a
Python implementation of the protocol.
The reference server implementation of Socket.IO runs on Node.js and was
developed by LearnBoost. There are now server implementations in a
variety of languages.
One aim of this project is to provide a single ``gevent``-based
API that works across the different WSGI-based web frameworks out
there (Pyramid, Pylons, Flask, web2py, Django, etc...). Only ~3 lines
of code are required to tie-in ``gevent-socketio`` in your framework.
Note: you need to use the ``gevent`` python WSGI server to use
``gevent-socketio``.
**Namespaces**: since you mostly have **one** websocket/socket.io
endpoint per website, it is important to be able to namespace the
different real-time activities of the different pages or parts of
your site, just like you need routes to map URLs to different parts
of your code. The Socket.IO 0.7+ namespaces are a welcome addition,
and if you don't use Socket.IO, you'll probably end-up writing your
own namespacing mechanism at some point.
**Named events**: To distinguish the messages that are coming and
going, you most probably want to give them some name. Here again, not
using Socket.IO, you will find yourself implementing a way to tag your
packets with names representing different tasks or actions to
perform. With Socket.IO 0.6 or with normal WebSockets, you would
probably encode a JSON object with one of the keys that is reserved
for that (I used ``{"type": "submit_something"}``. Socket.IO 0.7+
implements named events, which put that information in a terse form on
the wire. It also allows you to define callbacks, that can be
acknowledged by the other endpoint, and then fire back your function
with some return parameters. Something great for RPC, that you'd need
to implement yourself the moment you need it.
**Transports**: One of the main feature of Socket.IO is the
abstraction of the transport, that gives you real-time web support
down to Internet Explorer 6.0, using long-polling methods. It will
also use native WebSockets when available to the browser, for even
lower latencies. Currently supported transports: ``websocket``,
``flashsocket``, ``htmlfile``, ``xhr-multipart``, ``xhr-polling``,
``jsonp-polling``.
This implementation covers nearly all the features of the Socket.IO
0.7+ (up to at least 0.9.1) protocol, with events, callbacks. It adds
security in a pythonic way with granular ACLs (which don't exist in
the Node.js version) at the method level. The project has several
examples in the source code and in the documentation. Any addition
and fixes to the docs are warmly welcomed.
Concepts
--------
In order to understand the following documentation articles, let's
clarify some of the terms used:
A **Namespace** is like a controller in the MVC world. It encompasses
a set of methods that are logically in it. For example, the
``send_private_message`` event would be in the ``/chat`` namespace, as
well as the ``kick_ban`` event. Whereas the ``scan_files`` event
would be in the ``/filesystem`` namespace. Each namespace is
represented by a sub-class of :class:`BaseNamespace`. A simple
example would be, on the client side (the browser):
.. code-block:: javascript
var socket = io.connect("/chat");
having loaded the ``socket.io.js`` library somewhere in your <head>.
On the server (this is a Pyramid example, but its pretty much the same
for other frameworks):
.. code-block:: python
from socketio.namespace import BaseNamespace
class ChatNamespace(BaseNamespace):
def on_chat(self, msg):
self.emit('chat', msg)
def socketio_service(request):
socketio_manage(request.environ, {'/chat': ChatNamespace},
request)
return "out"
Here we use :func:`socketio.socketio_manage` to start the Socket.IO
machine, and handle the real-time communication.
You will come across the notion of a ``Socket``. This is a virtual
socket, that abstracts the fact that some transports are long-polling
and others are stateful (like a Websocket), and exposes the same
functionality for all. You can have many namespaces inside a Socket,
each delimited by their name like ``/chat``, ``/filesystem`` or
``/foobar``. Note also that there is a global namespace, identified
by an empty string. Some times, the global namespace has special
features, for backwards compatibilty reasons (we only have a global
namespace in version 0.6 of the protocol). For example, disconnecting
the global namespace means disconnect the full socket. Disconnecting
a qualified namespace, on the other hand, only removes access to that
namespace.
The ``Socket`` is responsible from taking the `packets`, which are, in
the realm of a ``Namespace`` or a ``Socket`` object, a dictionary that
looks like:
.. code-block:: python
{"type": "event",
"name": "launch_superhero",
"args": ["Superman", 123, "km", {"hair_color": "brown"}]}
These packets are serialized in a compact form when its time to put
them on the wire. Socket.IO also has some optimizations if we need to
send many packets on some long-polling transports.
At this point, if you don't know ``gevent``, you probably will want to
learn a bit more about it, since it is the base you will be working
on:
http://www.gevent.org/
Getting started
---------------
Until we have a fully-fledged tutorial, please check out our example
applications and the API documentation.
You can see a video that shows ``gevent-socketio`` in a live coding
presentation here:
http://pyvideo.org/video/1573/gevent-socketio-cross-framework-real-time-web-li
To learn how to build your Namespace (the object dealing with requests and replies), see:
:ref:`namespace_module`
See this doc for different servers integration:
:ref:`server_integration`
Examples
--------
The ``gevent-socketio`` repository holds several examples:
https://github.com/abourget/gevent-socketio/tree/master/examples
* ``simple_chat`` is a bare-bone WSGI app with a minimal socketio integration
* ``simple_pyramid_chat`` is a simple chat application built on Pyramid
* ``live_cpu_graph`` is a simple realtime CPU graph (linux only)
* ``twitter_stream`` is a streaming feed of twitter updates
* ``pyramid_backbone_redis_chat`` is a Pyramid app using backbone.js and redis for pubsub
* ``pyramid_backbone_redis_chat_persistence`` is a Pyramid app using backbone.js, redis for pubsub and features persistence
* ``testapp`` is the app we use to test the different features, so there are a couple of more advanced use-cases demonstrated there
``pyvore`` is an application that was developed to serve as real-time
chat in conferences like the PyCon:
https://github.com/sontek/pyvore
This app is a Django tic-tac-toe application that uses the latest
``gevent-socketio``:
https://github.com/sontek/django-tictactoe
Security
--------
``gevent-socketio`` provides method-level security, using an ACL
model. You can read more about it in the :ref:`namespace_module`, but
a basic example to secure one namespace would look like:
.. code-block:: python
class AdminInterface(BaseNamespace):
def get_initial_acl(self):
"""Everything is locked at first"""
return []
def initialize(self):
# This here assumes you have passed in a `request`
# to your socketio_manage() call, it has that
# `is_admin` attribute
if not request.is_admin:
return
else:
self.lift_acl_restrictions()
def on_blahblahblah(self, data):
"""This can't be access until `lift_acl_restrictions()` has
been called
"""
pass
API docs
--------
API documentation is where most of the juice/meat is. Read through
and you'll (hopefully) understand everything you need about
``gevent-socketio``.
The manager is the function you call from your framework. It is in:
:mod:`socketio`
**Namespaces** are the main interface the developer is going to use.
You mostly define your own BaseNamespace derivatives, and
gevent-socketio maps the incoming messages to your methods
automatically:
:mod:`socketio.namespace`
**Mixins** are components you can add to your namespaces, to provided
added functionality.
:mod:`socketio.mixins`
**Sockets** are the virtual tunnels that are established and
abstracted by the different Transports. They basically expose
socket-like send/receive functionality to the Namespace objects. Even
when we use long-polling transports, only one Socket is created per
browser.
:mod:`socketio.virtsocket`
**Packet** is a library that handle the decoding of the messages
encoded in the Socket.IO dialect. They take dictionaries for
encoding, and return decoded dictionaries also.
:mod:`socketio.packet`
**Handler** is a lower-level transports handler. It is responsible
for calling your WSGI application
:mod:`socketio.handler`
**Transports** are responsible for translating the different fallback
mechanisms to one abstracted Socket, dealing with payload encoding,
multi-message multiplexing and their reverse operation.
:mod:`socketio.transports`
**Server** is the component used to hook Gevent and its WSGI server to
the WSGI app to be served, while dispatching any Socket.IO related
activities to the `handler` and the `transports`.
:mod:`socketio.server`
Auto-generated indexes:
* :ref:`genindex`
* :ref:`modindex`
References
----------
LearnBoost's node.js version is the reference implementation, you can
find the server component at this address:
https://github.com/learnboost/socket.io
The client JavaScript library's development branch is here:
https://github.com/LearnBoost/socket.io-client
The specifications to the protocol are somehow in this repository:
https://github.com/LearnBoost/socket.io-spec
This is the original wow-website:
http://socket.io
Here is a list of the different frameworks integration to date,
although not all have upgraded to the latest version of
gevent-socketio:
* pyramid_socketio: https://github.com/abourget/pyramid_socketio
* django-socketio: https://github.com/stephenmcd/django-socketio
The Flask guys will be working on an integration layer soon.
Contacts
--------
For any questions, you can use the Issue tracking at Github:
https://github.com/abourget/gevent-socketio
https://github.com/abourget/gevent-socketio/issues
The mailing list:
https://groups.google.com/forum/#!forum/gevent-socketio
The maintainers:
https://twitter.com/bourgetalexndre
https://twitter.com/sontek
Credits
-------
**Jeffrey Gellens** for starting and polishing this project over the years.
PyCon 2012 and the Sprints, for bringing this project up to version
0.9 of the protocol.
Current maintainers:
* Alexandre Bourget
* John Anderson
Contributors:
* Denis Bilenko
* Bobby Powers
* Lon Ingram
* Eugene Baumstein
* Sébastien Béal
* jpellerin (JP)
* Philip Neustrom
* Jonas Obrist
* fabiodive
* Dan O'Neill
* Whit Morriss
* Chakib (spike) Benziane
* Vivek Venugopalan
* Vladimir Protasov
* Bruno Bigras
* Gabriel de Labacheliere
* Flavio Curella
* thapar
* Marconi Moreto
* sv1jsb
* Cliff Xuan
* Matt Billenstein
* Rolo
* Anthony Oliver
* Pierre Giraud
* m0sth8
* Daniel Swarbrick
TODO
----
How to integrate your framework's "session" object (Beaker, memcached, or file-based). Beware: this can be tricky. You need to manage that yourself.
|