ctx_new moved and $st added to manage status value
[xynt.git] / web / test-hs-rd.php
index 9edd50b..bd4667e 100644 (file)
@@ -4,10 +4,12 @@
 <script type="text/javascript" src="xynt/xynt-http-streaming-ifra.js"></script>
 <script type="text/javascript">
 var http_streaming = "ready";
-var ctx_new = "";
 
 window.onload = function () { if (http_streaming != "ready") http_streaming.reload(); };
 </script> 
+</head>
+<body onabort = "console.log('rd abort');" onunload = "console.log('rd unload');" onerror = "console.log('rd error');" onkeypress = "console.log('rd keypress');">
+</body>
 <?php
 function mop_flush()
 {
@@ -17,24 +19,30 @@ function mop_flush()
 
 function main()
 {
+    $st = 0;
+    $fp = fopen("/tmp/test-hs-rd.log", "a");
+    fwrite($fp, "START\n");
+    fclose($fp);
+
     $s = "";
     for ($i = 0 ; $i < 4096 ; $i++) {
         $s .= rand(65,90);
     }
-    for ($i = 0 ; $i < 15 ; $i++) {
+
+    $to = rand(10,20);
+    for ($first = true, $i = $st+1 ; $i < $st+$to ; $i++, $first = false) {
         // if ($i == 0)
         //    sleep(1);
      
-        if ($i != 8) {
-            printf("<script id='hs%d' type='text/javascript'>
-push(\"$('cont').innerHTML = '%d';\");
-</script>", $i, $i);
-        }
-        else {
+        if ($i == $st+8) {
             // exit();
-            // sleep(30);
+            sleep(30);
         }
-        if ($i == 0)
+        printf("<script id='hs%d' type='text/javascript'>
+push(\"$('cont').innerHTML += '%s %d';\");
+</script>", $i, ($first ? "<br/>" : ""), $i);
+
+        if ($first)
             printf("<!-- %s -->", $s);
         mop_flush();
         usleep(1000000);
@@ -42,7 +50,4 @@ push(\"$('cont').innerHTML = '%d';\");
 }
 main();
 ?>
-</head>
-<body>
-</body>
 </html>
\ No newline at end of file