/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 26 - (hide annotations)
Mon Jun 25 10:37:57 2007 UTC (16 years, 10 months ago) by andrew.betts
File MIME type: application/javascript
File size: 11090 byte(s)
Resynced meteor.js defaults with documented values.
Removed wierdness in Meteor.js subsurl
Updated defaults in Config.
 

1 andrew.betts 6 // Set domain at highest level
2     var domainparts = document.domain.split(".");
3     document.domain = domainparts[domainparts.length-2]+"."+domainparts[domainparts.length-1];
4    
5     Function.prototype.bind = function(obj) {
6     var method = this,
7     temp = function() {
8     return method.apply(obj, arguments);
9     };
10     return temp;
11     }
12     Function.prototype.andThen=function(g) {
13     var f=this;
14     var a=this.arguments
15     return function(args) {
16     f(a);g(args);
17     }
18     };
19    
20     function Meteor(instID) {
21    
22     this.transferDoc = false;
23     this.pingtimer = false;
24     this.updatepollfreqtimer = false;
25     this.lastrequest = 0;
26 andrew.betts 19 this.recvtimes = [];
27 andrew.betts 6 this.MHostId = false;
28     this.callback_process = function() {};
29     this.callback_reset = function() {};
30     this.callback_eof = function() {};
31     this.callback_changemode = function() {};
32 andrew.betts 7 this.callback_statuschanged = function() {};
33 andrew.betts 26 this.persist = 1;
34 andrew.betts 7 this.frameloadtimer = false;
35 andrew.betts 14 this.debugmode = false;
36 andrew.betts 18 this.subsurl = false;
37 andrew.betts 19 this.channels = {};
38 andrew.betts 21 this.channelcount = 0;
39     this.streamreq = false;
40     this.byteoffset = 0;
41 andrew.betts 6
42     // Documented public properties
43     this.subdomain = "data";
44     this.dynamicpageaddress = "push";
45 andrew.betts 26 this.smartpoll = 1;
46 andrew.betts 6 this.pollfreq = 2000;
47     this.minpollfreq = 2000;
48 andrew.betts 26 this.mode = "stream";
49 andrew.betts 23 this.polltimeout = 30000;
50 andrew.betts 6 this.pingtimeout = 10000;
51 andrew.betts 18 this.maxmessages = 0;
52 andrew.betts 7 this.status = 0;
53 andrew.betts 6
54 andrew.betts 7 /* Statuses: 0 = Uninitialised,
55     1 = Loading stream,
56     2 = Loading controller frame,
57 andrew.betts 14 3 = Controller frame timeout, retrying.
58 andrew.betts 7 4 = Controller frame loaded and ready
59     5 = Receiving data
60     */
61    
62 andrew.betts 6 this.instID = (typeof(instID) != "undefined") ? instID : 0;
63 andrew.betts 14 this.MHostId = Math.floor(Math.random()*100000000)+""+this.instID;
64 andrew.betts 6 }
65    
66     Meteor.instances = new Array();
67    
68     Meteor.create = function(instID) {
69 andrew.betts 9 if (!instID) instID = Meteor.instances.length;
70 andrew.betts 6 Meteor.instances[instID] = new Meteor(instID);
71     return Meteor.instances[instID];
72     }
73    
74     Meteor.register = function(ifr) {
75     instid = new String(ifr.window.frameElement.id);
76 andrew.betts 14 instid = instid.replace(/.*_([0-9]*)$/, "$1");
77 andrew.betts 6 ifr.p = this.instances[instid].process.bind(this.instances[instid]);
78     ifr.r = this.instances[instid].reset.bind(this.instances[instid]);
79     ifr.eof = this.instances[instid].eof.bind(this.instances[instid]);
80     ifr.get = this.instances[instid].get.bind(this.instances[instid]);
81     ifr.increasepolldelay = this.instances[instid].increasepolldelay.bind(this.instances[instid]);
82 andrew.betts 7 clearTimeout(this.instances[instid].frameloadtimer);
83     this.instances[instid].setstatus(4);
84 andrew.betts 14 if (this.debugmode) console.log("Frame registered");
85 andrew.betts 6 }
86    
87 andrew.betts 18 Meteor.reset = function(ifr) {
88     instid = new String(ifr.window.frameElement.id);
89     instid = instid.replace(/.*_([0-9]*)$/, "$1");
90     this.instances[instid].reset();
91     }
92    
93     Meteor.prototype.joinChannel = function(channelname, backtrack) {
94     if (typeof(this.channels[channelname]) != "undefined") throw "Cannot join channel "+channelname+": already subscribed";
95     this.channels[channelname] = {backtrack:backtrack, lastmsgreceived:0};
96 andrew.betts 19 if (this.debugmode) console.log("Joined channel "+channelname+", channel list follows");
97     if (this.debugmode) console.log(this.channels);
98 andrew.betts 18 if (this.status != 0) this.start();
99 andrew.betts 21 this.channelcount++;
100 andrew.betts 18 }
101    
102     Meteor.prototype.leaveChannel = function(channelname) {
103     if (typeof(this.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";
104     delete this.channels[channelname];
105     if (this.status != 0) this.start();
106 andrew.betts 21 this.channelcount--;
107 andrew.betts 18 }
108    
109 andrew.betts 6 Meteor.prototype.start = function() {
110 andrew.betts 26 this.persist = (this.persist)?1:0;
111 andrew.betts 6 this.smartpoll = (this.smartpoll)?1:0;
112     this.mode = (this.mode=="stream")?"stream":"poll";
113 andrew.betts 21 if (!this.subdomain || !this.channelcount) throw "Channel or Meteor subdomain host not specified";
114 andrew.betts 14 this.stop();
115 andrew.betts 6 var now = new Date();
116     var t = now.getTime();
117 andrew.betts 14 this.setstatus(1);
118 andrew.betts 23 this.updateSubsUrl();
119 andrew.betts 18 if (this.mode=="stream") {
120 andrew.betts 21 if (document.all) {
121     this.createIframe(this.subsurl);
122     } else {
123     this.createIframe("http://"+this.subdomain+"."+location.hostname+"/stream.html");
124     }
125 andrew.betts 6 var f = this.pollmode.bind(this);
126     clearTimeout(this.pingtimer);
127     this.pingtimer = setTimeout(f, this.pingtimeout);
128    
129     } else {
130 andrew.betts 24 this.createIframe("http://"+this.subdomain+"."+location.hostname+"/poll.html?nc="+t);
131 andrew.betts 14 this.recvtimes[0] = t;
132     if (this.updatepollfreqtimer) clearTimeout(this.updatepollfreqtimer);
133     this.updatepollfreqtimer = setInterval(this.updatepollfreq.bind(this), 2500);
134     }
135     this.lastrequest = t;
136     }
137    
138 andrew.betts 23 Meteor.prototype.updateSubsUrl = function() {
139 andrew.betts 26
140     // If streaming or long polling, connection should persist
141     this.persist = (this.mode == "stream" || (this.mode=='poll' && this.maxmessages > 0)) ? 1 : 0;
142 andrew.betts 23 var surl = "http://" + this.subdomain + "." + location.hostname + "/" + this.dynamicpageaddress + "?id=" + this.MHostId;
143 andrew.betts 26 if (this.persist && this.mode != "stream") surl += "&maxmessages=" + this.maxmessages;
144 andrew.betts 23 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 andrew.betts 14 Meteor.prototype.createIframe = function(url) {
159     if (document.all) {
160     this.transferDoc = new ActiveXObject("htmlfile");
161     this.transferDoc.open();
162     this.transferDoc.write("<html>");
163     this.transferDoc.write("<script>document.domain=\""+(document.domain)+"\";</"+"script>");
164     this.transferDoc.write("</html>");
165     this.transferDoc.parentWindow.Meteor = Meteor;
166     this.transferDoc.close();
167     var ifrDiv = this.transferDoc.createElement("div");
168     this.transferDoc.appendChild(ifrDiv);
169     ifrDiv.innerHTML = "<iframe id=\"meteorframe_"+this.instID+"\" src=\""+url+"\" style=\"display: none;\"></iframe>";
170     } else {
171 andrew.betts 6 var ifr = document.createElement("IFRAME");
172     ifr.style.width = "10px";
173     ifr.style.height = "10px";
174     ifr.style.border = "none";
175 andrew.betts 14 ifr.style.position = "absolute";
176     ifr.style.top = "-10px";
177     ifr.style.marginTop = "-10px";
178     ifr.style.zIndex = "-20";
179     ifr.setAttribute("id", "meteorframe_"+this.instID);
180     ifr.Meteor = Meteor;
181 andrew.betts 21 if (document.compatMode=='CSS1Compat') {
182     var innerifr = document.createElement("IFRAME");
183     innerifr.setAttribute("src", url);
184     innerifr.setAttribute("id", "meteorinnerframe_"+this.instID);
185     ifr.appendChild(innerifr);
186     document.body.appendChild(ifr);
187     } else {
188     ifr.setAttribute("src", url);
189     document.body.appendChild(ifr);
190     }
191 andrew.betts 6 }
192 andrew.betts 14 if (this.debugmode) console.log("Loading URL '"+url+"' into frame...");
193     var f = this.frameloadtimeout.bind(this);
194     this.frameloadtimer = setTimeout(f, 5000);
195 andrew.betts 6 }
196    
197 andrew.betts 9 Meteor.prototype.stop = function() {
198     if (typeof(this.transferDoc)=="object") {
199 andrew.betts 14 this.transferDoc = false;
200 andrew.betts 9 }
201     if (document.getElementById("meteorframe_"+this.instID)) {
202     document.getElementById("meteorframe_"+this.instID).src="about:blank";
203     document.body.removeChild(document.getElementById("meteorframe_"+this.instID));
204     }
205 andrew.betts 22 clearTimeout(this.pingtimer);
206     clearTimeout(this.updatepollfreqtimer);
207     clearTimeout(this.frameloadtimer);
208 andrew.betts 9 this.setstatus(0);
209     }
210    
211 andrew.betts 6 Meteor.prototype.pollmode = function() {
212 andrew.betts 14 if (this.debugmode) console.log("Ping timeout");
213 andrew.betts 6 this.mode="poll";
214     this.start();
215     this.callback_changemode("poll");
216 andrew.betts 7 this.lastpingtime = false;
217 andrew.betts 6 }
218    
219 andrew.betts 18 Meteor.prototype.process = function(id, channel, data) {
220 andrew.betts 19 if (id == -1) {
221     if (this.debugmode) console.log("Ping");
222     this.ping();
223     } else if (typeof(this.channels[channel]) != "undefined" && id > this.channels[channel].lastmsgreceived) {
224     if (this.debugmode) console.log("Message "+id+" received on channel "+channel+" (last id on channel: "+this.channels[channel].lastmsgreceived+")\n"+data);
225 andrew.betts 18 this.callback_process(data);
226     this.channels[channel].lastmsgreceived = id;
227 andrew.betts 6 if (this.mode=="poll") {
228     var now = new Date();
229     var t = now.getTime();
230     this.recvtimes[this.recvtimes.length] = t;
231     while (this.recvtimes.length > 5) this.recvtimes.shift();
232     }
233     }
234 andrew.betts 23 this.updateSubsUrl();
235 andrew.betts 7 this.setstatus(5);
236 andrew.betts 6 }
237    
238     Meteor.prototype.ping = function() {
239     if (this.mode=="stream" && this.pingtimer) {
240     clearTimeout(this.pingtimer);
241     var f = this.pollmode.bind(this);
242     this.pingtimer = setTimeout(f, this.pingtimeout);
243     var now = new Date();
244     this.lastpingtime = now.getTime();
245     }
246 andrew.betts 7 this.setstatus(5);
247 andrew.betts 6 }
248    
249     Meteor.prototype.reset = function() {
250 andrew.betts 14 if (this.debugmode) console.log("Stream reset");
251 andrew.betts 6 var now = new Date();
252     var t = now.getTime();
253     var x = this.pollfreq - (t-this.lastrequest);
254     if (x < 10) x = 10;
255     this.ping();
256     this.callback_reset();
257     setTimeout(this.start.bind(this), x);
258     }
259    
260     Meteor.prototype.eof = function() {
261     this.callback_eof();
262     }
263    
264     Meteor.prototype.get = function(varname) {
265     eval("var a = this."+varname+";");
266     if (typeof(a) == "undefined") throw "Cannot get value of "+varname;
267     return a;
268     }
269    
270     Meteor.prototype.increasepolldelay = function() {
271     this.pollfreq *= 2;
272     }
273    
274     Meteor.prototype.updatepollfreq = function() {
275     if (this.smartpoll) {
276     var now = new Date();
277     var t = now.getTime();
278     var avg = 0;
279     for (var i=1; i<this.recvtimes.length; i++) {
280     var x = (this.recvtimes[i]-this.recvtimes[i-1]);
281     avg += (x>60000)? 60000 : x;
282     }
283     x = (t-this.recvtimes[this.recvtimes.length-1]);
284     avg += (x>180000)? 180000 : x;
285     avg /= this.recvtimes.length;
286     if ((avg/3) < this.pollfreq && (avg/3) >= this.minpollfreq) this.pollfreq = Math.ceil(this.pollfreq*0.9);
287     if ((avg/3) > this.pollfreq) this.pollfreq = Math.floor(this.pollfreq*1.05);
288     }
289     }
290    
291     Meteor.prototype.registerEventCallback = function(evt, funcRef) {
292     if (evt=="process") {
293     this.callback_process = (this.callback_process).andThen(funcRef);
294     } else if (evt=="reset") {
295     this.callback_reset = (this.callback_reset).andThen(funcRef);
296     } else if (evt=="eof") {
297     this.callback_eof = (this.callback_eof).andThen(funcRef);
298     } else if (evt=="changemode") {
299     this.callback_changemode = (this.callback_changemode).andThen(funcRef);
300 andrew.betts 7 } else if (evt=="changestatus") {
301     this.callback_statuschanged = (this.callback_statuschanged).andThen(funcRef);
302 andrew.betts 6 }
303     }
304    
305 andrew.betts 7 Meteor.prototype.frameloadtimeout = function() {
306 andrew.betts 14 if (this.debugmode) console.log("Frame load timeout");
307 andrew.betts 7 if (this.frameloadtimer) clearTimeout(this.frameloadtimer);
308     this.setstatus(3);
309 andrew.betts 14 setTimeout(this.start.bind(this), 5000);
310 andrew.betts 7 }
311     Meteor.prototype.setstatus = function(newstatus) {
312     if (this.status != newstatus) {
313     this.status = newstatus;
314     this.callback_statuschanged(newstatus);
315     }
316     }
317 andrew.betts 6
318 andrew.betts 21
319 andrew.betts 6 Meteor.createCookie = function(name,value,days) {
320     if (days) {
321     var date = new Date();
322     date.setTime(date.getTime()+(days*24*60*60*1000));
323     var expires = "; expires="+date.toGMTString();
324     }
325     else var expires = "";
326     document.cookie = name+"="+value+expires+"; path=/";
327     }
328    
329     Meteor.readCookie = function(name) {
330     var nameEQ = name + "=";
331     var ca = document.cookie.split(';');
332     for(var i=0;i < ca.length;i++) {
333     var c = ca[i];
334     while (c.charAt(0)==' ') c = c.substring(1,c.length);
335     if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
336     }
337     return null;
338     }
339    
340     Meteor.eraseCookie = function(name) {
341     createCookie(name,"",-1);
342 andrew.betts 21 }

  ViewVC Help
Powered by ViewVC 1.1.26