blob: 9aaeb31744ca5cbf1bd1c328beead4827a366978 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// 'timer' is global to avoid getting GCed which would cancel the timer
var timer;
const nsITimer = Components.interfaces.nsITimer;
function attemptUnblock(s) {
try {
let blockedResponse = null;
getObjectState("bug503481_" + s, function (x) {
blockedResponse = x.wrappedJSObject.r;
});
blockedResponse.finish();
setObjectState("bug503481_" + s, null);
} catch (e) {
dump("unable to unblock " + s + "retrying in half a second\n");
timer = Components.classes["@mozilla.org/timer;1"].createInstance(nsITimer);
timer.initWithCallback(
function () {
attemptUnblock(s);
},
500,
nsITimer.TYPE_ONE_SHOT
);
}
}
function handleRequest(request, response) {
var query = {};
request.queryString.split("&").forEach(function (val) {
var [name, value] = val.split("=");
query[name] = unescape(value);
});
dump("processing:" + request.queryString + "\n");
if (query.unblock) {
attemptUnblock(query.unblock);
}
if (query.blockOn) {
response.processAsync();
x = {
r: response,
QueryInterface(iid) {
return this;
},
};
x.wrappedJSObject = x;
setObjectState("bug503481_" + query.blockOn, x);
}
response.setHeader("Cache-Control", "no-cache", false);
response.setHeader("Content-Type", "text/plain", false);
response.write(query.body);
}
|