Making moves w/ websockets and python / django ( / twisted? )

I’m the author of django-websocket. I’m not a real expert in the topic of websockets and networking, however I think I have a decent understanding of whats going on. Sorry for going into great detail. Even if most of the answer isn’t specific to your question it might help you at some other point. 🙂


How websockets work

Let me explain shortly what a websocket is. A websocket starts as something that really looks like a plain HTTP request, established from the browser. It indicates through a HTTP header that it wants to “upgrade” the protocol to be a websocket instead of a HTTP request. If the server supports websockets, it agrees on the handshake and both – server and client – now know that they will use the established tcp socket formerly used for the HTTP request as a connection to interchange websocket messages.

Beside sending and waiting for messages, they have also of course the ability to close the connection at any time.

How django-websocket abuses the python’s wsgi request environment to hijack the socket

Now lets get into the details of how django-websocket implements the “upgrading” of the HTTP request in a django request-response cylce.

Django usually uses the WSGI specification to talk to the webserver like apache or gunicorn etc. This specification was designed just with the very limited communication model of HTTP in mind. It assumes that it gets a HTTP request (only incoming data) and returns the response (only outgoing data). This makes it tricky to force django into the concept of a websocket where bidirectional communication is allowed.

What I’m doing in django-websocket to achieve this is that I dig very deeply into the internals of WSGI and django’s request object to retrieve the underlaying socket. This tcp socket is then used to handle the upgrade the HTTP request to a websocket instance directly.

Now to your original question …

I hope the above makes it obvious that when a websocket is established, there is no point in returning a HttpResponse. This is why you usually don’t return anything in a view that is handled by django-websocket.

However I wanted to stick close to the concept of a view that holds the logic and returns data based on the input. This is why you should only use the code in your view to handle the websocket.

After you return from the view, the websocket is automatically closed. This is done for a reason: We don’t want to keep the socket open for an undefined amount of time and relying on the client (the browser) to close it.

This is why you cannot access a websocket with django-websocket outside of your view. The file descriptor is then of course set to -1 indicating that its already closed.

Disclaimer

I explained above that I’m digging in the surrounding environment of django to get somehow — in a very hackish way — access to the underlaying socket. This is very fragile and also not supposed to work since WSGI is not designed for this! I also explained above that the websocket is closed after the view ends – however after the websocket closed down (AND closed the tcp socket), django’s WSGI implementation tries to send a HTTP response – it doesn’t know about websockets and thinks it is in a normal HTTP request-response cycle. But the socket is already closed an the sending will fail. This usually causes an exception in django.

This didn’t affected my testings with the development server. The browser will never notice (you know .. the socket is already closed 😉 – but raising an unhandled error in every request is not a very good concept and may leak memory, doesn’t handle database connection shutdown correctly and many athor things that will break at some point if you use django-websocket for more than experimenting.

This is why I would really advise you not to use websockets with django yet. It doesn’t work by design. Django and especially WSGI would need a total overhaul to solve these problems (see this discussion for websockets and WSGI). Since then I would suggest using something like eventlet. Eventlet has a working websocket implementation (I borrowed some code from eventlet for the initial version of django-websocket) and since its just plain python code you can import your models and everything else from django. The only drawback is that you need a second webserver running just to handle websockets.

Leave a Comment