poll_database.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <?php
  2. function show_status($done, $total, $size = 30) {
  3. static $start_time;
  4. // if we go over our bound, just ignore it
  5. if ($done > $total) {
  6. return;
  7. }
  8. if (empty($start_time)) {
  9. $start_time = time();
  10. }
  11. $now = time();
  12. $perc = (float)($done / $total);
  13. $bar = floor($perc * $size);
  14. $status_bar = "\r[";
  15. $status_bar .= str_repeat("=", $bar);
  16. if ($bar < $size) {
  17. $status_bar .= ">";
  18. $status_bar .= str_repeat(" ", $size - $bar);
  19. }
  20. else {
  21. $status_bar .= "=";
  22. }
  23. $disp = number_format($perc * 100, 0);
  24. $status_bar .= "] $disp% $done/$total";
  25. $rate = ($now - $start_time) / $done;
  26. $left = $total - $done;
  27. $eta = round($rate * $left, 2);
  28. $elapsed = $now - $start_time;
  29. $status_bar .= " remaining: " . number_format($eta) . " sec. elapsed: " . number_format($elapsed) . " sec.";
  30. echo "$status_bar ";
  31. flush();
  32. // when done, send a newline
  33. if ($done == $total) {
  34. echo "\n";
  35. }
  36. }
  37. // include channel list
  38. //include "SDS_status_channels.php";
  39. $username = getenv("PHP_ADEI_USERNAME");
  40. $password = getenv("PHP_ADEI_PASSWORD");
  41. $context = stream_context_create(["http" => ["header" => "Authorization: Basic " . base64_encode("$username:$password") , "Connection: close\r\n", ], ]);
  42. // ** Katrin numbers referring to IE electrode segments ** //
  43. $relationKatrinNumbers = array(
  44. array( // 22 rows: 2x11 electrode rings (inner+outer)
  45. "436-EEL-0-0001-0001", // WestRing 02 outer
  46. "436-EEL-0-0001-0101", // WestRing 02 inner
  47. "436-EEL-0-0001-0201", // WestRing 03 outer
  48. "436-EEL-0-0001-0301", // WestRing 03 inner
  49. "436-EEL-0-0001-0401", // WestRing 04 outer
  50. "436-EEL-0-0001-0501", // WestRing 04 inner
  51. "436-EEL-0-0001-0601", // WestRing 05 outer
  52. "436-EEL-0-0001-0701", // WestRing 05 inner
  53. "436-EEL-0-0001-0801", // WestRing 06 outer
  54. "436-EEL-0-0001-0901", // WestRing 06 inner
  55. "436-EEL-0-0001-1001", // WestRing 07-11 outer
  56. "436-EEL-0-0001-1101", // WestRing 07-11 inner
  57. "436-EEL-0-0001-1201", // WestRing 12 outer
  58. "436-EEL-0-0001-1301", // WestRing 12 inner
  59. "436-EEL-0-0001-1401", // WestRing 13 outer
  60. "436-EEL-0-0001-1501", // WestRing 13 inner
  61. "436-EEL-0-0001-1601", // WestRing 14 outer
  62. "436-EEL-0-0001-1701", // WestRing 14 inner
  63. "436-EEL-0-0001-1801", // WestRing 15 outer
  64. "436-EEL-0-0001-1901", // WestRing 15 inner
  65. "436-EEL-0-0001-2001", // WestRing 16 outer
  66. "436-EEL-0-0001-2101", // WestRing 16 inner
  67. // ^............. means this is a HV relation number (9)
  68. // ^^........... means ring index (2..16)
  69. // ^.......... means outer (=0) or inner (=1) layer
  70. ) ,
  71. array( // 22 rows: 2x11 electrode rings (inner+outer)
  72. "436-EEL-0-0002-0001", // EastRing 02 outer
  73. "436-EEL-0-0002-0101", // EastRing 02 inner
  74. "436-EEL-0-0002-0201", // EastRing 03 outer
  75. "436-EEL-0-0002-0301", // EastRing 03 inner
  76. "436-EEL-0-0002-0401", // EastRing 04 outer
  77. "436-EEL-0-0002-0501", // EastRing 04 inner
  78. "436-EEL-0-0002-0601", // EastRing 05 outer
  79. "436-EEL-0-0002-0701", // EastRing 05 inner
  80. "436-EEL-0-0002-0801", // EastRing 06 outer
  81. "436-EEL-0-0002-0901", // EastRing 06 inner
  82. "436-EEL-0-0002-1001", // EastRing 07-11 outer
  83. "436-EEL-0-0002-1101", // EastRing 07-11 inner
  84. "436-EEL-0-0002-1201", // EastRing 12 outer
  85. "436-EEL-0-0002-1301", // EastRing 12 inner
  86. "436-EEL-0-0002-1401", // EastRing 13 outer
  87. "436-EEL-0-0002-1501", // EastRing 13 inner
  88. "436-EEL-0-0002-1601", // EastRing 14 outer
  89. "436-EEL-0-0002-1701", // EastRing 14 inner
  90. "436-EEL-0-0002-1801", // EastRing 15 outer
  91. "436-EEL-0-0002-1901", // EastRing 15 inner
  92. "436-EEL-0-0002-2001", // EastRing 16 outer
  93. "436-EEL-0-0002-2101", // EastRing 16 inner
  94. // ^............ means this is a HV relation number (8 = east)
  95. // ^........... means outer (=0) or inner (=1) layer
  96. // ^.......... means source (=0) or detector (=1) side
  97. // ^......... means ring index (0..6), counted from central segment
  98. ) ,
  99. );
  100. // ** Katrin numbers referring to IE power supply channels ** //
  101. $relationTargetNumbers = array(
  102. array( // IE offset channels West side
  103. // 22 rows: 3x7 offset channels + IE common
  104. "436-EHV-0-0003-0102", // WestCh 01
  105. "436-EHV-0-0003-0202", // WestCh 02
  106. "436-EHV-0-0003-0302", // WestCh 03
  107. "436-EHV-0-0003-0402", // WestCh 04
  108. "436-EHV-0-0003-0502", // WestCh 05
  109. "436-EHV-0-0003-0602", // WestCh 06
  110. "436-EHV-0-0003-0702", // WestCh 07
  111. "436-EHV-0-0005-0102", // WestCh 08
  112. "436-EHV-0-0005-0202", // WestCh 09
  113. "436-EHV-0-0005-0302", // WestCh 10
  114. "436-EHV-0-0005-0402", // WestCh 11
  115. "436-EHV-0-0005-0502", // WestCh 12
  116. "436-EHV-0-0005-0602", // WestCh 13
  117. "436-EHV-0-0005-0702", // WestCh 14
  118. "436-EHV-0-0007-0102", // WestCh 15
  119. "436-EHV-0-0007-0202", // WestCh 16
  120. "436-EHV-0-0007-0302", // WestCh 17
  121. "436-EHV-0-0007-0402", // WestCh 18
  122. "436-EHV-0-0007-0502", // WestCh 19
  123. "436-EHV-0-0007-0602", // WestCh 20
  124. "436-EHV-0-0007-0702", // WestCh 21
  125. "436-EHV-0-0002-0101", // IE dipole west
  126. "436-EHV-0-1003-0002", // IE common
  127. ) ,
  128. array( // IE offset channels East side
  129. // 22 rows: 3x7 offset channels + IE common
  130. "436-EHV-0-0004-0102", // EastCh 01
  131. "436-EHV-0-0004-0202", // EastCh 02
  132. "436-EHV-0-0004-0302", // EastCh 03
  133. "436-EHV-0-0004-0402", // EastCh 04
  134. "436-EHV-0-0004-0502", // EastCh 05
  135. "436-EHV-0-0004-0602", // EastCh 06
  136. "436-EHV-0-0004-0702", // EastCh 07
  137. "436-EHV-0-0006-0102", // EastCh 08
  138. "436-EHV-0-0006-0202", // EastCh 09
  139. "436-EHV-0-0006-0302", // EastCh 10
  140. "436-EHV-0-0006-0402", // EastCh 11
  141. "436-EHV-0-0006-0502", // EastCh 12
  142. "436-EHV-0-0006-0602", // EastCh 13
  143. "436-EHV-0-0006-0702", // EastCh 14
  144. "436-EHV-0-0008-0102", // EastCh 15
  145. "436-EHV-0-0008-0202", // EastCh 16
  146. "436-EHV-0-0008-0302", // EastCh 17
  147. "436-EHV-0-0008-0402", // EastCh 18
  148. "436-EHV-0-0008-0502", // EastCh 19
  149. "436-EHV-0-0008-0602", // EastCh 20
  150. "436-EHV-0-0008-0702", // EastCh 21
  151. "436-EHV-0-0002-0102", // IE dipole east
  152. "436-EHV-0-1003-0002", // IE common
  153. ) ,
  154. );
  155. function flatten(array $array) {
  156. $return = array();
  157. array_walk_recursive($array, function ($a) use (&$return) {
  158. $return[] = $a;
  159. });
  160. return $return;
  161. }
  162. // set time zone to local German time
  163. date_default_timezone_set("Europe/Berlin");
  164. $counter = 0;
  165. $calltime = time();
  166. do {
  167. $errorcount = 0;
  168. $errormessage = "<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>";
  169. $starttime = time();
  170. /// TODO (1) get current relations for HV rings (KATRIN number mapping)
  171. /// TODO (2) write channel mapping to file used by monitor ("patchpanel/data/activeIEconfig.txt")
  172. /// => (a) the file contains one line per IE channel (44 total: 11 rings x inner/outer x west/east)
  173. /// => (b) each line contains the power supply index (values 0 .. 21; 22 = through IE)
  174. /// TODO (3) resolve ADEI channels for each relation (?)
  175. /// TODO (4) update ADEIchannels array (?)
  176. //echo "Polling database." . PHP_EOL;
  177. // new kdb.kaas.kit.edu added and optimized readout parameters
  178. $fileip = file_get_contents("https://kdb.kaas.kit.edu/kdb-api.fcgi/json?relations&kn=" . join(",", flatten($relationKatrinNumbers)) . "&only_recent=1", false, $context);
  179. //show_status($id+1,sizeof($adeiChannel));
  180. if (substr($fileip, 0, 5) == "ERROR") {
  181. $errorcount++;
  182. $errormessage = $errormessage . "Error querying database<br>";
  183. }
  184. if ($errorcount > 0) {
  185. echo $errormessage;
  186. }
  187. $json = json_decode($fileip, true);
  188. //echo "Database result (JSON):" . PHP_EOL;
  189. //var_dump($json);
  190. $patchpanelMap = array();
  191. if ($json && $json["result"]) {
  192. foreach ($json["result"]["Relation"] as $kn => $data) {
  193. $target = $data["AssociateNumber"];
  194. $patchpanelMap[$kn] = $target;
  195. echo "\t" . $kn . " => " . $target . PHP_EOL;
  196. }
  197. }
  198. // increse loop counter
  199. $counter++;
  200. $stoptime = time();
  201. $wait_till = $starttime + 11;
  202. if ($stoptime - $starttime > 10) {
  203. $errormessage .= "ERROR: delayed readout " . ($stoptime - $starttime) . " s ";
  204. $errorcount++;
  205. }
  206. //echo "Writing patchpanel database data to file." . PHP_EOL;
  207. $strFileContent = "";
  208. assert( sizeof($relationKatrinNumbers) == 2 );
  209. assert( sizeof($relationTargetNumbers) == 2 );
  210. for ($eastwest = 0; $eastwest < 2; $eastwest++) {
  211. // loop over each half of the array
  212. assert( sizeof($relationKatrinNumbers[$eastwest]) == 22 );
  213. assert( sizeof($relationTargetNumbers[$eastwest]) >= 22 );
  214. foreach ($relationKatrinNumbers[$eastwest] as $kn) {
  215. $index = 22; // default to IE common
  216. $target = "(default)";
  217. if (array_key_exists($kn, $patchpanelMap)) {
  218. $target = $patchpanelMap[$kn];
  219. $index = array_search($target, $relationTargetNumbers[$eastwest]);
  220. if ($index > 22)
  221. $index = 22;
  222. }
  223. echo "\t" . $kn . " => " . $target . " [" . $index . "]" . PHP_EOL;
  224. $strFileContent .= $index . "\n";
  225. }
  226. }
  227. // write ADEI data to file
  228. if (file_exists("patchpanel/data/activeIEconfig.txt")) {
  229. rename("patchpanel/data/activeIEconfig.txt", "patchpanel/data/activeIEconfig.txt.bak");
  230. }
  231. $file_w = fopen("patchpanel/data/activeIEconfig.txt", "w+");
  232. //sleep(5);
  233. fwrite($file_w, $strFileContent);
  234. fclose($file_w);
  235. // write log file
  236. $log_message = "";
  237. $log_message = date(DATE_RFC850) . ": database polled: loop " . $counter;
  238. $log_message .= ", poll time " . ($stoptime - $starttime) . " s";
  239. if ($stoptime - $starttime > 10) {
  240. $log_message .= ", delayed readout";
  241. }
  242. $log_message .= PHP_EOL;
  243. $file_log = fopen("logs/poll_database.log", "a");
  244. fwrite($file_log, $log_message);
  245. fclose($file_log);
  246. //echo "Loop ".$counter." done.".PHP_EOL;
  247. if ($wait_till <= $stoptime) {
  248. sleep(3);
  249. }
  250. else {
  251. time_sleep_until($wait_till);
  252. }
  253. } while ($counter < 10 && time() < $calltime + 51);
  254. //echo "All loops done.".PHP_EOL;
  255. ?>