/[meteor]/googlecode.com/svn/trunk/public_html/meteor.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /googlecode.com/svn/trunk/public_html/meteor.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 20 by andrew.betts, Sat May 5 15:04:41 2007 UTC revision 53 by andrew.betts, Wed Feb 27 21:58:56 2008 UTC
# Line 1  Line 1 
1  // Set domain at highest level  /*
2  var domainparts = document.domain.split(".");  stream: xhrinteractive, iframe, serversent
3  document.domain = domainparts[domainparts.length-2]+"."+domainparts[domainparts.length-1];  longpoll
4    smartpoll
5  Function.prototype.bind = function(obj) {  simplepoll
6          var method = this,  */
7          temp = function() {  
8                  return method.apply(obj, arguments);  Meteor = {
9          };  
10          return temp;          callbacks: {
11  }                  process: function() {},
12  Function.prototype.andThen=function(g) {                  reset: function() {},
13          var f=this;                  eof: function() {},
14          var a=this.arguments                  statuschanged: function() {},
15          return function(args) {                  changemode: function() {}
16                  f(a);g(args);          },
17          }          channelcount: 0,
18  };          channels: {},
19            debugmode: false,
20  function Meteor(instID) {          frameref: null,
21            host: null,
22          this.transferDoc = false;          hostid: null,
23          this.pingtimer = false;          maxpollfreq: 60000,
24          this.updatepollfreqtimer = false;          minpollfreq: 2000,
25          this.lastrequest = 0;          mode: "stream",
26          this.recvtimes = [];          pingtimeout: 20000,
27          this.MHostId = false;          pingtimer: null,
28          this.callback_process = function() {};          pollfreq: 3000,
29          this.callback_reset = function() {};          port: 80,
30          this.callback_eof = function() {};          polltimeout: 30000,
31          this.callback_changemode = function() {};          recvtimes: [],
32          this.callback_statuschanged = function() {};          status: 0,
33          this.persist = true;          updatepollfreqtimer: null,
34          this.frameloadtimer = false;  
35          this.debugmode = false;          register: function(ifr) {
36          this.subsurl = false;                  ifr.p = Meteor.process;
37          this.channels = {};                  ifr.r = Meteor.reset;
38                    ifr.eof = Meteor.eof;
39          // Documented public properties                  ifr.ch = Meteor.channelInfo;
40          this.subdomain = "data";                  clearTimeout(Meteor.frameloadtimer);
41          this.dynamicpageaddress = "push";                  Meteor.setstatus(4);
42          this.smartpoll = true;                  Meteor.log("Frame registered");
43          this.pollfreq = 2000;          },
44          this.minpollfreq = 2000;  
45          this.mode = "poll";          joinChannel: function(channelname, backtrack) {
46          this.polltimeout=30000;                  if (typeof(Meteor.channels[channelname]) != "undefined") throw "Cannot join channel "+channelname+": already subscribed";
47          this.pingtimeout = 10000;                  Meteor.channels[channelname] = {backtrack:backtrack, lastmsgreceived:0};
48          this.maxmessages = 0;                  Meteor.log("Joined channel "+channelname);
49          this.status = 0;                  Meteor.channelcount++;
50                    if (Meteor.status != 0) Meteor.connect();
51          /* Statuses:    0 = Uninitialised,          },
52                                          1 = Loading stream,  
53                                          2 = Loading controller frame,          leaveChannel: function(channelname) {
54                                          3 = Controller frame timeout, retrying.                  if (typeof(Meteor.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";
55                                          4 = Controller frame loaded and ready                  delete Meteor.channels[channelname];
56                                          5 = Receiving data                  Meteor.log("Left channel "+channelname);
57          */                  if (Meteor.status != 0) Meteor.connect();
58                    Meteor.channelcount--;
59          this.instID = (typeof(instID) != "undefined") ? instID : 0;          },
60          this.MHostId = Math.floor(Math.random()*100000000)+""+this.instID;  
61  }          connect: function() {
62                    Meteor.log("Connecting");
63  Meteor.instances = new Array();                  if (!Meteor.host) throw "Meteor host not specified";
64                    if (isNaN(Meteor.port)) throw "Meteor port not specified";
65  Meteor.create = function(instID) {                  if (!Meteor.channelcount) throw "No channels specified";
66          if (!instID) instID = Meteor.instances.length;                  if (Meteor.status) Meteor.disconnect();
67          Meteor.instances[instID] = new Meteor(instID);                  Meteor.setstatus(1);
68          return Meteor.instances[instID];                  var now = new Date();
69  }                  var t = now.getTime();
70                    if (!Meteor.hostid) Meteor.hostid = t+""+Math.floor(Math.random()*1000000)
71  Meteor.register = function(ifr) {                  document.domain = Meteor.extract_xss_domain(document.domain);
72          instid = new String(ifr.window.frameElement.id);                  if (Meteor.mode=="stream") Meteor.mode = Meteor.selectStreamTransport();
73          instid = instid.replace(/.*_([0-9]*)$/, "$1");                  Meteor.log("Selected "+Meteor.mode+" transport");
74          ifr.p = this.instances[instid].process.bind(this.instances[instid]);                  if (Meteor.mode=="xhrinteractive" || Meteor.mode=="iframe" || Meteor.mode=="serversent") {
75          ifr.r = this.instances[instid].reset.bind(this.instances[instid]);                          if (Meteor.mode == "iframe") {
76          ifr.eof = this.instances[instid].eof.bind(this.instances[instid]);                                  Meteor.loadFrame(Meteor.getSubsUrl());
77          ifr.get = this.instances[instid].get.bind(this.instances[instid]);                          } else {
78          ifr.increasepolldelay = this.instances[instid].increasepolldelay.bind(this.instances[instid]);                                  Meteor.loadFrame("http://"+Meteor.host+((Meteor.port==80)?"":":"+Meteor.port)+"/stream.html");
79          clearTimeout(this.instances[instid].frameloadtimer);                          }
80          this.instances[instid].setstatus(4);                          clearTimeout(Meteor.pingtimer);
81          if (this.debugmode) console.log("Frame registered");                          Meteor.pingtimer = setTimeout(Meteor.pollmode, Meteor.pingtimeout);
82  }  
83                    } else {
84  Meteor.reset = function(ifr) {                          Meteor.loadFrame("http://"+Meteor.host+((Meteor.port==80)?"":":"+Meteor.port)+"/poll.html");
85          instid = new String(ifr.window.frameElement.id);                          Meteor.recvtimes[0] = t;
86          instid = instid.replace(/.*_([0-9]*)$/, "$1");                          if (Meteor.updatepollfreqtimer) clearTimeout(Meteor.updatepollfreqtimer);
87          this.instances[instid].reset();                          if (Meteor.mode=='smartpoll') Meteor.updatepollfreqtimer = setInterval(Meteor.updatepollfreq, 2500);
88  }                          if (Meteor.mode=='longpoll') Meteor.pollfreq = Meteor.minpollfreq;
89                    }
90  Meteor.prototype.joinChannel = function(channelname, backtrack) {                  Meteor.lastrequest = t;
91          if (typeof(this.channels[channelname]) != "undefined") throw "Cannot join channel "+channelname+": already subscribed";          },
92          this.channels[channelname] = {backtrack:backtrack, lastmsgreceived:0};  
93          if (this.debugmode) console.log("Joined channel "+channelname+", channel list follows");          disconnect: function() {
94          if (this.debugmode) console.log(this.channels);                  if (Meteor.status) {
95          if (this.status != 0) this.start();                          clearTimeout(Meteor.pingtimer);
96  }                          clearTimeout(Meteor.updatepollfreqtimer);
97                            clearTimeout(Meteor.frameloadtimer);
98  Meteor.prototype.leaveChannel = function(channelname) {                          if (typeof CollectGarbage == 'function') CollectGarbage();
99          if (typeof(this.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";                          Meteor.setstatus(0);
100          delete this.channels[channelname];                  }
101          if (this.status != 0) this.start();          },
102  }          
103            selectStreamTransport: function() {
104  Meteor.prototype.start = function() {                  try {
105          this.persist = (this.maxmessages)?1:0;                          var test = ActiveXObject;
106          this.smartpoll = (this.smartpoll)?1:0;                          return "iframe";
107          this.mode = (this.mode=="stream")?"stream":"poll";                  } catch (e) {}
108          if (!this.subdomain || this.channels.length) throw "Channel or Meteor subdomain host not specified";                  if ((typeof window.addEventStream) == "function") return "iframe";
109          this.stop();                  return "xhrinteractive";
110          var now = new Date();          },
111          var t = now.getTime();  
112          this.setstatus(1);          getSubsUrl: function() {
113          var surl = "http://" + this.subdomain + "." + location.hostname + "/" + this.dynamicpageaddress + "?id=" + this.MHostId;                  var surl = "http://" + Meteor.host + ((Meteor.port==80)?"":":"+Meteor.port) + "/push/" + Meteor.hostid + "/" + Meteor.mode;
114          if (this.maxmessages && !this.persist) surl += "&maxmessages=" + this.maxmessages;                  for (var c in Meteor.channels) {
115          for (var c in this.channels) {                          surl += "/"+c;
116                  surl += "&channel="+c;                          if (Meteor.channels[c].lastmsgreceived > 0) {
117                  if (this.channels[c].lastmsgreceived >= 0) {                                  surl += ".r"+(Meteor.channels[c].lastmsgreceived+1);
118                          surl += "&restartfrom="+this.channels[c].lastmsgreceived;                          } else if (Meteor.channels[c].backtrack > 0) {
119                  } else if (this.channels[c].backtrack > 0) {                                  surl += ".b"+Meteor.channels[c].backtrack;
120                          surl += "&backtrack="+this.channels[c].backtrack;                          } else if (Meteor.channels[c].backtrack < 0 || isNaN(Meteor.channels[c].backtrack)) {
121                  } else if (this.channels[c].backtrack < 0 || isNaN(this.channels[c].backtrack)) {                                  surl += ".h";
122                          surl += "&restartfrom=";                          }
123                  }                  }
124          }                  return surl;
125          this.subsurl = surl;          },
126          if (this.mode=="stream") {  
127                  this.createIframe(this.subsurl);          loadFrame: function(url) {
128                  var f = this.pollmode.bind(this);                  try {
129                  clearTimeout(this.pingtimer);                          if (!Meteor.frameref) {
130                  this.pingtimer = setTimeout(f, this.pingtimeout);                                  var transferDoc = new ActiveXObject("htmlfile");
131                                    Meteor.frameref = transferDoc;
132          } else {                          }
133                  this.createIframe("http://"+this.subdomain+"."+location.hostname+"/poll.html");                          Meteor.frameref.open();
134                  this.recvtimes[0] = t;                          Meteor.frameref.write("<html><script>");
135                  if (this.updatepollfreqtimer) clearTimeout(this.updatepollfreqtimer);                          Meteor.frameref.write("document.domain=\""+(document.domain)+"\";");
136                  this.updatepollfreqtimer = setInterval(this.updatepollfreq.bind(this), 2500);                          Meteor.frameref.write("</"+"script></html>");
137          }                          Meteor.frameref.parentWindow.Meteor = Meteor;
138          this.lastrequest = t;                          Meteor.frameref.close();
139  }                          var ifrDiv = Meteor.frameref.createElement("div");
140                            Meteor.frameref.appendChild(ifrDiv);
141  Meteor.prototype.createIframe = function(url) {                          ifrDiv.innerHTML = "<iframe src=\""+url+"\"></iframe>";
142          if (document.all) {                  } catch (e) {
143                  this.transferDoc = new ActiveXObject("htmlfile");                          if (!Meteor.frameref) {
144                  this.transferDoc.open();                                  var ifr = document.createElement("IFRAME");
145                  this.transferDoc.write("<html>");                                  ifr.style.width = "10px";
146                  this.transferDoc.write("<script>document.domain=\""+(document.domain)+"\";</"+"script>");                                  ifr.style.height = "10px";
147                  this.transferDoc.write("</html>");                                  ifr.style.border = "none";
148                  this.transferDoc.parentWindow.Meteor = Meteor;                                  ifr.style.position = "absolute";
149                  this.transferDoc.close();                                  ifr.style.top = "-10px";
150                  var ifrDiv = this.transferDoc.createElement("div");                                  ifr.style.marginTop = "-10px";
151                  this.transferDoc.appendChild(ifrDiv);                                  ifr.style.zIndex = "-20";
152                  ifrDiv.innerHTML = "<iframe id=\"meteorframe_"+this.instID+"\" src=\""+url+"\" style=\"display: none;\"></iframe>";                                  ifr.Meteor = Meteor;
153          } else {                                  document.body.appendChild(ifr);
154                  var ifr = document.createElement("IFRAME");                                  Meteor.frameref = ifr;
155                  ifr.style.width = "10px";                          }
156                  ifr.style.height = "10px";                          Meteor.frameref.setAttribute("src", url);
157                  ifr.style.border = "none";                  }
158                  ifr.style.position = "absolute";                  Meteor.log("Loading URL '"+url+"' into frame...");
159                  ifr.style.top = "-10px";                  Meteor.frameloadtimer = setTimeout(Meteor.frameloadtimeout, 5000);
160                  ifr.style.marginTop = "-10px";          },
161                  ifr.style.zIndex = "-20";  
162                  ifr.setAttribute("id", "meteorframe_"+this.instID);          pollmode: function() {
163                  ifr.Meteor = Meteor;                  Meteor.log("Ping timeout");
164                  var innerifr = document.createElement("IFRAME");                  Meteor.mode="smartpoll";
165                  innerifr.setAttribute("src", url);                  clearTimeout(Meteor.pingtimer);
166                  innerifr.setAttribute("id", "meteorinnerframe_"+this.instID);                  Meteor.callbacks["changemode"]("poll");
167                  ifr.appendChild(innerifr);                  Meteor.lastpingtime = false;
168                  document.body.appendChild(ifr);                  Meteor.connect();
169          }          },
170          if (this.debugmode) console.log("Loading URL '"+url+"' into frame...");  
171          var f = this.frameloadtimeout.bind(this);          process: function(id, channel, data) {
172          this.frameloadtimer = setTimeout(f, 5000);                  if (id == -1) {
173  }                          Meteor.log("Ping");
174                            Meteor.ping();
175  Meteor.prototype.stop = function() {                  } else if (typeof(Meteor.channels[channel]) != "undefined") {
176          if (typeof(this.transferDoc)=="object") {                          Meteor.log("Message "+id+" received on channel "+channel+" (last id on channel: "+Meteor.channels[channel].lastmsgreceived+")\n"+data);
177                  this.transferDoc = false;                          Meteor.callbacks["process"](data);
178          }                          Meteor.channels[channel].lastmsgreceived = id;
179          if (document.getElementById("meteorframe_"+this.instID)) {                          if (Meteor.mode=="smartpoll") {
180                  document.getElementById("meteorframe_"+this.instID).src="about:blank";                                  var now = new Date();
181                  document.body.removeChild(document.getElementById("meteorframe_"+this.instID));                                  Meteor.recvtimes[Meteor.recvtimes.length] = now.getTime();
182          }                                  while (Meteor.recvtimes.length > 5) Meteor.recvtimes.shift();
183          if (!isNaN(this.pingtimer)) clearTimeout(this.pingtimer);                          }
184          if (!isNaN(this.updatepollfreqtimer)) clearTimeout(this.updatepollfreqtimer);                  }
185          if (!isNaN(this.frameloadtimer)) clearTimeout(this.frameloadtimer);                  Meteor.setstatus(5);
186          this.setstatus(0);          },
187  }  
188            ping: function() {
189  Meteor.prototype.pollmode = function() {                  if (Meteor.pingtimer) {
190          if (this.debugmode) console.log("Ping timeout");                          clearTimeout(Meteor.pingtimer);
191          this.mode="poll";                          Meteor.pingtimer = setTimeout(Meteor.pollmode, Meteor.pingtimeout);
192          this.start();                          var now = new Date();
193          this.callback_changemode("poll");                          Meteor.lastpingtime = now.getTime();
194          this.lastpingtime = false;                  }
195  }                  Meteor.setstatus(5);
196            },
197  Meteor.prototype.process = function(id, channel, data) {  
198          if (id == -1) {          reset: function() {
199                  if (this.debugmode) console.log("Ping");                  Meteor.log("Stream reset");
200                  this.ping();                  Meteor.ping();
201          } else if (typeof(this.channels[channel]) != "undefined" && id > this.channels[channel].lastmsgreceived) {                  Meteor.callbacks["reset"]();
202                  if (this.debugmode) console.log("Message "+id+" received on channel "+channel+" (last id on channel: "+this.channels[channel].lastmsgreceived+")\n"+data);                  var now = new Date();
203                  this.callback_process(data);                  var t = now.getTime();
204                  this.channels[channel].lastmsgreceived = id;                  var x = Meteor.pollfreq - (t-Meteor.lastrequest);
205                  if (this.mode=="poll") {                  if (x < 10) x = 10;
206                          var now = new Date();                  setTimeout(Meteor.connect, x);
207                          var t = now.getTime();          },
208                          this.recvtimes[this.recvtimes.length] = t;  
209                          while (this.recvtimes.length > 5) this.recvtimes.shift();          eof: function() {
210                  }                  Meteor.callbacks["eof"]();
211          }                  Meteor.disconnect();
212          this.setstatus(5);          },
213  }  
214            channelInfo: function(channel, id) {
215  Meteor.prototype.ping = function() {                  Meteor.channels[channel].lastmsgreceived = id;
216          if (this.mode=="stream" && this.pingtimer) {                  Meteor.log("Received channel info for channel "+channel+": resume from "+id);
217                  clearTimeout(this.pingtimer);          },
218                  var f = this.pollmode.bind(this);  
219                  this.pingtimer = setTimeout(f, this.pingtimeout);          updatepollfreq: function() {
220                  var now = new Date();                  var now = new Date();
221                  this.lastpingtime = now.getTime();                  var t = now.getTime();
222          }                  var avg = 0;
223          this.setstatus(5);                  for (var i=1; i<Meteor.recvtimes.length; i++) {
224  }                          avg += (Meteor.recvtimes[i]-Meteor.recvtimes[i-1]);
225                    }
226  Meteor.prototype.reset = function() {                  avg += (t-Meteor.recvtimes[Meteor.recvtimes.length-1]);
227          if (this.debugmode) console.log("Stream reset");                  avg /= Meteor.recvtimes.length;
228          var now = new Date();                  var target = avg/2;
229          var t = now.getTime();                  if (target < Meteor.pollfreq && Meteor.pollfreq > Meteor.minpollfreq) Meteor.pollfreq = Math.ceil(Meteor.pollfreq*0.9);
230          var x = this.pollfreq - (t-this.lastrequest);                  if (target > Meteor.pollfreq && Meteor.pollfreq < Meteor.maxpollfreq) Meteor.pollfreq = Math.floor(Meteor.pollfreq*1.05);
231          if (x < 10) x = 10;          },
232          this.ping();  
233          this.callback_reset();          registerEventCallback: function(evt, funcRef) {
234          setTimeout(this.start.bind(this), x);                  Function.prototype.andThen=function(g) {
235  }                          var f=this;
236                            var a=Meteor.arguments
237  Meteor.prototype.eof = function() {                          return function(args) {
238          this.callback_eof();                                  f(a);g(args);
239  }                          }
240                    };
241  Meteor.prototype.get = function(varname) {                  if (typeof Meteor.callbacks[evt] == "function") {
242          eval("var a = this."+varname+";");                          Meteor.callbacks[evt] = (Meteor.callbacks[evt]).andThen(funcRef);
243          if (typeof(a) == "undefined") throw "Cannot get value of "+varname;                  } else {
244          return a;                          Meteor.callbacks[evt] = funcRef;
245  }                  }
246            },
247  Meteor.prototype.increasepolldelay = function() {  
248          this.pollfreq *= 2;          frameloadtimeout: function() {
249  }                  Meteor.log("Frame load timeout");
250                    if (Meteor.frameloadtimer) clearTimeout(Meteor.frameloadtimer);
251  Meteor.prototype.updatepollfreq = function() {                  Meteor.setstatus(3);
252          if (this.smartpoll) {                  Meteor.pollmode();
253                  var now = new Date();          },
254                  var t = now.getTime();  
255                  var avg = 0;          extract_xss_domain: function(old_domain) {
256                  for (var i=1; i<this.recvtimes.length; i++) {                  if (old_domain.match(/^(\d{1,3}\.){3}\d{1,3}$/)) return old_domain;
257                          var x = (this.recvtimes[i]-this.recvtimes[i-1]);                  domain_pieces = old_domain.split('.');
258                          avg += (x>60000)? 60000 : x;                  return domain_pieces.slice(-2, domain_pieces.length).join(".");
259                  }          },
260                  x = (t-this.recvtimes[this.recvtimes.length-1]);  
261                  avg += (x>180000)? 180000 : x;          setstatus: function(newstatus) {
262                  avg /= this.recvtimes.length;                  // Statuses:    0 = Uninitialised,
263                  if ((avg/3) < this.pollfreq && (avg/3) >= this.minpollfreq) this.pollfreq = Math.ceil(this.pollfreq*0.9);                  //                              1 = Loading stream,
264                  if ((avg/3) > this.pollfreq) this.pollfreq = Math.floor(this.pollfreq*1.05);                  //                              2 = Loading controller frame,
265          }                  //                              3 = Controller frame timeout, retrying.
266  }                  //                              4 = Controller frame loaded and ready
267                    //                              5 = Receiving data
268  Meteor.prototype.registerEventCallback = function(evt, funcRef) {  
269          if (evt=="process") {                  if (Meteor.status != newstatus) {
270                  this.callback_process = (this.callback_process).andThen(funcRef);                          Meteor.status = newstatus;
271          } else if (evt=="reset") {                          Meteor.callbacks["statuschanged"](newstatus);
272                  this.callback_reset = (this.callback_reset).andThen(funcRef);                  }
273          } else if (evt=="eof") {          },
274                  this.callback_eof = (this.callback_eof).andThen(funcRef);  
275          } else if (evt=="changemode") {          log: function(logstr) {
276                  this.callback_changemode = (this.callback_changemode).andThen(funcRef);                  if (Meteor.debugmode) {
277          } else if (evt=="changestatus") {                          if (window.console) {
278                  this.callback_statuschanged = (this.callback_statuschanged).andThen(funcRef);                                  window.console.log(logstr);
279          }                          } else if (document.getElementById("meteorlogoutput")) {
280  }                                  document.getElementById("meteorlogoutput").innerHTML += logstr+"<br/>";
281                            }
282  Meteor.prototype.frameloadtimeout = function() {                  }
283          if (this.debugmode) console.log("Frame load timeout");          }
284          if (this.frameloadtimer) clearTimeout(this.frameloadtimer);  }
285          this.setstatus(3);  
286          setTimeout(this.start.bind(this), 5000);  var oldonunload = window.onunload;
287  }  if (typeof window.onunload != 'function') {
288  Meteor.prototype.setstatus = function(newstatus) {          window.onunload = Meteor.disconnect;
289          if (this.status != newstatus) {  } else {
290                  this.status = newstatus;          window.onunload = function() {
291                  this.callback_statuschanged(newstatus);                  if (oldonunload) oldonunload();
292          }                  Meteor.disconnect();
293  }          }
   
 Meteor.createCookie = function(name,value,days) {  
         if (days) {  
                 var date = new Date();  
                 date.setTime(date.getTime()+(days*24*60*60*1000));  
                 var expires = "; expires="+date.toGMTString();  
         }  
         else var expires = "";  
         document.cookie = name+"="+value+expires+"; path=/";  
 }  
   
 Meteor.readCookie = function(name) {  
         var nameEQ = name + "=";  
         var ca = document.cookie.split(';');  
         for(var i=0;i < ca.length;i++) {  
                 var c = ca[i];  
                 while (c.charAt(0)==' ') c = c.substring(1,c.length);  
                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);  
         }  
         return null;  
 }  
   
 Meteor.eraseCookie = function(name) {  
         createCookie(name,"",-1);  
294  }  }

Legend:
Removed from v.20  
changed lines
  Added in v.53

  ViewVC Help
Powered by ViewVC 1.1.26