source: trunk/MagicSoft/Mars/datacenter/db/builddatasets.php@ 9486

Last change on this file since 9486 was 9486, checked in by Daniela Dorner, 15 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 43.2 KB
Line 
1<?php
2{
3 function CreateQuery($_GET, $alias, $checkwhere, $checkgroup, $checkstatusgroup, $needs)
4 {
5 $fromtable="Sequences";
6
7 $groups = 0;
8 foreach ($checkgroup as $element)
9 if ($element==-1)
10 $groups++;
11
12 $statusgroups = 0;
13 foreach ($checkstatusgroup as $element)
14 if ($element==-1)
15 $statusgroups++;
16
17 $query0 = "SELECT ";
18
19 if ($groups>0)
20 {
21 foreach ($checkgroup as $key => $element)
22 if ($element==-1)
23 $query0 .= $key . " as '" . $alias[$key] . "' " . ", ";
24 //--------------------------------------------------
25 $query0 .= "SUM(fRunTime)/3600 as '" . $alias["SUM(fRunTime)/3600"] . "', ";
26 //--------------------------------------------------
27 $query0 .= " SUM(fNumEvents) as '" . $alias["SUM(fNumEvents)"] . "', ";
28 $query0 .= " Min(fZenithDistanceMin) as '" . $alias["Min(fZenithDistanceMin)"] . "', ";
29 $query0 .= " Max(fZenithDistanceMax) as '" . $alias["Max(fZenithDistanceMax)"] . "', ";
30 $query0 .= " COUNT(*) as '# Sequ' ";
31 }
32 else
33 {
34 if ($statusgroups>0)
35 {
36 foreach ($checkstatusgroup as $key => $element)
37 if ($element==-1)
38 $query0 .= " (if(IsNull(" . $key . "), if(isnull(fStartTime), 'not done', if(isnull(fFailedTime),if(isnull(" . $needs[$key] . "),'not done',if(date_sub(Now(),interval 12 hour) < fStartTime,'running','crashed')),if(isnull(" . $needs[$key] . "),'not done','failed'))) ,if(" . $key . "='1970-01-01 00:00:00','dont do','done'))) as '" . $alias[$key] . "', ";
39// $query0 .= " (if(IsNull(" . $key . "), 'not done' ,if(" . $key . "='1970-01-01 00:00:00','dont do','done'))) as '" . $alias[$key] . "', ";
40
41 $query0 .= " COUNT(*) as '# Sequ'";
42
43 }
44 else
45 {
46 $query0 .= " " . $fromtable . ".fSequenceFirst as '" . $alias["fSequenceFirst"] . "' ";
47 if (!empty($_GET["fLinks"]))
48 {
49 $query0 .= ", CONCAT('<A&ws;HREF=\"runinfo-aio.php?', 'fRunStart=On', '&amp;fZenithDistance=On', '&amp;fRunMin=', Sequences.fSequenceFirst, '&amp;fMeanTriggerRate=On', '&amp;fTest=On', '&amp;fRunTypeName=On', '&amp;fRunMax=', fSequenceLast, '&amp;fNumEvents=On', '&amp;fSourceName=On&amp;', 'fExcludedFDAKEY=1', '&amp;fSequenceFirst=On', '&amp;fRawFileAvail=On', '&amp;fCCFileAvail=On', '&amp;fCaCoFileAvail=On', '&amp;fNumResults=500\">r</A>' ";
50 // $query0 .= " as " . $alias["fSequenceFirst"];
51 $query0 .= ", '&nbsp;<A&ws;HREF=\"http://www.astro.uni-wuerzburg.de/datacenter/callisto/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'callisto', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">cl</A>'";
52 $query0 .= ", '&nbsp;<A&ws;HREF=\"http://www.astro.uni-wuerzburg.de/datacenter/callisto/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), '\">c</A>'";
53 $query0 .= ", '&nbsp;<A&ws;HREF=\"http://www.astro.uni-wuerzburg.de/datacenter/star/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), 'star', LPAD(CONCAT(Sequences.fSequenceFirst , '.html'), 13,'0') , '\">sl</A>'";
54 $query0 .= ", '&nbsp;<A&ws;HREF=\"http://www.astro.uni-wuerzburg.de/datacenter/star/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/', LPAD(CONCAT(Sequences.fSequenceFirst, '/'), 9,'0'), '\">s</A>'";
55 $query0 .= ", '&nbsp;<A&ws;HREF=\"http://www.astro.uni-wuerzburg.de/datacenter/sequences/' , LEFT(LPAD(CONCAT(Sequences.fSequenceFirst, '.'), 9,'0'),4), '/sequence', LPAD(CONCAT(Sequences.fSequenceFirst , '.txt'), 12,'0') , '\">', 'f </A>' ";
56 $query0 .= ", '&nbsp;<A&ws;HREF=\"sequence.php?fSequenceNo=', Sequences.fSequenceFirst , '&amp;fAll=On\">i</A>') ";
57 $query0 .= " as 'Links'";
58 }
59
60 foreach ($_GET as $key => $element)
61 if ($_GET[$key]=="On")
62 if ($key!="fLinks" && $key!="fOff" && $key!="fOnlyOff")
63 if (empty($checkwhere[$key]) || $checkwhere[$key]==0)
64 $query0 .= ", " . $key . " as '" . $alias[$key] . "' ";
65 }
66 }
67
68 $query0 .= " FROM " . $fromtable;
69
70 $query0 .= " LEFT JOIN SequenceProcessStatus USING(fSequenceFirst,fTelescopeNumber) ";
71 $query0 .= " LEFT JOIN Calibration USING(fSequenceFirst,fTelescopeNumber) ";
72 $query0 .= " LEFT JOIN Star USING(fSequenceFirst,fTelescopeNumber) ";
73
74 foreach ($_GET as $key => $element)
75 if (($_GET[$key]=="On" || $groups>0))// && !empty(GetJoin($fromtable,$key)))
76 $query0 .= GetJoin($fromtable,$key);
77
78 if ($_GET["fTest"]!="On")
79 {
80 if ($_GET["fSourceName"]!="On")
81 $query0 .= " LEFT JOIN Source USING(fSourceKEY) ";
82 $query0 .= " WHERE fTest='no'";
83 }
84
85 if ($_GET["fOff"]=="Off")
86 {
87 if (strpos($query0, " WHERE ")==FALSE)
88 $query0 .= " WHERE ";
89 else
90 $query0 .= " AND ";
91
92 $query0 .= " NOT (fSourceName like '%Off%')";
93 }
94
95 if ($_GET["fOnlyOff"]=="On")
96 {
97 if (strpos($query0, " WHERE ")==FALSE)
98 $query0 .= " WHERE ";
99 else
100 $query0 .= " AND ";
101
102 $query0 .= " fSourceName like '%Off%'";
103 }
104
105 foreach ($checkwhere as $key => $element)
106 {
107 if (empty($element) || $element<=0)
108 continue;
109
110 if (strpos($query0, " WHERE ")==FALSE)
111 $query0 .= " WHERE ";
112 else
113 if ($element!=-1)
114 if (strrpos($query0, " AND ")!=strlen($query0)-5)
115 $query0 .= " AND ";
116
117 if ($element!=-1)
118 $query0 .= GetCheck($fromtable, $key) . "=" . $element;
119 }
120
121 if (strpos($query0, " WHERE ")==FALSE)
122 $query0 .= " WHERE ";
123 else
124 $query0 .= " AND ";
125
126 $query0 .= StatusQuery("fSequenceFileWritten", $needs, $timelimits);
127 $query0 .= StatusQuery("fAllFilesAvail", $needs, $timelimits);
128 $query0 .= StatusQuery("fCallisto", $needs, $timelimits);
129 $query0 .= StatusQuery("fFillCallisto", $needs, $timelimits);
130 $query0 .= StatusQuery("fStar", $needs, $timelimits);
131 $query0 .= StatusQuery("fFillStar", $needs, $timelimits);
132
133 if (!empty($_GET["fRunMin"]) && !empty($_GET["fRunMax"]))
134 $query0 .= "Sequences.fSequenceFirst BETWEEN " . $_GET["fRunMin"] . " AND " . $_GET["fRunMax"] . " ";
135 else
136 $query0 = substr($query0, 0, -4);
137
138 if ((!empty($_GET["fZDMin"]) || $_GET["fZDMin"]==0) && !empty($_GET["fZDMax"]))
139 $query0 .= "AND (fZenithDistanceMin >= " . $_GET["fZDMin"] . " AND fZenithDistanceMax <= " . $_GET["fZDMax"] . ") ";
140
141 if (!empty($_GET["fSourceN"]))
142 $query0 .= " AND fSourceName REGEXP \"^" . $_GET["fSourceN"] . "\" ";
143
144 if (!empty($_GET["fStartDate"]))
145 {
146 if (strpos(strrev($query0), " DNA ")!=0 || !strpos(strrev($query0), " DNA "))
147 $query0 .= " AND ";
148
149 $startdate=substr($_GET["fStartDate"], 0, 10);
150 if ($startdate=="0000-00-00")
151 $query0 .=" fRunStart >= '" . $startdate . " 00:00:00' ";
152 else
153 $query0 .= " fRunStart >= ADDDATE('" . $startdate . " 13:00:00', INTERVAL -1 DAY) ";
154 }
155
156 if (!empty($_GET["fStopDate"]))
157 {
158 if (strpos(strrev($query0), " DNA ")!=0 || !strpos(strrev($query0), " DNA "))
159 $query0 .= " AND ";
160
161 $stopdate=substr($_GET["fStopDate"], 0, 10);
162 $query0 .= " fRunStart < '" . $stopdate . " 13:00:00' ";
163 }
164
165 if (!empty($_GET["fStarStart"]))
166 {
167 if (strpos(strrev($query0), " DNA ")!=0 || !strpos(strrev($query0), " DNA "))
168 $query0 .= " AND ";
169
170 $starstart=substr($_GET["fStarStart"], 0, 10);
171 $query0 .=" fStar >= '" . $starstart . " 00:00:00' ";
172 }
173
174 if (!empty($_GET["fStarStop"]))
175 {
176 if (strpos(strrev($query0), " DNA ")!=0 || !strpos(strrev($query0), " DNA "))
177 $query0 .= " AND ";
178
179 $starstop=substr($_GET["fStarStop"], 0, 10);
180 $query0 .= " fStar < '" . $starstop . " 23:59:59' ";
181 }
182
183 if ($groups>0)
184 {
185 $query0 .= " GROUP BY ";
186 $num = $groups;
187 foreach ($checkgroup as $key => $element)
188 if ($element==-1)
189 {
190 $query0 .= GetCheck($fromtable,$key);
191 if ($num-->1)
192 $query0 .= ", ";
193 }
194 }
195
196 if ($statusgroups>0)
197 {
198 $query0 .= " GROUP BY ";
199 $num = $statusgroups;
200 foreach ($checkstatusgroup as $key => $element)
201 if ($element==-1)
202 {
203 $query0 .= $alias[$key];
204 if ($num-->1)
205 $query0 .= ", ";
206 }
207 }
208
209 if (!empty($_GET["fSortBy"]))
210 {
211 $val=substr($_GET["fSortBy"], 0, -1);
212 $query0 .= " ORDER BY " . GetTable($fromtable,$val) . " ";
213 if (substr($_GET["fSortBy"], -1)=="-")
214 $query0 .= "DESC";
215 }
216
217 if (empty($_GET["fSortBy"]) && $groups==0 && $statusgroups==0)
218 $query0 .= "ORDER BY Sequences.fSequenceFirst DESC ";
219
220 if (empty($_GET["fNumStart"]))
221 $_GET["fNumStart"]=0;
222
223 if (empty($_GET["fSendTxt"]))
224 $query0 .= " LIMIT " . $_GET["fNumStart"] . ", " . $_GET["fNumResults"];
225
226 return $query0;
227 }
228
229 function InitGet($_GET)
230 {
231 // Find out whether it is the first call to the php script
232 $first = empty($_GET["fRunMin"]) && empty($_GET["fRunMax"]);
233
234 if (empty($_GET["fNumResults"]))
235 $_GET["fNumResults"]="100";
236
237 if (empty($_GET["fRunStart"]))
238 $_GET["fRunStart"]=$first?"On":"";
239
240 if (empty($_GET["fRunTime/60"]))
241 $_GET["fRunTime/60"]=$first?"On":"";
242
243 if (empty($_GET["fZenithDistanceMin"]))
244 $_GET["fZenithDistanceMin"]=$first?"On":"";
245
246 if (empty($_GET["fZenithDistanceMax"]))
247 $_GET["fZenithDistanceMax"]=$first?"On":"";
248
249 if (empty($_GET["fSourceName"]))
250 $_GET["fSourceName"]=$first?"On":"";
251
252 if (empty($_GET["fObservationModeName"]))
253 $_GET["fObservationModeName"]=$first?"On":"";
254
255 if (empty($_GET["fUnsuitableInner"]))
256 $_GET["fUnsuitableInner"]=$first?"On":"";
257
258 if (empty($_GET["fUnreliableInner"]))
259 $_GET["fUnreliableInner"]=$first?"On":"";
260
261 if (empty($_GET["fIsolatedInner"]))
262 $_GET["fIsolatedInner"]=$first?"On":"";
263
264 if (empty($_GET["fIsolatedMaxCluster"]))
265 $_GET["fIsolatedMaxCluster"]=$first?"On":"";
266
267// if (empty($_GET["fArrTimeMeanInner"]))
268// $_GET["fArrTimeMeanInner"]=$first?"On":"";
269
270 if (empty($_GET["fArrTimeRmsInner"]))
271 $_GET["fArrTimeRmsInner"]=$first?"On":"";
272
273 if (empty($_GET["fMeanPedRmsInner"]))
274 $_GET["fMeanPedRmsInner"]=$first?"On":"";
275
276 if (empty($_GET["fPulsePosMean"]))
277 $_GET["fPulsePosMean"]=$first?"On":"";
278
279 if (empty($_GET["fConvFactorInner"]))
280 $_GET["fConvFactorInner"]=$first?"On":"";
281
282 if (empty($_GET["fInhomogeneity"]))
283 $_GET["fInhomogeneity"]=$first?"On":"";
284
285 if (empty($_GET["fPSF"]))
286 $_GET["fPSF"]=$first?"On":"";
287
288 if (empty($_GET["fMuonNumber"]))
289 $_GET["fMuonNumber"]=$first?"On":"";
290
291 if (empty($_GET["fEffOnTime/fRunTime"]))
292 $_GET["fEffOnTime/fRunTime"]=$first?"On":"";
293
294 if (empty($_GET["fMuonRate"]))
295 $_GET["fMuonRate"]=$first?"On":"";
296
297 if (empty($_GET["fDataRate"]))
298 $_GET["fDataRate"]=$first?"On":"";
299
300// if (empty($_GET["fMaxHumidity"]))
301// $_GET["fMaxHumidity"]=$first?"On":"";
302
303 if (empty($_GET["fBrightnessMed"]))
304 $_GET["fBrightnessMed"]=$first?"On":"";
305
306 if (empty($_GET["fNumStarsMed"]))
307 $_GET["fNumStarsMed"]=$first?"On":"";
308
309 if (empty($_GET["fNumStarsCorMed"]))
310 $_GET["fNumStarsCorMed"]=$first?"On":"";
311
312 if (empty($_GET["fOff"]))
313 $_GET["fOff"]=$first?"On":"";
314
315 if (empty($_GET["fLinks"]))
316 $_GET["fLinks"]=$first?"On":"";
317
318 if (empty($_GET["fOnlyOff"]))
319 $_GET["fOnlyOff"]=$first?"Off":"";
320
321 InitFindOffData($_GET, $first);
322 }
323
324 function PrintForm($_GET, $host, $user, $pw, $db, $limitsmean, $limitsmin, $limitsmax, $alias)
325 {
326 printf("<center>\n");
327 printf("<form action='builddatasets.php' METHOD='GET'>\n");
328 printf("<input id='sh' type='hidden' name='fShowHide' value='");
329 if (!empty($_GET["fShowHide"]))
330 printf("%s", $_GET["fShowHide"]);
331 else
332 printf("1000000000");
333 printf("'>\n");
334 printf("<img id='allbutton' src='minus.png' alt='-' onclick='showhide(\"all\")'> <b>Menu</b>&nbsp;&nbsp;&nbsp;&nbsp;\n");
335 printf("&nbsp;&nbsp;<img id='infobutton' src='plus.png' alt='+' onClick='showhide(\"info\");showhide(\"info2\")'> SequInfo \n");
336 printf("&nbsp;&nbsp;<img id='statbutton' src='plus.png' alt='+' onClick='showhide(\"stat\");showhide(\"fail\")'> StatusInfo \n");
337 printf("&nbsp;&nbsp;<img id='calbutton' src='plus.png' alt='+' onClick='showhide(\"cal\")'> CalInfo \n");
338 printf("&nbsp;&nbsp;<img id='starbutton' src='plus.png' alt='+' onClick='showhide(\"star\")'> StarInfo \n");
339 printf("&nbsp;&nbsp;<img id='limitsbutton' src='plus.png' alt='+' onClick='showhide(\"limits\")'> Limits \n");
340 printf("&nbsp;&nbsp;<img id='rangesbutton' src='plus.png' alt='+' onClick='showhide(\"ranges\")'> Ranges \n");
341
342 printf(" <div id='all' style='display:block'>");
343
344 PrintSequInfo2Menu($host,$user,$pw,$db);
345 PrintSequInfoMenu();
346 PrintSequStatMenu();
347 PrintFailMenu();
348 PrintCalMenu();
349 PrintStarMenu();
350 PrintLimitsMenu($limitsmean, $limitsmin, $limitsmax, $alias, "");
351
352 printf(" <div id='ranges' style='display:none'>");
353 PrintZdRangeMenu($host,$user,$pw,$db);
354 PrintSequRangeMenu($host,$user,$pw,$db);
355 printf("<p>");
356 PrintSourceMenu($host,$user,$pw,$db);
357 PrintNightRangeMenu($host,$user,$pw,$db, "Sequences");
358 PrintStarRangeMenu($host,$user,$pw,$db);
359 printf("<p>");
360 printf("</div>");
361
362 printf("</div>");
363 printf(" <P>\n");
364
365 PrintNumResPullDown();
366
367 ini_set("mysql.trace_mode", "Off");
368 ini_set("display_errors", "Off");
369
370 PrintButtons("builddatasets.php");
371
372 $sequon=" ";
373 $sequoff=" ";
374 foreach($_POST as $key => $val)
375 if ($val=="On")
376 {
377 if (ereg("ON$", $key))
378 $sequon.=str_replace("ON", " ", $key);
379 if (ereg("Off$", $key))
380 $sequoff.=str_replace("Off", " ", $key);
381 }
382 printf("<input name='Set' type='hidden' value='%s'>\n", $sequon);
383 printf("<input name='Set2' type='hidden' value='%s'>\n", $sequoff);
384 printf("<input name='name' type='hidden' value='%s'>\n", $_POST["name"]);
385 printf("<input name='comment' type='hidden' value='%s'>\n", $_POST["comment"]);
386 printf("<input name='obsmode' type='hidden' value='%s'>\n", $_POST["fObservationModeKEY"]);
387 printf("<input name='username' type='hidden' value='%s'>\n", $_POST["fUserKEY"]);
388 printf("</form>\n");
389 printf("</center>\n");
390 printf("</td>\n");
391 printf("</tr>\n");
392 printf("<tr class='Block'>\n");
393 printf("<td>\n");
394 }
395
396 function PrintPage($html, $host, $user, $pw, $db, $alias, $rightalign, $checkwhere, $checkgroup, $checkstatusgroup, $limitsmean, $limitsmin, $limitsmax, $needs)
397 {
398 $db_id = mysql_pconnect($host, $user, $pw);
399 if ($db_id==FALSE)
400 {
401 printf("mysql_connect returned the following error: %s\n", mysql_error());
402 die("");
403 }
404 mysql_select_db($db);
405
406 $query0 = CreateQuery($_GET, $alias, $checkwhere, $checkgroup, $checkstatusgroup, $needs);
407
408 $result0 = mysql_query($query0, $db_id);
409
410 if ($result0)
411 {
412 if ($html=="1" || $html=="2")
413 {
414 PrintMagicTable($result0, $alias, $rightalign, $limitsmean, $limitsmin, $limitsmax, "yes", $_GET);
415 foreach($_POST as $key => $val)
416 if ($val=="On")
417 {
418 if (ereg("ON$", $key))
419 $sequon.=str_replace("ON", " ", $key);
420 if (ereg("Off$", $key))
421 $sequoff.=str_replace("Off", " ", $key);
422 }
423
424 printf("<input type='submit' value='Get Dataset'><br><br>\n");
425 printf("<input name='submit' type='hidden' value='post'>\n");
426
427 $on=str_replace(" ", ",", trim($sequon));
428 $off=str_replace(" ", ",", trim($sequoff));
429
430 $values=array("Sum(fRunTime)/60" => $runtime,
431 "Min(fRunTime)/60" => $runtimemin,
432 "Max(fUnsuitableInner)" => $unsuitablemax,
433 "Max(fUnreliableInner)" => $unreliablemax,
434 "Max(fIsolatedInner)" => $isolatedmax,
435 "Max(fIsolatedMaxCluster)" => $imcmax,
436 "Max(fArrTimeMeanInner)" => $arrtimemax,
437 "Min(fArrTimeMeanInner)" => $arrtimemin,
438 "Max(fArrTimeRmsInner)" => $arrtimermsmax,
439 "Avg(fMeanPedRmsInner)" => $pedrmsmean,
440 "Std(fMeanPedRmsInner)" => $pedrmsrms,
441 "Min(fMeanPedRmsInner)" => $pedrmsmin,
442 "Max(fMeanPedRmsInner)" => $pedrmsmax,
443 "Min(fPulsePosMean)" => $pulseposmin,
444 "Max(fPulsePosMean)" => $pulseposmax,
445 "Max(fPulsePosRms)" => $pulseposrmsmax,
446 "Max(fMaxHumidity)" => $hummax,
447 "Max(fInhomogeneity)" => $inhommax,
448 "Avg(fInhomogeneity)" => $inhommean,
449 "Std(fInhomogeneity)" => $inhomrms,
450 "Min(fMeanNumberIslands)" => $numislmin,
451 "Max(fMeanNumberIslands)" => $numislmax,
452 "Min(fDataRate)" => $clratemin,
453 "Max(fDataRate)" => $clratemax,
454 "Min(fMuonRate)" => $muonratemin,
455 "Max(fMuonRate)" => $muonratemax,
456 "Min(fMuonNumber)" => $muonnumbermin,
457 "Avg(fPSF)" => $psfmean,
458 "Std(fPSF)" => $psfrms,
459 "Min(fPSF)" => $psfmin,
460 "Max(fPSF)" => $psfmax,
461 "Min(fEffOnTime/fRunTime)" => $relontimemin,
462 "Max(fEffOnTime/fRunTime)" => $relontimemax,
463 "Min(fBrightnessMed)" => $brightmin,
464 "Max(fBrightnessMed)" => $brightmax,
465 "Min(fNumStarsMed)" => $idstarsmin,
466 "Max(fNumStarsMed)" => $idstarsmax,
467 "Min(fNumStarsCorMed)" => $corstarsmin,
468 "Max(fNumStarsCorMed)" => $corstarsmax,
469 "Min(fZenithDistanceMin)" => $zdmin,
470 "Max(fZenithDistanceMax)" => $zdmax,
471 "Min(fRunStart)" => $starttime,
472 "Max(fRunStop)" => $stoptime,
473 );
474 //get runtimes of dataset
475 function GetSequenceValues($db_id, $sequences, $txt, &$values)
476 {
477 $query="SELECT COUNT(*) ";
478 foreach($values as $name => $varname)
479 $query.=", " . $name;
480 $query.=" FROM Sequences ";
481 $query.=" LEFT JOIN Calibration USING(fSequenceFirst,fTelescopeNumber) ";
482 $query.=" LEFT JOIN Star USING(fSequenceFirst,fTelescopeNumber) ";
483 $query.=" WHERE Sequences.fSequenceFirst IN (" . $sequences . ")";
484 $result = mysql_query($query, $db_id);
485 $row = mysql_fetch_assoc($result);
486 foreach($values as $name => $varname)
487 $values[$name][$txt]=$row[$name];
488 mysql_free_result($result);
489 }
490
491 //get next dataset#
492 $query="SELECT fDataSetNumber+1 FROM DataSets ORDER BY fDataSetNumber DESC LIMIT 0,1";
493 $result = mysql_query($query, $db_id);
494 $row = mysql_fetch_assoc($result);
495 $dataset=$row["fDataSetNumber+1"];
496 if (empty($dataset))
497 $dataset=1;
498 mysql_free_result($result);
499
500 //get sourcenames
501 function GetSources($db_id, $sequences)
502 {
503 $query="SELECT fSourceName FROM Source LEFT JOIN Sequences USING(fSourceKEY) ";
504 $query.="WHERE fSequenceFirst IN (" . $sequences . ") GROUP BY fSourceName";
505 $result = mysql_query($query, $db_id);
506 while ($row = mysql_fetch_assoc($result))
507 $sources.=" " . $row["fSourceName"];
508 mysql_free_result($result);
509 return $sources;
510 }
511 $sourceson=GetSources($db_id, $on);
512 $sourcesoff=GetSources($db_id, $off);
513
514 //get sourcename for dataset
515 $son=str_replace(" ", "','", trim($sourceson));
516 $query="SELECT fRealSourceKEY, Count(*) FROM Source where fSourcename IN ('" . $son . "') GROUP BY fRealSourceKEY";
517// printf("q: %s <br>", $query);
518 $result = mysql_query($query, $db_id);
519 $row = mysql_fetch_assoc($result);
520 $numsources=$row["Count(*)"];
521 $numrealkeys=mysql_num_rows($result);
522 $realsourcekey=$row["fRealSourceKEY"];
523 mysql_free_result($result);
524// printf("found %s sources with real sourcekey %s", $numsources, $realsourcekey);
525// printf("found %s keys", $numrealkeys);
526
527 //check observationmode for on-sequences
528 $query="SELECT fObservationModeKEY FROM Sequences where fSequenceFirst IN (" . $on . ") GROUP BY fObservationModeKEY";
529 $result = mysql_query($query, $db_id);
530 $numobskeys=mysql_num_rows($result);
531 mysql_free_result($result);
532
533 //check dt for on-sequences
534 $query="SELECT fDiscriminatorThresholdTableKEY FROM Sequences where fSequenceFirst IN (" . $on . ") GROUP BY fDiscriminatorThresholdTableKEY";
535 $result = mysql_query($query, $db_id);
536 $numdtkeys=mysql_num_rows($result);
537 mysql_free_result($result);
538
539
540 //set limit
541 $runtimelimit=5;
542 $unsuitablemaxlimit=15;
543 $isolatedlimit=0;
544 $imclimit=0;
545 $pedrmsrms=0.09;
546 $scalelimit=1.3;
547 $inhomlimit=13;
548 $numstarslimit=20;
549 $numstarscorlimit=10;
550
551
552 //check values for infos, warnings and errors
553 $numerr=0;
554 if (!empty($on))
555 {
556 $color=array("INFO" => "#000000",
557 "WARN" => "#FF9900",
558 "ERROR" => "#FF0000");
559 printf("<div align='left'><font><ul>\n");
560 $vals=array("on", "off");
561 foreach($vals as $num => $val)
562 {
563 if (empty(${$val}))
564 continue;
565 GetSequenceValues($db_id, ${$val}, $val, $values);
566
567 if ($values["Min(fNumStarsCorMed)"][$val]<$numstarscorlimit)
568 printf("<li style='color:%s'>%s: one of your %s-sequences has less than %s correlated stars (%s)</li>",
569 $color["WARN"], "WARN", $val, $numstarscorlimit, $values["Min(fNumStarsCorMed)"][$val]);
570 if ($values["Min(fNumStarsMed)"][$val]<$numstarslimit)
571 printf("<li style='color:%s'>%s: one of your %s-sequences has less than %s identified stars (%s)</li>",
572 $color["WARN"], "WARN", $val, $numstarslimit, $values["Min(fNumStarsMed)"][$val]);
573 if ($values["Min(fRunTime)/60"][$val]<$runtimelimit)
574 printf("<li style='color:%s'>%s: one of your %s-sequences is shorter than %s min (%s min)</li>",
575 $color["INFO"], "INFO", $val, $runtimelimit, $values["Min(fRunTime)/60"][$val]);
576 if ($values["Max(fInhomogeneity)"][$val]>$inhomlimit)
577 printf("<li style='color:%s'>%s: one of your %s-sequences has an inhomogeneity larger than %s (%s)</li>",
578 $color["WARN"], "WARN", $val, $inhomlimit, $values["Max(fInhomogeneity)"][$val]);
579 if ($values["Max(fUnsuitableInner)"][$val]>$unsuitablemaxlimit)
580 printf("<li style='color:%s'>%s: one of your %s-sequences has more than %s unsuitable inner pixel (%s)</li>",
581 $color["WARN"], "WARN", $val, $unsuitablemaxlimit, $values["Max(fUnsuitableInner)"][$val]);
582 if ($values["Max(fIsolatedInner)"][$val]>$isolatedlimit)
583 printf("<li style='color:%s'>%s: one of your %s-sequences has more than %s isolated inner pixel (%s)</li>",
584 $color["WARN"], "WARN", $val, $isolatedlimit, $values["Max(fIsolatedInner)"][$val]);
585 if ($values["Max(fIsolatedMaxCluster)"][$val]>$imclimit)
586 printf("<li style='color:%s'>%s: one of your %s-sequences has more than %s isolated max cluster (%s)</li>",
587 $color["WARN"], "WARN", $val, $imclimit, $values["Max(fIsolatedMaxCluster)"][$val]);
588 }
589 if (!empty($on) && $values["Max(fMeanPedRmsInner)"]["on"]>$values["Avg(fMeanPedRmsInner)"]["on"]+$pedrmsrms)
590 printf("<li style='color:%s'>%s: one of your on-sequences has a PedRms larger than %s (%s)</li>",
591 $color["WARN"], "WARN", $values["Avg(fMeanPedRmsInner)"]["on"]+$pedrmsrms, $values["Max(fMeanPedRmsInner)"]["on"]);
592 if (!empty($off) && $values["Max(fMeanPedRmsInner)"]["off"]>$values["Avg(fMeanPedRmsInner)"]["on"]+$pedrmsrms)
593 printf("<li style='color:%s'>%s: one of your off-sequences has a PedRms larger than %s (%s)</li>",
594 $color["WARN"], "WARN", $values["Avg(fMeanPedRmsInner)"]["on"]+$pedrmsrms, $values["Max(fMeanPedRmsInner)"]["off"]);
595 if (!empty($off) && $values["Min(fMeanPedRmsInner)"]["off"]<$values["Avg(fMeanPedRmsInner)"]["on"]-$pedrmsrms)
596 printf("<li style='color:%s'>%s: one of your off-sequences has a PedRms smaller than %s (%s)</li>",
597 $color["WARN"], "WARN", $values["Avg(fMeanPedRmsInner)"]["on"]-$pedrmsrms, $values["Min(fMeanPedRmsInner)"]["off"]);
598 $scale=$values["Sum(fRunTime)/60"]["on"]/$values["Sum(fRunTime)/60"]["off"];
599 if ($scale > $scalelimit)
600 printf("<li style='color:%s'>%s: Your scale factor is larger than %s (%0.2f). Try to find more offdata!",
601 $color["WARN"], "WARN", $scalelimit, $scale);
602 /*
603 if (str_word_count($sourceson) > 1)
604 printf("<li style='color:%s'>%s: You have selected more than one (%s) on source",
605 $color["WARN"], "WARN", str_word_count($sourceson));
606 */
607 $doubleseq=0;
608// printf("finding: %s<br>", $sequon);
609 foreach(explode(" ", $sequon) as $n => $s)
610 {
611// printf("finding %s in %s <br>", $s, $sequoff);
612 if (ereg($s, $sequoff))
613 $doubleseq++;
614 }
615 if ($doubleseq>0)
616 {
617 printf("<li style='color:%s'>%s: You have selected sequences (%s) as On AND Off",
618 $color["ERROR"], "ERROR", $doubleseq);
619 $numerr=$numerr+1;
620 }
621 if ($numrealkeys>1)
622 {
623 printf("<li style='color:%s'>%s: You have selected more than one (%s) on source",
624 $color["ERROR"], "ERROR", $numrealkeys);
625 $numerr=$numerr+1;
626 }
627 if ($numobskeys>1)
628 {
629 printf("<li style='color:%s'>%s: You have selected more than one (%s) different observation modes for your on sequences",
630 $color["ERROR"], "WARN", $numobskeys);
631// $numerr=$numerr+1;
632 }
633 if ($numdtkeys>1)
634 {
635 printf("<li style='color:%s'>%s: Your selected on sequences have more than one (%s) different discriminator threshold tables ",
636 $color["ERROR"], "WARN", $numdtkeys);
637 }
638 if (empty($_POST["fObservationModeKEY"]) && !empty($_GET["obsmode"]))
639 $_POST["fObservationModeKEY"]=$_GET["obsmode"];
640 if ($_POST["fObservationModeKEY"]==3 && empty($off))
641 {
642 printf("<li style='color:%s'>%s: You have selected on/off mode, but you haven't chosen any off sequences.",
643 $color["ERROR"], "WARN");
644// $numerr=$numerr+1;
645 }
646 if (empty($realsourcekey))
647 {
648 printf("<li style='color:%s'>%s: The source you selected doesn't have a real sourcekey yet. Please insert fRealSourceKEY in the DB for %s",
649 $color["ERROR"], "ERROR", $sourceson);
650 $numerr=$numerr+1;
651 }
652 if (empty($_POST["fObservationModeKEY"]))
653 {
654 printf("<li style='color:%s'>%s: You have to choose an observation mode.",
655 $color["ERROR"], "ERROR");
656 $numerr=$numerr+1;
657 }
658 if (empty($_POST["fUserKEY"]))
659 {
660 printf("<li style='color:%s'>%s: You have to choose your username.",
661 $color["ERROR"], "ERROR");
662 $numerr=$numerr+1;
663 }
664 if (empty($_POST["name"]))
665 {
666 printf("<li style='color:%s'>%s: You have to choose a name.",
667 $color["ERROR"], "ERROR");
668 $numerr=$numerr+1;
669 }
670 if (empty($_POST["comment"]))
671 {
672 printf("<li style='color:%s'>%s: You have to comment your dataset.",
673 $color["ERROR"], "ERROR");
674 $numerr=$numerr+1;
675 }
676 // printf("<li></li>");
677 printf("</ul></font>\n");
678
679 printf("<div align='left'>");
680 printf("SequencesOn: %s<br>", $sequon);
681 printf("SequencesOff: %s<br>", $sequoff);
682 $insquery[0]="INSERT DataSets SET fDataSetNumber=" . $dataset . ", fUserKEY=" . $_POST["fUserKEY"];
683 $insquery[0].=", fComment='" . $_POST["comment"] . "', fObservationModeKEY=" . $_POST["fObservationModeKEY"];
684 $insquery[0].=", fDataSetName='" . $_POST["name"] . "', fSourceKEY= " . $realsourcekey;
685 $insquery[0].=", fRunStart='" . $values["Min(fRunStart)"]["on"];
686 $insquery[0].="', fRunStop='" . $values["Max(fRunStop)"]["on"];
687 $insquery[0].="', fZenithDistanceMin=" . $values["Min(fZenithDistanceMin)"]["on"];
688 $insquery[0].=", fZenithDistanceMax=" . $values["Max(fZenithDistanceMax)"]["on"];
689 $insquery[0].=", fRunTime=" . $values["Sum(fRunTime)/60"]["on"];
690 $insquery[1]="INSERT DataSetProcessStatus SET fDataSetNumber=" . $dataset . ", fDataSetInserted=Now()";
691 $i=2;
692 foreach(explode(" ", trim($sequon)) as $key => $sequ)
693 {
694 $insquery[$i]="INSERT DataSetSequenceMapping SET fDataSetNumber=" . $dataset;
695 $insquery[$i].=", fSequenceFirst=" . $sequ . ", fOnOff=1";
696 $i=$i+1;
697 }
698 if (!empty($off))
699 {
700 foreach(explode(" ", trim($sequoff)) as $key => $sequ)
701 {
702 $insquery[$i]="INSERT DataSetSequenceMapping SET fDataSetNumber=" . $dataset;
703 $insquery[$i].=", fSequenceFirst=" . $sequ . ", fOnOff=2";
704 $i=$i+1;
705 }
706 }
707 foreach($insquery as $num => $q)
708 {
709 if (!empty($_POST["insert"]) && $numerr==0)
710 {
711 printf("Inserted Query #%s: %s<br>", $num, $q);
712 $insresult=mysql_query($q);
713 if (mysql_errno()>0)
714 printf("&nbsp; Errorno: %s <br>", mysql_errno());
715 if (mysql_error()!="")
716 printf("&nbsp; Errormsg: %s <br>", mysql_error());
717 if (mysql_info()!="")
718 printf("&nbsp; Info: %s <br>", mysql_info());
719 printf("&nbsp; Affected Rows: %s <br>", mysql_affected_rows());
720 mysql_free_result($insresult);
721 if (mysql_errno()>0)
722 {
723 printf("ERROR => stop inserting");
724 break;
725 }
726 }
727 }
728 printf("</div>");
729 if (empty($_POST["name"]) && !empty($_GET["name"]))
730 $_POST["name"]=$_GET["name"];
731 if (empty($_POST["comment"]) && !empty($_GET["comment"]))
732 $_POST["comment"]=$_GET["comment"];
733 if (empty($_POST["fUserKEY"]) && !empty($_GET["username"]))
734 $_POST["fUserKEY"]=$_GET["username"];
735 printf("Name: &nbsp;<input name='name' type='text' size='20' maxlength='20' value='%s'><br>\n", $_POST["name"]);
736 printf("Comment: &nbsp;<input name='comment' type='text' size='50' maxlength='255' value='%s'><br>\n", $_POST["comment"]);
737
738 $query = "SELECT fObservationModeKEY, fObservationModeName FROM ObservationMode ORDER BY fObservationModeName";
739 $result = mysql_query($query);
740 if (!$result)
741 printf("-N/A-");
742
743 $numrows = mysql_num_rows($result);
744
745 printf("ObservationMode&nbsp;<select name='fObservationModeKEY' size='1' class='Width'>\n");
746 while ($row = mysql_fetch_row($result))
747 {
748 if (!empty($_POST["fObservationModeKEY"]) && $_POST["fObservationModeKEY"]==$row[0])
749 printf("<option value='%s' selected>%s</option>\n", $row[0], $row[1]);
750 else
751 printf("<option value='%s'>%s</option>\n", $row[0], $row[1]);
752 }
753 printf("</select><br>\n");
754 mysql_free_result($result);
755
756 $query = "SELECT fUserKEY, fUserName FROM User ORDER BY fUserKEY";
757 $result = mysql_query($query);
758 if (!$result)
759 printf("-N/A-");
760
761 $numrows = mysql_num_rows($result);
762
763 printf("UserName&nbsp;<select name='fUserKEY' size='1' class='Width'>\n");
764 while ($row = mysql_fetch_row($result))
765 {
766 if (!empty($_POST["fUserKEY"]) && $_POST["fUserKEY"]==$row[0])
767 printf("<option value='%s' selected>%s</option>\n", $row[0], $row[1]);
768 else
769 printf("<option value='%s'>%s</option>\n", $row[0], $row[1]);
770 }
771 printf("</select><br>\n");
772 mysql_free_result($result);
773
774 if ($numerr!=0)
775 {
776 printf("Remark: only datasets without errors can be inserted.<br>");
777 printf("Your dataset has %s error(s).<br>", $numerr);
778 }
779 printf("<input type='checkbox' name='insert' value='On'>insert\n");
780
781 printf("<table><tr><td colspan='2' align='center'>Dataset</td></tr>");
782 printf("<tr><td>proposed DataSet#: </td><td>%s</td></tr>", $dataset);
783 printf("<tr><td valign='top'>SequencesOn:</td><td> %s</td></tr>", $sequon);
784 if (!empty($sequoff))
785 printf("<tr><td valign='top'>SequencesOff:</td><td> %s</td></tr>", $sequoff);
786 printf("<tr><td>Scale: </td><td>%0.2f</td></tr>", $scale);
787 printf("<tr><td>SourcenamesOn[%s]: </td><td>%s</td></tr>", str_word_count($sourceson), $sourceson);
788 printf("<tr><td>SourcenamesOff[%s]: </td><td>%s</td></tr>", str_word_count($sourcesoff), $sourcesoff);
789 printf("</table>\n");
790
791 printf("<table border='1'>\n");
792 printf("<tr><td>Value</td><td>On</td>");
793 if (!empty($off))
794 printf("<td>Off</td></tr>\n");
795 foreach($values as $name => $varname)
796 {
797 printf("<tr><td>%s</td>\n", $name);
798 foreach($vals as $num => $val)
799 if (!empty(${$val}))
800 printf("<td>%s</td>\n", $varname[$val]);
801 printf("</tr>\n");
802 }
803 printf("</table>\n");
804 }
805
806 printf("</div>\n");
807 /*
808 printf("<table border='1'><tr>\n");
809 printf("<td>--</td>\n");
810 foreach($values as $name => $varname)
811 printf("<td>%s</td>\n", $name);
812 $vals=array("on", "off");
813 foreach($vals as $num => $val)
814 {
815 GetSequenceValues($db_id, ${$val}, $val, $values);
816 printf("</tr><tr>\n");
817 printf("<td>On</td>\n");
818 foreach($values as $name => $varname)
819 printf("<td>%s</td>\n", $varname[$val]);
820 }
821 printf("</tr></table>\n");
822 */
823
824 printf("</center>\n");
825 printf("</td>\n");
826 printf("</tr>\n");
827
828 printf("</form>\n");
829 }
830 else
831 PrintText($result0);
832
833 mysql_free_result($result0);
834 }
835 mysql_close($db_id);
836
837 PrintSubmittedQuery($query0, $html, $db, "");
838 }
839
840 include ("include.php");
841 include ("menu.php");
842 include ("db.php");
843 include ("magicdefs.php");
844
845 ini_set("display_errors", "On");
846 ini_set("mysql.trace_mode", "On");
847
848 $sitepw="\$1\$ml/Gld67\$zOvhC4vFrLCkbAzQs2swo1";
849 $siteuser="dcdb";
850
851
852 if (!isset($_SERVER['PHP_AUTH_USER']) || crypt($_SERVER['PHP_AUTH_PW'], $sitepw)!=$sitepw || $_SERVER['PHP_AUTH_USER']!=$siteuser)
853 {
854 header('WWW-Authenticate: Basic realm="Build Datasets"');
855 header('HTTP/1.0 401 Unauthorized');
856 echo 'Cancelled.';
857 return;
858 }
859 else
860 {
861// echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>";
862// echo "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>";
863// printf("pw: %s", crypt($_SERVER['PHP_AUTH_PW']));
864
865 if (crypt($_SERVER['PHP_AUTH_PW'], $sitepw)!=$sitepw || $_SERVER['PHP_AUTH_USER']!=$siteuser)
866 {
867 printf("<br>pw or user incorrect<br>");
868 return;
869 }
870 }
871
872 if (!empty($_GET["fSendTxt"]))
873 {
874 header("Content-type: application/octet");
875 header("Content-Disposition: attachment; filename=query-result.txt");
876
877 PrintPage("0", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere, $checkgroup, $checkstatusgroup, $limitsmean, $limitsmin, $limitsmax, $needs);
878 }
879 else
880 {
881 echo (file_get_contents("index-header.html"));
882
883 $environment = sizeof($_GET);
884
885 InitGet($_GET);
886 if (empty($_GET["fPrintTable"]))
887 PrintForm($_GET, $host, $user, $pw, $db, $limitsmean, $limitsmin, $limitsmax, $alias);
888
889 if ($environment==0)
890 printf("No query submitted yet.<BR>");
891 else
892 {
893 if (empty($_GET["fPrintTable"]))
894 PrintPage("1", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere, $checkgroup, $checkstatusgroup, $limitsmean, $limitsmin, $limitsmax, $needs);
895 else
896 PrintPage("2", $host, $user, $pw, $db, $alias, $rightalign, $checkwhere, $checkgroup, $checkstatusgroup, $limitsmean, $limitsmin, $limitsmax, $needs);
897 }
898
899 echo (file_get_contents("index-footer.html"));
900 }
901
902 ini_set("display_errors", "Off");
903 ini_set("mysql.trace_mode", "Off");
904}
905?>
Note: See TracBrowser for help on using the repository browser.