4 * Copyright (C) 2006 matteo.nastasi@milug.org
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details. You should have received a
15 * copy of the GNU General Public License along with this program; if
16 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
17 * Suite 330, Boston, MA 02111-1307, USA.
23 var xhr_rd_cookiepath = "/brisk/";
25 var xhr_rd_stopped = true;
26 var xhr_rd_oldctx = "";
29 var xhr_rd_cur_n = -1;
30 var xhr_rd_old_n = -1;
31 var xhr_rd_checkedlen = 0;
36 function xhr_rd_cb(xhr_rd)
40 if (xhr_rd.readyState == 4) {
42 if ((ret = safestatus(xhr_rd)) == 200) {
43 } else if (ret != -1) {
44 alert('There was a problem with the request.' + ret);
48 xhr_rd_stopped = true;
52 function xhr_rd_start(sess,stat,subst,step)
56 createCookie("sess",sess,1,xhr_rd_cookiepath);
58 /* NOTE document.uniqueID exists only under IE */
60 xhr_rd.open('GET', 'index_rd.php?sess='+sess+"&stat="+stat+"&subst="+subst+"&step="+step+"&onlyone="+(document.uniqueID ? "TRUE" : "FALSE")+"&myfrom="+myfrom, true);
62 xhr_rd.onreadystatechange = function() { xhr_rd_cb(xhr_rd); }
65 xhr_rd_stopped = false;
69 function xhr_rd_poll(sess)
79 // alert("ABORT XHR_RD");
80 xhr_rd_stopped = true;
85 var zug = "XHR_RD_POLL sess = "+sess+" stat = "+stat+" subst = "+subst+" step = "+gst.st+" step_loc = "+gst.st_loc+" step_loc_new = "+gst.st_loc_new+" STOP: "+xhr_rd_stopped;
87 if (zug != $("sandbox").innerHTML)
88 $("sandbox").innerHTML = zug;
92 $("sandbox2").innerHTML += "_";
93 if ($("sandbox2").innerHTML.length == 20)
94 $("sandbox2").innerHTML = "_";
99 if (gst.st_loc < gst.st_loc_new) {
100 // there is some slow actions running
103 else if (gst.comms.length > 0) {
106 singlecomm = gst.comms.shift();
107 // alert("EXE"+gugu);
108 // $("xhrdeltalog").innerHTML = "EVALL: "+singlecomm.replace("<", "<", "g"); +"<br>";
115 xhr_rd_newctx = xhr_rd.responseText;
118 if (xhr_rd_stopped == true) {
119 xhr_rd_stopped = false;
120 // XX $("xhrstart").innerHTML += "XHRSTART: da catch<br>";
121 xhr_rd_start(sess, stat, subst, gst.st);
125 // $("sandbox").innerHTML += "return 1<br>";
126 if (the_end != true) {
128 setTimeout(xhr_rd_poll, tout, sess);
129 $("sandbox2").innerHTML += "-";
130 if ($("sandbox2").innerHTML.length == 20)
131 $("sandbox2").innerHTML = "-";
137 // no new char from the last loop, break
138 if (xhr_rd_old_n == xhr_rd_cur_n &&
139 xhr_rd_newctx.length == xhr_rd_checkedlen) {
145 // $("sandbox").innerHTML += "BIG IF<br>";
153 var match_lines = /^_*$/;
155 // check for the same command group
156 if (xhr_rd_old_n != xhr_rd_cur_n) {
157 xhr_rd_old_n = xhr_rd_cur_n;
158 xhr_rd_checkedlen = 0;
162 delta = xhr_rd_oldctx.length;
164 // $("xhrlog").innerHTML += "EVERY SEC<br>";
165 for (i = delta ; i < xhr_rd_newctx.length ; i++) {
166 if (xhr_rd_newctx[i] != '_')
169 if (i == xhr_rd_newctx.length) {
170 xhr_rd_checkedlen = i;
174 // $("xhrlog").innerHTML += "CHECK COM<br>";
175 // extracts the new part of the command string
176 comm_newpart = xhr_rd_newctx.substr(delta);
178 // XX $("xhrlog").innerHTML = xhr_rd_newctx.replace("<", "<", "g");
180 // $("response").innerHTML = comm_newpart;
181 comm_match = /_*@BEGIN@(.*?)@END@/g;
182 comm_clean = /_*@BEGIN@(.*?)@END@/;
184 comm_arr = comm_newpart.match(comm_match);
186 // $("sandbox").innerHTML += "PRE COMMARR<br>";
188 // XX $("xhrdeltalog").innerHTML += "DELTA: "+delta +"<br>";
189 // XX alert("xhr_rd_newctx: "+xhr_rd_newctx);
190 // $("sandbox").innerHTML += "POST COMMARR<br>";
191 for (i = 0 ; i < comm_arr.length ; i++) {
192 var temp = comm_arr[i].replace(comm_clean,"$1").split("|");
193 gst.comms = gst.comms.concat(temp);
194 // XX alert("COMM_ARR["+i+"]: "+comm_arr[i]+" LEN:"+comm_arr[i].length);
195 comm_len += comm_arr[i].length;
198 xhr_rd_oldctx += comm_newpart.substr(0,comm_len);
199 // XX alert("XHR_RD_OLDCTX: "+xhr_rd_oldctx);
202 xhr_rd_checkedlen = xhr_rd_oldctx.length;
207 if (xhrrestart == 1 && xhr_rd_stopped == true) {
208 // $("sandbox").innerHTML += "LITTLE IF<br>";
210 // XX $("xhrstart").innerHTML += "XHRSTART: da end poll<br>";
211 xhr_rd_start(sess, stat, subst, gst.st);
212 // $("sandbox").innerHTML += "return 2<br>";
215 // $("sandbox").innerHTML += "return 3<br>";
216 if (the_end != true) {
217 setTimeout(xhr_rd_poll, tout, sess);
218 $("sandbox2").innerHTML += "-";
219 if ($("sandbox2").innerHTML.length == 20)
220 $("sandbox2").innerHTML = "-";
226 window.onload = function () {
227 xhr_rd = createXMLHttpRequest();
229 sess = $("user").value;
230 window.setTimeout(xhr_rd_poll, 0, sess);