/[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 27 by andrew.betts, Wed Aug 1 17:38:00 2007 UTC
# Line 30  function Meteor(instID) { Line 30  function Meteor(instID) {
30          this.callback_eof = function() {};          this.callback_eof = function() {};
31          this.callback_changemode = function() {};          this.callback_changemode = function() {};
32          this.callback_statuschanged = function() {};          this.callback_statuschanged = function() {};
33          this.persist = true;          this.persist = 1;
34          this.frameloadtimer = false;          this.frameloadtimer = false;
35          this.debugmode = false;          this.debugmode = false;
36          this.subsurl = false;          this.subsurl = false;
37          this.channels = {};          this.channels = {};
38            this.channelcount = 0;
39            this.streamreq = false;
40            this.byteoffset = 0;
41    
42          // Documented public properties          // Documented public properties
43          this.subdomain = "data";          this.subdomain = "data";
44          this.dynamicpageaddress = "push";          this.dynamicpageaddress = "push";
45          this.smartpoll = true;          this.smartpoll = 1;
46          this.pollfreq = 2000;          this.pollfreq = 2000;
47          this.minpollfreq = 2000;          this.minpollfreq = 2000;
48          this.mode = "poll";          this.mode = "stream";
49          this.polltimeout=30000;          this.polltimeout = 30000;
50          this.pingtimeout = 10000;          this.pingtimeout = 10000;
51          this.maxmessages = 0;          this.maxmessages = 0;
52          this.status = 0;          this.status = 0;
# Line 93  Meteor.prototype.joinChannel = function( Line 96  Meteor.prototype.joinChannel = function(
96          if (this.debugmode) console.log("Joined channel "+channelname+", channel list follows");          if (this.debugmode) console.log("Joined channel "+channelname+", channel list follows");
97          if (this.debugmode) console.log(this.channels);          if (this.debugmode) console.log(this.channels);
98          if (this.status != 0) this.start();          if (this.status != 0) this.start();
99            this.channelcount++;
100  }  }
101    
102  Meteor.prototype.leaveChannel = function(channelname) {  Meteor.prototype.leaveChannel = function(channelname) {
103          if (typeof(this.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";          if (typeof(this.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";
104          delete this.channels[channelname];          delete this.channels[channelname];
105          if (this.status != 0) this.start();          if (this.status != 0) this.start();
106            this.channelcount--;
107  }  }
108    
109  Meteor.prototype.start = function() {  Meteor.prototype.start = function() {
110          this.persist = (this.maxmessages)?1:0;          this.persist = (this.persist)?1:0;
111          this.smartpoll = (this.smartpoll)?1:0;          this.smartpoll = (this.smartpoll)?1:0;
112          this.mode = (this.mode=="stream")?"stream":"poll";          this.mode = (this.mode=="stream")?"stream":"poll";
113          if (!this.subdomain || this.channels.length) throw "Channel or Meteor subdomain host not specified";          if (!this.subdomain || !this.channelcount) throw "Channel or Meteor subdomain host not specified";
114          this.stop();          this.stop();
115          var now = new Date();          var now = new Date();
116          var t = now.getTime();          var t = now.getTime();
117          this.setstatus(1);          this.setstatus(1);
118          var surl = "http://" + this.subdomain + "." + location.hostname + "/" + this.dynamicpageaddress + "?id=" + this.MHostId;          this.updateSubsUrl();
         if (this.maxmessages && !this.persist) surl += "&maxmessages=" + this.maxmessages;  
         for (var c in this.channels) {  
                 surl += "&channel="+c;  
                 if (this.channels[c].lastmsgreceived >= 0) {  
                         surl += "&restartfrom="+this.channels[c].lastmsgreceived;  
                 } else if (this.channels[c].backtrack > 0) {  
                         surl += "&backtrack="+this.channels[c].backtrack;  
                 } else if (this.channels[c].backtrack < 0 || isNaN(this.channels[c].backtrack)) {  
                         surl += "&restartfrom=";  
                 }  
         }  
         this.subsurl = surl;  
119          if (this.mode=="stream") {          if (this.mode=="stream") {
120                  this.createIframe(this.subsurl);                  if (document.all) {
121                            this.createIframe(this.subsurl);
122                    } else {
123                            this.createIframe("http://"+this.subdomain+"."+location.hostname+"/stream.html");
124                    }
125                  var f = this.pollmode.bind(this);                  var f = this.pollmode.bind(this);
126                  clearTimeout(this.pingtimer);                  clearTimeout(this.pingtimer);
127                  this.pingtimer = setTimeout(f, this.pingtimeout);                  this.pingtimer = setTimeout(f, this.pingtimeout);
128    
129          } else {          } else {
130                  this.createIframe("http://"+this.subdomain+"."+location.hostname+"/poll.html");                  this.createIframe("http://"+this.subdomain+"."+location.hostname+"/poll.html?nc="+t);
131                  this.recvtimes[0] = t;                  this.recvtimes[0] = t;
132                  if (this.updatepollfreqtimer) clearTimeout(this.updatepollfreqtimer);                  if (this.updatepollfreqtimer) clearTimeout(this.updatepollfreqtimer);
133                  this.updatepollfreqtimer = setInterval(this.updatepollfreq.bind(this), 2500);                  this.updatepollfreqtimer = setInterval(this.updatepollfreq.bind(this), 2500);
# Line 138  Meteor.prototype.start = function() { Line 135  Meteor.prototype.start = function() {
135          this.lastrequest = t;          this.lastrequest = t;
136  }  }
137    
138    Meteor.prototype.updateSubsUrl = function() {
139    
140            // If streaming or long polling, connection should persist
141            this.persist = (this.mode == "stream" || (this.mode=='poll' && this.maxmessages > 0)) ? 1 : 0;
142            var surl = "http://" + this.subdomain + "." + location.hostname + "/" + this.dynamicpageaddress + "?id=" + this.MHostId;
143            if (this.persist && this.mode != "stream") surl += "&maxmessages=" + this.maxmessages;
144            surl += "&persist="+this.persist;
145            for (var c in this.channels) {
146                    surl += "&channel="+c;
147                    if (this.channels[c].lastmsgreceived > 0) {
148                            surl += "&restartfrom="+(this.channels[c].lastmsgreceived+1);
149                    } else if (this.channels[c].backtrack > 0) {
150                            surl += "&backtrack="+this.channels[c].backtrack;
151                    } else if (this.channels[c].backtrack < 0 || isNaN(this.channels[c].backtrack)) {
152                            surl += "&restartfrom=";
153                    }
154            }
155            this.subsurl = surl;
156    }
157    
158  Meteor.prototype.createIframe = function(url) {  Meteor.prototype.createIframe = function(url) {
159          if (document.all) {          delete this.transferDoc;
160            if (document.all) try { this.transferDoc = new ActiveXObject("htmlfile") } catch(ex) { this.transferDoc = null }
161            if (document.all && this.transferDoc) {
162                  this.transferDoc = new ActiveXObject("htmlfile");                  this.transferDoc = new ActiveXObject("htmlfile");
163                  this.transferDoc.open();                  this.transferDoc.open();
164                  this.transferDoc.write("<html>");                  this.transferDoc.write("<html>");
# Line 161  Meteor.prototype.createIframe = function Line 180  Meteor.prototype.createIframe = function
180                  ifr.style.zIndex = "-20";                  ifr.style.zIndex = "-20";
181                  ifr.setAttribute("id", "meteorframe_"+this.instID);                  ifr.setAttribute("id", "meteorframe_"+this.instID);
182                  ifr.Meteor = Meteor;                  ifr.Meteor = Meteor;
183                  var innerifr = document.createElement("IFRAME");                  if (document.compatMode=='CSS1Compat') {
184                  innerifr.setAttribute("src", url);                          var innerifr = document.createElement("IFRAME");
185                  innerifr.setAttribute("id", "meteorinnerframe_"+this.instID);                          innerifr.setAttribute("src", url);
186                  ifr.appendChild(innerifr);                          innerifr.setAttribute("id", "meteorinnerframe_"+this.instID);
187                  document.body.appendChild(ifr);                          ifr.appendChild(innerifr);
188                            document.body.appendChild(ifr);
189                    } else {
190                            ifr.setAttribute("src", url);
191                            document.body.appendChild(ifr);
192                    }
193          }          }
194          if (this.debugmode) console.log("Loading URL '"+url+"' into frame...");          if (this.debugmode) console.log("Loading URL '"+url+"' into frame...");
195          var f = this.frameloadtimeout.bind(this);          var f = this.frameloadtimeout.bind(this);
# Line 180  Meteor.prototype.stop = function() { Line 204  Meteor.prototype.stop = function() {
204                  document.getElementById("meteorframe_"+this.instID).src="about:blank";                  document.getElementById("meteorframe_"+this.instID).src="about:blank";
205                  document.body.removeChild(document.getElementById("meteorframe_"+this.instID));                  document.body.removeChild(document.getElementById("meteorframe_"+this.instID));
206          }          }
207          if (!isNaN(this.pingtimer)) clearTimeout(this.pingtimer);          clearTimeout(this.pingtimer);
208          if (!isNaN(this.updatepollfreqtimer)) clearTimeout(this.updatepollfreqtimer);          clearTimeout(this.updatepollfreqtimer);
209          if (!isNaN(this.frameloadtimer)) clearTimeout(this.frameloadtimer);          clearTimeout(this.frameloadtimer);
210          this.setstatus(0);          this.setstatus(0);
211  }  }
212    
# Line 209  Meteor.prototype.process = function(id, Line 233  Meteor.prototype.process = function(id,
233                          while (this.recvtimes.length > 5) this.recvtimes.shift();                          while (this.recvtimes.length > 5) this.recvtimes.shift();
234                  }                  }
235          }          }
236            this.updateSubsUrl();
237          this.setstatus(5);          this.setstatus(5);
238  }  }
239    
# Line 292  Meteor.prototype.setstatus = function(ne Line 317  Meteor.prototype.setstatus = function(ne
317          }          }
318  }  }
319    
320    
321  Meteor.createCookie = function(name,value,days) {  Meteor.createCookie = function(name,value,days) {
322          if (days) {          if (days) {
323                  var date = new Date();                  var date = new Date();
# Line 315  Meteor.readCookie = function(name) { Line 341  Meteor.readCookie = function(name) {
341    
342  Meteor.eraseCookie = function(name) {  Meteor.eraseCookie = function(name) {
343          createCookie(name,"",-1);          createCookie(name,"",-1);
 }  
344    }

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

  ViewVC Help
Powered by ViewVC 1.1.26