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

Legend:
Removed from v.18  
changed lines
  Added in v.39

  ViewVC Help
Powered by ViewVC 1.1.26