How does the live, real-time typing work in Google Wave?

旧城冷巷雨未停 提交于 2019-12-02 14:30:21

Persistent HTTP, Comet

Keep your HTTP connection alive and send characters as they are typed

*Edit in 2014: also, take a look at WebSocket and HTTP/1.1 Upgrade header. Browsers started implementing this around 2010, so I'm adding this to original answer.

They probably use Web Sockets, aka server-sent events: http://www.w3.org/TR/websockets The underlying protocol can be found (as a draft) at the IETF.

Update: it doesn't seem WebSockets has any implementation yet; and a video from Google I/O (go to 11:00) talks about a long lived HTTP GET request.

Server Push in GWT

Server push is the Wait, Respond, Close, Re-Open paradigm:

  • Wait: When the GWT code makes a call to your server for some data that you don't have yet, freeze (wait)

  • Respond: Once the requested data is
    available, respond with it

  • Close: Then, close the connection.

  • Re-Open: Once your GWT code receives the response, immediately open up a new connection to query for the next event.

See Video Google Wave: Powered by GWT around at minute 55 (near the end)

Q: How you implement the persistent Connections, the long living http connections

A: Future Plan: HTML5 Web Sockets. Longer term. That's what we use at the moment.

Q: Is there a platform or library for this we can download and play with?

A: Not sure. Don't think so

P.S.: That's what he said. To me it did not make much sense ("future plans" vs "using at the moment"). Any native english speaker might want to verify if I transcribed it correctly?

Pure speculation but could it be using the Server Side DOM events from the HTML 5 spec?

the entire reason for WebSockets is to have the browser keep a bi-directional socket open to a server so that real time communications can be used. When someone types on the other end, in a wave client, it triggers an event that is sent to the server and the server in turn looks to see who should also receive the event and pass them the event, in this case the typed letter.

WebSocket and Comet are different.

Granville

Probably comet for now websocket in the future. Because it works in Firefox 3.5 and from what I've read the websocket is only available in the nightly builds of FF... I could be wrong though... as it appears to not work in IE at all.

I spent some time reverse-engineering the Google Wave client code (shameless plug for http://antimatter15.com/misc/read/ which is a read-only public client for google wave for all public waves without need of robots or gadgets which was a lot more useful a month ago when Google didn't launch the upgrades).

Anyway, Google uses the GWT framework with certain aspects of the Google Closure library (which is actually open source and documented) and they use the goog.net.BrowserChannel library, which from the comments is also used for chat functionality within gmail.

http://closure-library.googlecode.com/svn/docs/closure_goog_net_browserchannel.js.html

I would assume that they use ajax requests. Do an XMLHttpRequest, which is asynchronous, and when the server has something to send your browser the javascript callback that was registered gets the data and does whatever with it. So basically the browser requests the next event, handles it, repeats indefinitely.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!