Parente's Mindtrove

Introducing the OpenCoweb Project

April 25, 2011

I've been part of a project at IBM since 2007, exploring what our team calls cooperative web concepts: multi-user interaction and audio/video conferencing within web applications. In January, IBM approved our team's proposal to release a portion of this work as the Open Cooperative Web Framework, or OpenCoweb for short. This release features a JavaScript API for adding lock-free, concurrent editing to new or existing web applications. The keystone in the framework is an operational transformation (OT) algorithm that guarantees all users converge to the same shared state.

Applying OT

Operational transformation is most often associated with collaborative text editors in which all users can make changes to the document at the same time. While text-editing was the original embodiment of OT, and is certainly still a great application of the technique, operational transformation can prove useful in other domains. Consider some sample cooperative web applications in which:

All of these applications require some form of consistency-maintenance to ensure remote instances do not get out-of-sync. OT can fill this role without the need for pessimistic locks or sluggish server acknowledgements that can hamper cooperation. For example, OT can allow both the realtor and buyer to simultaneously create and sort a list of interesting properties to visit without forced turn-taking or "click-to-edit" controls.

The OpenCoweb framework enables OT in any application domain as long as the application adheres to a few simple rules. For example, the triage app noted above would need to indicate the assignment of a label to a bug as an "insert" type event and the removal of a label as a "delete". In return, the framework algorithm would guarantee all users end up seeing the same set of labels on the bug, even in the face of simultaneous, conflicting label changes by multiple users.

Design and implementation

From the outset, we attempted to design OpenCoweb to be a small, unobtrusive framework. The JavaScript API exists as a set of modules in AMD format for cross-toolkit compatibility. An application uses the API to join cooperative sessions and transmit events while the framework worries about transforming events for convergence and inbound/outbound event delivery.

The two server implementations, one in Java using CometD and the other in Python on Tornado, are simple event relays that work out-of-the-box or can be extended to dictate access control, provide additional services, and so on. The OpenCoweb protocol between the framework JavaScript and server of choice is defined as an extension to Bayeux with either a comet long-polling technique or a WebSocket providing the transport underneath. Again, a web application developer need not worry about these details in most cases. Nevertheless, the framework can support new server implementations (e.g. on Node) and even other protocols (e.g., socket.io) if so desired.

For more information

The project home page, developer documentation, and README on GitHub have plenty of additional details about OpenCoweb. I believe the treatment of OT in our docs is very accessible for those seeking a gentle introduction to the topic. At the same time, I think our framework is well suited to those wanting to reap the benefits of OT without worrying much about its specifics, as evidenced by our step-by-step tutorial.

If you'd like to get involved, subscribe to our our Google Group, join our #coweb channel on Freenode, or fork our code and send pull requests on GitHub.

Another Read: Activating a virtualenv in supervisord »

Here's a little script I started using today to activate a virtualenv, run a command in it, then deactivate the environment.