/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

var timer = Cc["@mozilla.org/timer;1"];
var waitTimer = timer.createInstance(Ci.nsITimer);

function handleRequest(request, response) {
  response.setHeader("Content-Type", "text/html", false);
  response.setHeader("Cache-Control", "no-cache", false);
  response.setStatusLine(request.httpVersion, 200, "OK");
  response.processAsync();
  waitForFinish(response);
}

function waitForFinish(response) {
  if (getSharedState("all-parts-done") === "1") {
    response.write("done");
    response.finish();
  } else {
    waitTimer.initWithCallback(
      function () {
        waitForFinish(response);
      },
      10,
      Ci.nsITimer.TYPE_ONE_SHOT
    );
  }
}