source: trunk/MagicSoft/Mars/datacenter/db/include.php@ 8420

Last change on this file since 8420 was 8333, checked in by Daniela Dorner, 18 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 16.5 KB
Line 
1<?php
2
3function EnumQuery($name)
4{
5 $var = $name . "Enum";
6 $txt = "";
7 switch ($_GET[$var])
8 {
9 case 0: $txt .= ""; break;
10 case 1: $txt .= $name . "='yes' AND "; break;
11 case 2: $txt .= $name . "='no' AND "; break;
12 case 3: $txt .= ""; break;
13 }
14 return $txt;
15}
16
17function PrintEnumMenu($name, $text)
18{
19 $var = $name . "Enum";
20
21 if ($_GET[$name]=="On")
22 $checked = "checked";
23 else
24 $checked = "";
25
26 printf(" <input type='checkbox' name='%s' value='On' %s>%s\n", $name, $checked, $text);
27 printf("<BR>");
28
29 printf(" <select name='%s'>\n", $var);
30
31 $status = array
32 ( 0 => "all",
33 1 => "yes",
34 2 => "no",
35 3 => "group by"
36 );
37
38 $stat=$_GET[$var];
39 for ($i=0; $i<4; $i++)
40 {
41 if ($stat==$i)
42 printf("<option value='%d' selected>%s</option>\n", $i, $status[$i]);
43 else
44 printf("<option value='%d'>%s</option>\n", $i, $status[$i]);
45 }
46
47 printf(" </select>\n");
48 printf(" &nbsp;&nbsp;&nbsp;\n");
49
50}
51
52function StatusQuery($name, $needs)
53{
54 $var = $name . "Status";
55 $txt = "";
56 switch ($_GET[$var])
57 {
58 case 0: $txt .= ""; break;
59 case 1: $txt .= "NOT (IsNull(" . $name . ") OR " . $name . "='1970-01-01 00:00:00') AND "; break;
60 case 2: $txt .= "IsNull(" . $name . ") AND IsNull(fStartTime) AND IsNull(fFailedTime) AND NOT IsNull(" . $needs[$name] . ") AND "; break;
61 case 3: $txt .= $name ."='1970-01-01 00:00:00' AND "; break;
62 case 4: $txt .= " (IsNull(" . $name . ") AND IsNull(fFailedTime) AND NOT IsNull(fStartTime) AND date_sub(Now(),interval 12 hour) < fStartTime AND NOT IsNull(" . $needs[$name] . ")) AND "; break;
63 case 5: $txt .= " (IsNull(" . $name . ") AND NOT IsNull(fFailedTime) AND NOT IsNull(fStartTime) AND NOT IsNull(" . $needs[$name] . ")) AND "; break;
64 case 6: $txt .= " (IsNull(" . $name . ") AND IsNull(fFailedTime) AND NOT IsNull(fStartTime) AND date_sub(Now(),interval 12 hour) > fStartTime AND NOT IsNull(" . $needs[$name] . ")) AND "; break;
65// case 6: $txt .= "crashed"; break;
66 case 7: $txt .= ""; break;
67 }
68 return $txt;
69}
70
71function PrintStatusMenu($name, $text)
72{
73 $var = $name . "Status";
74
75 if ($_GET[$name]=="On")
76 $checked = "checked";
77 else
78 $checked = "";
79
80 printf(" <input type='checkbox' name='%s' value='On' %s>%s\n", $name, $checked, $text);
81 printf("<BR>");
82
83 printf(" <select name='%s'>\n", $var);
84
85 $status = array
86 ( 0 => "all",
87 1 => "done",
88 2 => "not done",
89 3 => "not to be done",
90 4 => "running",
91 5 => "failed",
92 6 => "crashed",
93 7 => "group by",
94 );
95
96 $stat=$_GET[$var];
97 for ($i=0; $i<8; $i++)
98 {
99 if ($stat==$i)
100 printf("<option value='%d' selected>%s</option>\n", $i, $status[$i]);
101 else
102 printf("<option value='%d'>%s</option>\n", $i, $status[$i]);
103 }
104
105 /*
106 $status = array("all", "done", "not done", "not to be done");
107 $counter = 0;
108 foreach ($status as $element)
109 {
110 if ($counter==$_GET[$var])
111 printf("<option value=\"%d\" selected>%3s</option>\n", $counter++, $element);
112 else
113 printf("<option value=\"%d\">%3s</option>\n", $counter++, $element);
114 }*/
115 printf(" </select>\n");
116 printf(" &nbsp;&nbsp;&nbsp;\n");
117
118}
119
120function PrintPullDown($host, $user, $pw, $db, $table, $name, $index, $descr)
121{
122 $db_id = mysql_connect($host, $user, $pw);
123 if ($db_id==FALSE)
124 {
125 printf("mysql_connect returned the following error:<br>");
126 printf("%s<br>", mysql_error());
127 die("");
128 }
129
130 $query = "SELECT " . $index . ", " . $name . " FROM " . $db . "." . $table . " ORDER BY " . $name;
131 $result = mysql_query($query);
132
133 if (!$result)
134 {
135 printf("-N/A-");
136 return;
137 }
138
139 $numrows = mysql_num_rows($result);
140
141 if ($_GET[$name]=="On")
142 $checked = "checked";
143 else
144 $checked = "";
145
146 printf(" <input type='checkbox' name='%s' value='On' %s><A HREF='printtable.php?fTable=%s'>%s</A>\n", $name, $checked, $table, $descr);
147
148 printf(" <BR>\n");
149
150 printf(" <select name='%s' size='1' class='Width'>\n", $index);
151
152 if (empty($_GET[$index]) || $_GET[$index]==0)
153 printf(" <option value='0' selected>--- ALL ---</option>\n");
154 else
155 printf(" <option value='0'>--- ALL ---</option>\n");
156
157 if (!empty($_GET[$index]) && $_GET[$index]==-1)
158 printf(" <option value='-1' selected>--- GROUP BY ---</option>\n");
159 else
160 printf(" <option value='-1'>--- GROUP BY ---</option>\n");
161
162 while ($row = mysql_fetch_row($result))
163 {
164 if (!empty($_GET[$index]) && $_GET[$index]==$row[0])
165 printf(" <option value='%s' selected>%s</option>\n", $row[0], $row[1]);
166 else
167 printf(" <option value='%s'>%s</option>\n", $row[0], $row[1]);
168 }
169 printf(" </select>\n");
170 printf(" &nbsp;\n", $index);
171
172 mysql_free_result($result);
173
174 mysql_close($db_id);
175}
176
177function GetMin($field, $table, $host, $user, $pw, $db)
178{
179 $db_id = mysql_connect($host, $user, $pw);
180 if ($db_id==FALSE)
181 {
182 printf("mysql_connect returned the following error:<br>");
183 printf("%s<br>", mysql_error());
184 die("");
185 }
186
187 $query = "SELECT MIN(" . $field . ") FROM " . $db . "." . $table;
188 $result = mysql_query($query);
189 if (!$result)
190 return "0";
191
192 $row = mysql_fetch_row($result);
193
194 $min = $row[0];
195
196 mysql_free_result($result);
197 mysql_close($db_id);
198
199 return $min;
200}
201
202function GetMax($field, $table, $host, $user, $pw, $db)
203{
204 $db_id = mysql_connect($host, $user, $pw);
205 if ($db_id==FALSE)
206 {
207 printf("mysql_connect returned the following error:<br>");
208 printf("%s<br>", mysql_error());
209 die("");
210 }
211
212 $query = "SELECT MAX(" . $field . ") FROM " . $db . "." . $table;
213 $result = mysql_query($query);
214 if (!$result)
215 return "0";
216
217 $row = mysql_fetch_row($result);
218
219 $max = $row[0];
220
221 mysql_free_result($result);
222 mysql_close($db_id);
223
224 return $max;
225}
226
227function GetMaxDate($field, $table, $host, $user, $pw, $db)
228{
229 $db_id = mysql_connect($host, $user, $pw);
230 if ($db_id==FALSE)
231 {
232 printf("mysql_connect returned the following error:<br>");
233 printf("%s<br>", mysql_error());
234 die("");
235 }
236
237 $query = "SELECT DATE_FORMAT(if(MAX(" . $field . ")<'13:00:00', MAX(" . $field . "), ADDDATE(MAX(" . $field . "), INTERVAL +1 DAY)), '%Y-%m-%d') FROM " . $db . "." . $table;
238 $result = mysql_query($query);
239 if (!$result)
240 return "0";
241
242 $row = mysql_fetch_row($result);
243
244 $maxdate = $row[0];
245
246 mysql_free_result($result);
247 mysql_close($db_id);
248
249 return $maxdate;
250}
251
252function PrintText($result0)
253{
254 header("Content-type: application/octet");
255 header("Content-Disposition: attachment; filename=query-result.txt");
256
257 while ($row0 = mysql_fetch_assoc($result0))
258 {
259 foreach ($row0 as $key => $element)
260 printf("%s\t", $element);
261 printf("\n");
262 }
263}
264
265function PrintSubmittedQuery($query0, $html, $db, $old)
266{
267 //diplay query on old websites
268 if (empty($old))
269 printf("<tr class='Block' id='showquery' style='display:none'><td>");
270 else
271 printf("<tr class='Block' id='showquery' style='display:block'><td>");
272 printf("<b>DB:</b> %s <br>", $db);
273 if ($html=="1")
274 printf("<U><B>submitted query:</B></U><BR>%s<BR>", htmlspecialchars($query0));
275 printf("</td></tr>");
276}
277
278function Checkbox($value, $text)
279{
280 if ($_GET[$value]=="On")
281 $checked = "checked";
282 else
283 $checked = "";
284
285 printf(" <td><input type='checkbox' name='%s' value='On' %s>%s</td>\n", $value, $checked, $text);
286}
287
288function Checkbox2($val, $set, $text)
289{
290 $value=$val.$set;
291 switch ($set)
292 {
293 case "ON":
294 if (!isset($_POST["submit"]) && ereg(" ".$val." ", $_GET["Set"]))
295 $_POST[$value]="On";
296 break;
297 case "Off":
298 if (!isset($_POST["submit"]) && ereg(" ".$val." ", $_GET["Set2"]))
299 $_POST[$value]="On";
300 break;
301 }
302
303 if ($_POST[$value]=="On")
304 $checked = "checked";
305 else
306 $checked = "";
307
308 printf(" <td><input type='checkbox' name='%s' value='On' %s>%s</td>\n", $value, $checked, $text);
309}
310
311function CheckWhere($column, $_GET)
312{
313 foreach ($_GET as $key => $element)
314 {
315 if ($key==$column)
316 {
317 if ($element>0)
318 printf ("FIXED: %s<BR>", $column);
319 return $element;
320 }
321 }
322 return 0;
323}
324
325function CheckGroup($column, $_GET)
326{
327 foreach ($_GET as $key => $element)
328 {
329 if ($key==$column)
330 {
331 //if ($element==-1)
332 // printf ("GROUP: %s<BR>", $column);
333 return $element;
334 }
335 }
336 return 0;
337}
338
339function CheckStatusGroup($column, $_GET)
340{
341 foreach ($_GET as $key => $element)
342 if ($key==$column)
343 if ($element==7)
344 return -1;
345 return 0;
346}
347
348function CheckEnumGroup($column, $_GET)
349{
350 foreach ($_GET as $key => $element)
351 if ($key==$column)
352 if ($element==3)
353 return -1;
354 return 0;
355}
356
357function CreateMenu($rows)
358{
359 $menu = "";
360
361 if (empty($_GET["fNumResults"]))
362 return;
363
364 if ($_GET["fNumStart"]!=0)
365 {
366 $uri = htmlspecialchars($_SERVER["REQUEST_URI"]);
367 $pos = strpos($uri, "fNumStart");
368 $amp3=FALSE;
369 if ($pos!=FALSE)
370 {
371 $amp1 = substr($uri, 0, $pos-1);
372 $amp2 = substr($uri, $pos);
373 $amp3 = strchr($amp2, "&");
374
375 $uri = $amp1;
376 }
377 $pos = $_GET["fNumStart"]-$rows;
378 if ($pos<0)
379 $pos=0;
380 $uri .= "&fNumStart=" . $pos;
381 if ($amp3!=FALSE)
382 $uri .= $amp3;
383
384 $menu .= "<A HREF='" . $uri . "'><<< Prev</A>\n";
385 }
386
387 $menu .= "&nbsp;&nbsp;&nbsp;---&nbsp;<B>";
388 $menu .= $_GET["fNumStart"];
389 $menu .= "</B>&nbsp;---&nbsp;&nbsp;&nbsp;\n";
390
391 if ($rows==$_GET["fNumResults"])
392 {
393 $uri = $_SERVER["REQUEST_URI"];
394 $pos = strpos($uri, "fNumStart");
395 $amp3=FALSE;
396 if ($pos!=FALSE)
397 {
398 $amp1 = substr($uri, 0, $pos-1);
399 $amp2 = substr($uri, $pos);
400 $amp3 = strchr($amp2, "&");
401
402 $uri = $amp1;
403 }
404 $uri .= "&fNumStart=" . ($_GET["fNumStart"]+$rows);
405 if ($amp3!=FALSE)
406 $uri .= $amp3;
407
408 $menu .= "<A HREF='" . htmlspecialchars($uri) . "'>Next >>></A>\n";
409 }
410 return $menu;
411}
412
413function RemoveSortBy()
414{
415 $menu = "";
416
417 $uri = $_SERVER["REQUEST_URI"];
418 $pos = strpos($uri, "fSortBy");
419 $amp3=FALSE;
420 if ($pos!=FALSE)
421 {
422 $amp1 = substr($uri, 0, $pos-1);
423 $amp2 = substr($uri, $pos);
424 $amp3 = strchr($amp2, "&");
425
426 $uri = $amp1;
427 }
428
429 return $uri;
430}
431
432function FindAlias($alias, $search)
433{
434 foreach ($alias as $key => $element)
435 if ($element==$search)
436 return $key;
437
438 if ($search=="# Runs")
439 return "NumRuns";
440 if ($search=="# Sequ")
441 return "NumSequ";
442 if ($search=="# Datasets")
443 return "NumDS";
444 if ($search=="# days")
445 return "NumDays";
446 return $search;
447 return "";
448}
449
450function PrintMagicTable($result0, $alias, $rightalign, $limitsmean, $limitsmin, $limitsmax, $form, $_GET)
451{
452 $col = FALSE;
453 $first = TRUE;
454
455 $sigma = array
456 (
457 1 => "#33CC00",
458 2 => "#FFFF66",
459 3 => "#FF9900",
460 5 => "#FF0000",
461 );
462 $okcolour="#006600";
463
464
465 $menu = CreateMenu(mysql_num_rows($result0));
466
467 printf("\n<center>\n");
468 if ($form)
469 printf("<form method='POST'>");
470 if (empty($_GET["fPrintTable"]))
471 printf("<p>%s<P>\n", $menu);
472 printf("<table BORDER='0'>\n");
473 while ($row0 = mysql_fetch_assoc($result0))
474 {
475 if ($first)
476 {
477 printf(" <tr BGCOLOR='#C0C0C0'>\n");
478 $first = FALSE;
479 if ($form)
480 printf("<td>ON</td><td>Off</td>");
481 foreach ($row0 as $key => $element)
482 {
483 $col = FindAlias($alias, $key);
484
485 $ord="-";
486 $issort = "";
487 if (!empty($_GET["fSortBy"]) && substr($_GET["fSortBy"], 0, -1)==$col)
488 {
489 if (substr($_GET["fSortBy"], -1)=="-")
490 {
491 $ord="+";
492 $issort="&nbsp;<IMG SRC='down.gif'>";
493 }
494 else
495 $issort="&nbsp;<IMG SRC='up.gif'>";
496 }
497 printf(" <th>&nbsp;<A HREF='%s&amp;fSortBy=%s%s'>%s</A>%s&nbsp;</th>\n",
498 htmlspecialchars(RemoveSortBy()), $col, $ord, $key, $issort);
499 }
500 printf(" </tr>\n\n");
501 }
502
503 if (!$col)
504 printf(" <tr BGCOLOR='#E0E0E0'>\n");
505 else
506 printf(" <tr BGCOLOR='#D0D0D0'>\n");
507 $col = !$col;
508
509 if ($form)
510 {
511 CheckBox2($row0["Sequ"], "ON","");
512 CheckBox2($row0["Sequ"], "Off","");
513 }
514 foreach ($row0 as $key => $element)
515 {
516 if (empty($rightalign[$key]))
517 printf(" <td align='left'>");
518 else
519 printf(" <td align='right'>");
520
521 $colour='#000000';
522 //determine color of text in cell
523 if (!empty($limitsmean))
524 {
525 foreach($limitsmean as $key2 => $element2)
526 {
527 $mean=$key2 . "Mean";
528 $rms2=$key2 . "Rms";
529 if ($key==$alias[$element2] && !empty($_GET[$mean]) && !empty($_GET[$rms2]))
530 {
531 $colour=$okcolour;
532 foreach ($sigma as $margin => $newcolour)
533 {
534 $min=$_GET[$mean] - ($margin * $_GET[$rms2]);
535 $max=$_GET[$mean] + ($margin * $_GET[$rms2]);
536 if (!($min < $element && $element < $max))
537 $colour=$newcolour;
538 }
539 }
540 }
541 }
542 if (!empty($limitsmin))
543 {
544 foreach($limitsmin as $key2 => $element2)
545 {
546 $limit1=$key2 . "1";
547 $limit2=$key2 . "2";
548 if ($key==$alias[$element2] && !empty($_GET[$limit1]))
549 {
550 if ($colour=='#000000')
551 $colour=$okcolour;
552
553 if (!empty($_GET[$limit2]) && $_GET[$limit2] > $element)
554 $colour=$sigma[5];
555
556 if ($_GET[$limit1] > $element && $_GET[$limit2] <= $element)
557 $colour=$sigma[3];
558 }
559 }
560 }
561
562 if (!empty($limitsmax))
563 {
564 foreach($limitsmax as $key2 => $element2)
565 {
566 $limit1=$key2 . "1";
567 $limit2=$key2 . "2";
568 if ($key==$alias[$element2] && !empty($_GET[$limit1]))
569 {
570 if ($colour=='#000000')
571 $colour=$okcolour;
572
573 if (!empty($_GET[$limit2]) && $_GET[$limit2] < $element)
574 $colour=$sigma[5];
575
576 if ($_GET[$limit1] < $element && $_GET[$limit2] >= $element)
577 $colour=$sigma[3];
578 }
579 }
580 }
581 if ($colour!='#000000' && (!empty($limitsmean) || !empty($limitsmin) || !empty($limitsmax)))
582 printf("<font color='%s' style='font-weight:bold'>", $colour);
583
584 //fill text in cell
585 printf("&nbsp;%s&nbsp;</td>\n", str_replace("&ws;", " ", str_replace(" ", "&nbsp;", $element)));
586
587 if ($colour!='#000000' && (!empty($limitsmean) || !empty($limitsmin) || !empty($limitsmax)))
588 printf("</font>");
589 }
590 printf(" </tr>\n");
591 }
592 printf("</table>\n");
593
594 /*
595 $info = mysql_info();
596 if (!empty($info))
597 printf("%s<BR>\n", $info);
598 */
599
600 printf("<P><B>Number of displayed results: %d</B><P><P>\n", mysql_num_rows($result0));
601 if (empty($_GET["fPrintTable"]))
602 printf("%s\n", $menu);
603 printf("<P>\n");
604
605 if (!$form)
606 {
607 printf("</center>\n");
608 printf("</td>\n");
609 printf("</tr>\n");
610 }
611}
612
613?>
Note: See TracBrowser for help on using the repository browser.