1 | <?php
|
---|
2 | /*
|
---|
3 | * cleanup.php
|
---|
4 | *
|
---|
5 | * functions relating to copying results and cleaning up the gfac DB
|
---|
6 | * where the job used an Airavata interface.
|
---|
7 | *
|
---|
8 | */
|
---|
9 |
|
---|
10 | $email_address = '';
|
---|
11 | $queuestatus = '';
|
---|
12 | $jobtype = '';
|
---|
13 | $db = '';
|
---|
14 | $editXMLFilename = '';
|
---|
15 | $status = '';
|
---|
16 |
|
---|
17 | function aira_cleanup( $us3_db, $reqID, $gfac_link )
|
---|
18 | {
|
---|
19 | global $org_domain;
|
---|
20 | global $dbhost;
|
---|
21 | global $user;
|
---|
22 | global $passwd;
|
---|
23 | global $db;
|
---|
24 | global $guser;
|
---|
25 | global $gpasswd;
|
---|
26 | global $gDB;
|
---|
27 | global $me;
|
---|
28 | global $work;
|
---|
29 | global $email_address;
|
---|
30 | global $queuestatus;
|
---|
31 | global $jobtype;
|
---|
32 | global $editXMLFilename;
|
---|
33 | global $submittime;
|
---|
34 | global $endtime;
|
---|
35 | global $status;
|
---|
36 | global $stderr;
|
---|
37 | global $stdout;
|
---|
38 | global $tarfile;
|
---|
39 | global $requestID;
|
---|
40 | global $submit_dir;
|
---|
41 | $me = 'cleanup_aira.php';
|
---|
42 |
|
---|
43 | $requestID = $reqID;
|
---|
44 | $db = $us3_db;
|
---|
45 | write_log( "$me: debug db=$db; requestID=$requestID" );
|
---|
46 |
|
---|
47 | $us3_link = mysqli_connect( $dbhost, $user, $passwd, $db );
|
---|
48 |
|
---|
49 | if ( ! $us3_link )
|
---|
50 | {
|
---|
51 | write_log( "$me: could not connect: $dbhost, $user, $passwd, $db" );
|
---|
52 | mail_to_user( "fail", "Internal Error $requestID\nCould not connect to DB" );
|
---|
53 | return( -1 );
|
---|
54 | }
|
---|
55 |
|
---|
56 | // First get basic info for email messages
|
---|
57 | $query = "SELECT email, investigatorGUID, editXMLFilename FROM HPCAnalysisRequest " .
|
---|
58 | "WHERE HPCAnalysisRequestID=$requestID";
|
---|
59 | $result = mysqli_query( $us3_link, $query );
|
---|
60 |
|
---|
61 | if ( ! $result )
|
---|
62 | {
|
---|
63 | write_log( "$me: Bad query: $query" );
|
---|
64 | mail_to_user( "fail", "Internal Error $requestID\n$query\n" . mysqli_error( $us3_link ) );
|
---|
65 | return( -1 );
|
---|
66 | }
|
---|
67 |
|
---|
68 | list( $email_address, $investigatorGUID, $editXMLFilename ) = mysqli_fetch_array( $result );
|
---|
69 |
|
---|
70 | $query = "SELECT personID FROM people " .
|
---|
71 | "WHERE personGUID='$investigatorGUID'";
|
---|
72 | $result = mysqli_query( $us3_link, $query );
|
---|
73 |
|
---|
74 | list( $personID ) = mysqli_fetch_array( $result );
|
---|
75 |
|
---|
76 | $query = "SELECT clusterName, submitTime, queueStatus, analType " .
|
---|
77 | "FROM HPCAnalysisRequest h, HPCAnalysisResult r " .
|
---|
78 | "WHERE h.HPCAnalysisRequestID=$requestID " .
|
---|
79 | "AND h.HPCAnalysisRequestID=r.HPCAnalysisRequestID";
|
---|
80 |
|
---|
81 | $result = mysqli_query( $us3_link, $query );
|
---|
82 |
|
---|
83 | if ( ! $result )
|
---|
84 | {
|
---|
85 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
86 | return( -1 );
|
---|
87 | }
|
---|
88 |
|
---|
89 | if ( mysqli_num_rows( $result ) == 0 )
|
---|
90 | {
|
---|
91 | write_log( "$me: US3 Table error - No records for requestID: $requestID" );
|
---|
92 | return( -1 );
|
---|
93 | }
|
---|
94 |
|
---|
95 | list( $cluster, $submittime, $queuestatus, $jobtype ) = mysqli_fetch_array( $result );
|
---|
96 |
|
---|
97 | // Get the GFAC ID
|
---|
98 | $query = "SELECT HPCAnalysisResultID, gfacID, endTime FROM HPCAnalysisResult " .
|
---|
99 | "WHERE HPCAnalysisRequestID=$requestID";
|
---|
100 |
|
---|
101 | $result = mysqli_query( $us3_link, $query );
|
---|
102 |
|
---|
103 | if ( ! $result )
|
---|
104 | {
|
---|
105 | write_log( "$me: Bad query: $query" );
|
---|
106 | mail_to_user( "fail", "Internal Error $requestID\n$query\n" . mysqli_error( $us3_link ) );
|
---|
107 | return( -1 );
|
---|
108 | }
|
---|
109 |
|
---|
110 | list( $HPCAnalysisResultID, $gfacID, $endtime ) = mysqli_fetch_array( $result );
|
---|
111 |
|
---|
112 | // Get data from global GFAC DB then insert it into US3 DB
|
---|
113 |
|
---|
114 | /*
|
---|
115 | $result = mysqli_select_db( $gfac_link, $gDB );
|
---|
116 |
|
---|
117 | if ( ! $result )
|
---|
118 | {
|
---|
119 | write_log( "$me: Could not connect to DB $gDB" );
|
---|
120 | mail_to_user( "fail", "Internal Error $requestID\nCould not connect to DB $gDB" );
|
---|
121 | return( -1 );
|
---|
122 | }
|
---|
123 | */
|
---|
124 |
|
---|
125 | $query = "SELECT status, cluster, id FROM analysis " .
|
---|
126 | "WHERE gfacID='$gfacID'";
|
---|
127 |
|
---|
128 | $result = mysqli_query( $gfac_link, $query );
|
---|
129 | if ( ! $result )
|
---|
130 | {
|
---|
131 | write_log( "$me: Could not select GFAC status for $gfacID" );
|
---|
132 | mail_to_user( "fail", "Could not select GFAC status for $gfacID" );
|
---|
133 | return( -1 );
|
---|
134 | }
|
---|
135 |
|
---|
136 | list( $status, $cluster, $id ) = mysqli_fetch_array( $result );
|
---|
137 |
|
---|
138 | $is_us3iab = preg_match( "/us3iab/", $cluster );
|
---|
139 | $is_local = preg_match( "/-local/", $cluster );
|
---|
140 |
|
---|
141 | if ( $is_us3iab || $is_local )
|
---|
142 | {
|
---|
143 | $clushost = $cluster;
|
---|
144 | $clushost = preg_replace( "/\-local/", "", $clushost );
|
---|
145 | get_local_files( $gfac_link, $clushost, $requestID, $id, $gfacID );
|
---|
146 | }
|
---|
147 |
|
---|
148 |
|
---|
149 | $query = "SELECT id FROM analysis " .
|
---|
150 | "WHERE gfacID='$gfacID'";
|
---|
151 |
|
---|
152 | $result = mysqli_query( $gfac_link, $query );
|
---|
153 |
|
---|
154 | if ( ! $result )
|
---|
155 | {
|
---|
156 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
157 | mail_to_user( "fail", "Internal error " . mysqli_error( $gfac_link ) );
|
---|
158 | return( -1 );
|
---|
159 | }
|
---|
160 |
|
---|
161 | list( $analysisID ) = mysqli_fetch_array( $result );
|
---|
162 |
|
---|
163 | // Get the request guid (LIMS submit dir name)
|
---|
164 | $query = "SELECT HPCAnalysisRequestGUID FROM HPCAnalysisRequest " .
|
---|
165 | "WHERE HPCAnalysisRequestID = $requestID ";
|
---|
166 | $result = mysqli_query( $us3_link, $query );
|
---|
167 |
|
---|
168 | if ( ! $result )
|
---|
169 | {
|
---|
170 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
171 | }
|
---|
172 |
|
---|
173 | list( $requestGUID ) = mysqli_fetch_array( $result );
|
---|
174 | $output_dir = "$submit_dir/$requestGUID";
|
---|
175 |
|
---|
176 | // Get stderr,stdout,tarfile from work directory
|
---|
177 | if ( ! is_dir( "$output_dir" ) ) mkdir( "$output_dir", 0770 );
|
---|
178 | chdir( "$output_dir" );
|
---|
179 | //write_log( "$me: gfacID=$gfacID" );
|
---|
180 | //write_log( "$me: submit_dir=$submit_dir" );
|
---|
181 | //write_log( "$me: requestGUID=$requestGUID" );
|
---|
182 | write_log( "$me: output_dir=$output_dir" );
|
---|
183 |
|
---|
184 | $stderr = "";
|
---|
185 | $stdout = "";
|
---|
186 | $tarfile = "";
|
---|
187 | $fn_stderr = "Ultrascan.stderr";
|
---|
188 | $fn_stdout = "Ultrascan.stdout";
|
---|
189 | $fn_tarfile = "analysis-results.tar";
|
---|
190 | $secwait = 10;
|
---|
191 | $num_try = 0;
|
---|
192 | write_log( "$me: fn_tarfile=$fn_tarfile" );
|
---|
193 | while ( ! file_exists( $fn_tarfile ) && $num_try < 3 )
|
---|
194 | {
|
---|
195 | sleep( $secwait );
|
---|
196 | $num_try++;
|
---|
197 | $secwait *= 2;
|
---|
198 | write_log( "$me: tar-exists: num_try=$num_try" );
|
---|
199 | }
|
---|
200 |
|
---|
201 | $ofiles = scandir( $output_dir );
|
---|
202 | foreach ( $ofiles as $ofile )
|
---|
203 | {
|
---|
204 | if ( preg_match( "/^.*stderr$/", $ofile ) )
|
---|
205 | $fn_stderr = $ofile;
|
---|
206 | if ( preg_match( "/^.*stdout$/", $ofile ) )
|
---|
207 | $fn_stdout = $ofile;
|
---|
208 | //write_log( "$me: ofile=$ofile" );
|
---|
209 | }
|
---|
210 | write_log( "$me: fn_stderr=$fn_stderr" );
|
---|
211 | write_log( "$me: fn_stdout=$fn_stdout" );
|
---|
212 | if (file_exists($fn_tarfile)) write_log( "$me: fn_tarfile=$fn_tarfile" );
|
---|
213 | else write_log( "$me: NOT FOUND: $fn_tarfile" );
|
---|
214 |
|
---|
215 | $stderr = '';
|
---|
216 | $stdout = '';
|
---|
217 | $tarfile = '';
|
---|
218 | if ( file_exists( $fn_stderr ) ) $stderr = file_get_contents( $fn_stderr );
|
---|
219 | if ( file_exists( $fn_stdout ) ) $stdout = file_get_contents( $fn_stdout );
|
---|
220 | if ( file_exists( $fn_tarfile ) ) $tarfile = file_get_contents( $fn_tarfile );
|
---|
221 | write_log( "$me(0): length contents stderr,stdout,tarfile -- "
|
---|
222 | . strlen($stderr) . "," . strlen($stdout) . "," . strlen($tarfile) );
|
---|
223 | // If stdout,stderr have no content, retry after delay
|
---|
224 | if ( strlen( $stdout ) == 0 || strlen( $stderr ) == 0 )
|
---|
225 | {
|
---|
226 | sleep( 20 );
|
---|
227 | if ( file_exists( $fn_stderr ) )
|
---|
228 | $stderr = file_get_contents( $fn_stderr );
|
---|
229 | if ( file_exists( $fn_stdout ) )
|
---|
230 | $stdout = file_get_contents( $fn_stdout );
|
---|
231 | }
|
---|
232 |
|
---|
233 | write_log( "$me: length contents stderr,stdout,tarfile -- "
|
---|
234 | . strlen($stderr) . "," . strlen($stdout) . "," . strlen($tarfile) );
|
---|
235 |
|
---|
236 | if ( $cluster == 'alamo' || $cluster == 'alamo-local' )
|
---|
237 | { // Filter "ipath_userinit" lines out of alamo stdout lines
|
---|
238 | $prefln = strlen( $stdout );
|
---|
239 | $output = array();
|
---|
240 | exec( "grep -v 'ipath_userinit' $fn_stdout 2>&1", $output, $err );
|
---|
241 | $stdout = implode( "\n", $output );
|
---|
242 | $posfln = strlen( $stdout );
|
---|
243 | write_log( "$me: fn_stdout : filtered. Length $prefln -> $posfln ." );
|
---|
244 | }
|
---|
245 |
|
---|
246 | // Save queue messages for post-mortem analysis
|
---|
247 | $query = "SELECT message, time FROM queue_messages " .
|
---|
248 | "WHERE analysisID = $analysisID " .
|
---|
249 | "ORDER BY time ";
|
---|
250 | $result = mysqli_query( $gfac_link, $query );
|
---|
251 |
|
---|
252 | if ( ! $result )
|
---|
253 | {
|
---|
254 | // Just log it and continue
|
---|
255 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
256 | }
|
---|
257 |
|
---|
258 | $now = date( 'Y-m-d H:i:s' );
|
---|
259 | $message_log = "US3 DB: $db\n" .
|
---|
260 | "RequestID: $requestID\n" .
|
---|
261 | "GFAC ID: $gfacID\n" .
|
---|
262 | "Processed: $now\n\n" .
|
---|
263 | "Queue Messages\n\n" ;
|
---|
264 | if ( mysqli_num_rows( $result ) > 0 )
|
---|
265 | {
|
---|
266 | while ( list( $message, $time ) = mysqli_fetch_array( $result ) )
|
---|
267 | $message_log .= "$time $message\n";
|
---|
268 | }
|
---|
269 |
|
---|
270 | $query = "DELETE FROM queue_messages " .
|
---|
271 | "WHERE analysisID = $analysisID ";
|
---|
272 |
|
---|
273 | $result = mysqli_query( $gfac_link, $query );
|
---|
274 |
|
---|
275 | if ( ! $result )
|
---|
276 | {
|
---|
277 | // Just log it and continue
|
---|
278 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
279 | }
|
---|
280 |
|
---|
281 | $query = "SELECT queue_msg FROM analysis " .
|
---|
282 | "WHERE gfacID='$gfacID' ";
|
---|
283 |
|
---|
284 | $result = mysqli_query( $gfac_link, $query );
|
---|
285 | list( $queue_msg ) = mysqli_fetch_array( $result );
|
---|
286 |
|
---|
287 | // But let's allow for investigation of other large stdout and/or stderr
|
---|
288 | if ( strlen( $stdout ) > 20480000 ||
|
---|
289 | strlen( $stderr ) > 20480000 )
|
---|
290 | write_log( "$me: stdout + stderr larger than 20M - $gfacID\n" );
|
---|
291 |
|
---|
292 | $message_log .= "\n\n\nStdout Contents\n\n" .
|
---|
293 | $stdout .
|
---|
294 | "\n\n\nStderr Contents\n\n" .
|
---|
295 | $stderr .
|
---|
296 | "\n\n\nGFAC Status: $status\n" .
|
---|
297 | "GFAC message field: $queue_msg\n";
|
---|
298 |
|
---|
299 | // Delete data from GFAC DB
|
---|
300 | $query = "DELETE from analysis WHERE gfacID='$gfacID'";
|
---|
301 |
|
---|
302 | $result = mysqli_query( $gfac_link, $query );
|
---|
303 |
|
---|
304 | if ( ! $result )
|
---|
305 | {
|
---|
306 | // Just log it and continue
|
---|
307 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
308 | }
|
---|
309 |
|
---|
310 |
|
---|
311 | // Try to create it if necessary, and write the file
|
---|
312 | // Let's use FILE_APPEND, in case this is the second time around and the
|
---|
313 | // GFAC job status was INSERTed, rather than UPDATEd
|
---|
314 | if ( ! is_dir( $output_dir ) )
|
---|
315 | mkdir( $output_dir, 0775, true );
|
---|
316 | $message_filename = "$output_dir/$db-$requestID-messages.txt";
|
---|
317 | file_put_contents( $message_filename, $message_log, FILE_APPEND );
|
---|
318 | // mysqli_close( $gfac_link );
|
---|
319 |
|
---|
320 | /////////
|
---|
321 | // Insert data into HPCAnalysis
|
---|
322 |
|
---|
323 | $query = "UPDATE HPCAnalysisResult SET " .
|
---|
324 | "stderr='" . mysqli_real_escape_string( $us3_link, $stderr ) . "', " .
|
---|
325 | "stdout='" . mysqli_real_escape_string( $us3_link, $stdout ) . "', " .
|
---|
326 | "queueStatus='completed' " .
|
---|
327 | "WHERE HPCAnalysisResultID=$HPCAnalysisResultID";
|
---|
328 |
|
---|
329 | $result = mysqli_query( $us3_link, $query );
|
---|
330 |
|
---|
331 | if ( ! $result )
|
---|
332 | {
|
---|
333 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
334 | mail_to_user( "fail", "Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
335 | return( -1 );
|
---|
336 | }
|
---|
337 |
|
---|
338 | // Delete data from GFAC DB
|
---|
339 | $query = "DELETE from analysis WHERE gfacID='$gfacID'";
|
---|
340 |
|
---|
341 | $result = mysqli_query( $gfac_link, $query );
|
---|
342 |
|
---|
343 | if ( ! $result )
|
---|
344 | {
|
---|
345 | // Just log it and continue
|
---|
346 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
347 | }
|
---|
348 |
|
---|
349 | // Expand the tar file
|
---|
350 |
|
---|
351 | if ( strlen( $tarfile ) == 0 )
|
---|
352 | {
|
---|
353 | write_log( "$me: No tarfile" );
|
---|
354 | mail_to_user( "fail", "No results" );
|
---|
355 | return( -1 );
|
---|
356 | }
|
---|
357 |
|
---|
358 | $tar_out = array();
|
---|
359 | exec( "tar -xf analysis-results.tar 2>&1", $tar_out, $err );
|
---|
360 |
|
---|
361 | // Insert the model files and noise files
|
---|
362 | $files = file( "analysis_files.txt", FILE_IGNORE_NEW_LINES );
|
---|
363 | $noiseIDs = array();
|
---|
364 | $modelGUIDs = array();
|
---|
365 | $mrecsIDs = array();
|
---|
366 | $fns_used = array();
|
---|
367 |
|
---|
368 | foreach ( $files as $file )
|
---|
369 | {
|
---|
370 | $split = explode( ";", $file );
|
---|
371 |
|
---|
372 | if ( count( $split ) > 1 )
|
---|
373 | {
|
---|
374 | list( $fn, $meniscus, $mc_iteration, $variance ) = explode( ";", $file );
|
---|
375 |
|
---|
376 | list( $other, $mc_iteration ) = explode( "=", $mc_iteration );
|
---|
377 | list( $other, $variance ) = explode( "=", $variance );
|
---|
378 | list( $other, $meniscus ) = explode( "=", $meniscus );
|
---|
379 | }
|
---|
380 | else
|
---|
381 | $fn = $file;
|
---|
382 |
|
---|
383 | if ( preg_match( "/mdl.tmp$/", $fn ) )
|
---|
384 | continue;
|
---|
385 |
|
---|
386 | if ( in_array( $fn, $fns_used ) )
|
---|
387 | continue;
|
---|
388 |
|
---|
389 | $fns_used[] = $fn;
|
---|
390 |
|
---|
391 | if ( filesize( $fn ) < 100 )
|
---|
392 | {
|
---|
393 | write_log( "$me:fn is invalid $fn size filesize($fn)" );
|
---|
394 | mail_to_user( "fail", "Internal error\n$fn is invalid" );
|
---|
395 | return( -1 );
|
---|
396 | }
|
---|
397 |
|
---|
398 | if ( preg_match( "/^job_statistics\.xml$/", $fn ) ) // Job statistics file
|
---|
399 | {
|
---|
400 | $xml = file_get_contents( $fn );
|
---|
401 | $statistics = parse_xml( $xml, 'statistics' );
|
---|
402 | // $ntries = 0;
|
---|
403 | //
|
---|
404 | // while ( $statistics['cpucount'] < 1 && $ntries < 3 )
|
---|
405 | // { // job_statistics file not totally copied, so retry
|
---|
406 | // sleep( 10 );
|
---|
407 | // $xml = file_get_contents( $fn );
|
---|
408 | // $statistics = parse_xml( $xml, 'statistics' );
|
---|
409 | // $ntries++;
|
---|
410 | //write_log( "$me:jobstats retry $ntries" );
|
---|
411 | // }
|
---|
412 | //write_log( "$me:cputime=$statistics['cputime']" );
|
---|
413 |
|
---|
414 | $otherdata = parse_xml( $xml, 'id' );
|
---|
415 |
|
---|
416 | $query = "UPDATE HPCAnalysisResult SET " .
|
---|
417 | "wallTime = {$statistics['walltime']}, " .
|
---|
418 | "CPUTime = {$statistics['cputime']}, " .
|
---|
419 | "CPUCount = {$statistics['cpucount']}, " .
|
---|
420 | "max_rss = {$statistics['maxmemory']}, " .
|
---|
421 | "startTime = '{$otherdata['starttime']}', " .
|
---|
422 | "endTime = '{$otherdata['endtime']}', " .
|
---|
423 | "mgroupcount = {$otherdata['groupcount']} " .
|
---|
424 | "WHERE HPCAnalysisResultID=$HPCAnalysisResultID";
|
---|
425 | $result = mysqli_query( $us3_link, $query );
|
---|
426 |
|
---|
427 | if ( ! $result )
|
---|
428 | {
|
---|
429 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
430 | }
|
---|
431 |
|
---|
432 | file_put_contents( "$output_dir/$fn", $xml ); // Copy to submit dir
|
---|
433 |
|
---|
434 | $file_type = "job_stats";
|
---|
435 | $id = 1;
|
---|
436 | }
|
---|
437 |
|
---|
438 | else if ( preg_match( "/\.noise/", $fn ) > 0 ) // It's a noise file
|
---|
439 | {
|
---|
440 | $xml = file_get_contents( $fn );
|
---|
441 | $noise_data = parse_xml( $xml, "noise" );
|
---|
442 | $type = ( $noise_data[ 'type' ] == "ri" ) ? "ri_noise" : "ti_noise";
|
---|
443 | $desc = $noise_data[ 'description' ];
|
---|
444 | $modelGUID = $noise_data[ 'modelGUID' ];
|
---|
445 | $noiseGUID = $noise_data[ 'noiseGUID' ];
|
---|
446 | $editGUID = '00000000-0000-0000-0000-000000000000';
|
---|
447 | if ( isset( $model_data[ 'editGUID' ] ) )
|
---|
448 | $editGUID = $model_data[ 'editGUID' ];
|
---|
449 |
|
---|
450 | $query = "INSERT INTO noise SET " .
|
---|
451 | "noiseGUID='$noiseGUID'," .
|
---|
452 | "modelGUID='$modelGUID'," .
|
---|
453 | "editedDataID=" .
|
---|
454 | "(SELECT editedDataID FROM editedData WHERE editGUID='$editGUID')," .
|
---|
455 | "modelID=1, " .
|
---|
456 | "noiseType='$type'," .
|
---|
457 | "description='$desc'," .
|
---|
458 | "xml='" . mysqli_real_escape_string( $us3_link, $xml ) . "'";
|
---|
459 |
|
---|
460 | // Add later after all files are processed: editDataID, modelID
|
---|
461 |
|
---|
462 | $result = mysqli_query( $us3_link, $query );
|
---|
463 |
|
---|
464 | if ( ! $result )
|
---|
465 | {
|
---|
466 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
467 | mail_to_user( "fail", "Internal error\n$query\n" . mysqli_error( $us3_link ) );
|
---|
468 | return( -1 );
|
---|
469 | }
|
---|
470 |
|
---|
471 | $id = mysqli_insert_id( $us3_link );
|
---|
472 | $file_type = "noise";
|
---|
473 | $noiseIDs[] = $id;
|
---|
474 |
|
---|
475 | // Keep track of modelGUIDs for later, when we replace them
|
---|
476 | $modelGUIDs[ $id ] = $modelGUID;
|
---|
477 |
|
---|
478 | }
|
---|
479 |
|
---|
480 | else if ( preg_match( "/\.mrecs/", $fn ) > 0 ) // It's an mrecs file
|
---|
481 | {
|
---|
482 | $xml = file_get_contents( $fn );
|
---|
483 | $mrecs_data = parse_xml( $xml, "modelrecords" );
|
---|
484 | $desc = $mrecs_data[ 'description' ];
|
---|
485 | $editGUID = $mrecs_data[ 'editGUID' ];
|
---|
486 | write_log( "$me: mrecs file editGUID=$editGUID" );
|
---|
487 | if ( strlen( $editGUID ) < 36 )
|
---|
488 | $editGUID = "12345678-0123-5678-0123-567890123456";
|
---|
489 | $mrecGUID = $mrecs_data[ 'mrecGUID' ];
|
---|
490 | $modelGUID = $mrecs_data[ 'modelGUID' ];
|
---|
491 |
|
---|
492 | $query = "INSERT INTO pcsa_modelrecs SET " .
|
---|
493 | "editedDataID=" .
|
---|
494 | "(SELECT editedDataID FROM editedData WHERE editGUID='$editGUID')," .
|
---|
495 | "modelID=0, " .
|
---|
496 | "mrecsGUID='$mrecGUID'," .
|
---|
497 | "description='$desc'," .
|
---|
498 | "xml='" . mysqli_real_escape_string( $us3_link, $xml ) . "'";
|
---|
499 |
|
---|
500 | // Add later after all files are processed: editDataID, modelID
|
---|
501 |
|
---|
502 | $result = mysqli_query( $us3_link, $query );
|
---|
503 |
|
---|
504 | if ( ! $result )
|
---|
505 | {
|
---|
506 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
507 | mail_to_user( "fail", "Internal error\n$query\n" . mysqli_error( $us3_link ) );
|
---|
508 | return( -1 );
|
---|
509 | }
|
---|
510 |
|
---|
511 | $id = mysqli_insert_id( $us3_link );
|
---|
512 | $file_type = "mrecs";
|
---|
513 | $mrecsIDs[] = $id;
|
---|
514 |
|
---|
515 | // Keep track of modelGUIDs for later, when we replace them
|
---|
516 | $rmodlGUIDs[ $id ] = $modelGUID;
|
---|
517 | //write_log( "$me: mrecs file inserted into DB : id=$id" );
|
---|
518 | }
|
---|
519 |
|
---|
520 | else if ( preg_match( "/\.model/", $fn ) > 0 ) // It's a model file
|
---|
521 | {
|
---|
522 | $xml = file_get_contents( $fn );
|
---|
523 | $model_data = parse_xml( $xml, "model" );
|
---|
524 | $description = $model_data[ 'description' ];
|
---|
525 | $modelGUID = $model_data[ 'modelGUID' ];
|
---|
526 | $editGUID = $model_data[ 'editGUID' ];
|
---|
527 |
|
---|
528 | if ( $mc_iteration > 1 )
|
---|
529 | {
|
---|
530 | $miter = sprintf( "_mcN%03d", $mc_iteration );
|
---|
531 | $description = preg_replace( "/_mc[0-9]+/", $miter, $description );
|
---|
532 | write_log( "$me: MODELUpd: O:description=$description" );
|
---|
533 | }
|
---|
534 |
|
---|
535 | $query = "INSERT INTO model SET " .
|
---|
536 | "modelGUID='$modelGUID'," .
|
---|
537 | "editedDataID=" .
|
---|
538 | "(SELECT editedDataID FROM editedData WHERE editGUID='$editGUID')," .
|
---|
539 | "description='$description'," .
|
---|
540 | "MCIteration='$mc_iteration'," .
|
---|
541 | "meniscus='$meniscus'," .
|
---|
542 | "variance='$variance'," .
|
---|
543 | "xml='" . mysqli_real_escape_string( $us3_link, $xml ) . "'";
|
---|
544 |
|
---|
545 | $result = mysqli_query( $us3_link, $query );
|
---|
546 |
|
---|
547 | if ( ! $result )
|
---|
548 | {
|
---|
549 | write_log( "$me: Bad query:\n$query " . mysqli_error( $us3_link ) );
|
---|
550 | mail_to_user( "fail", "Internal error\n$query\n" . mysqli_error( $us3_link ) );
|
---|
551 | return( -1 );
|
---|
552 | }
|
---|
553 |
|
---|
554 | $modelID = mysqli_insert_id( $us3_link );
|
---|
555 | $id = $modelID;
|
---|
556 | $file_type = "model";
|
---|
557 |
|
---|
558 | $query = "INSERT INTO modelPerson SET " .
|
---|
559 | "modelID=$modelID, personID=$personID";
|
---|
560 | $result = mysqli_query( $us3_link, $query );
|
---|
561 | }
|
---|
562 |
|
---|
563 | else // Undetermined type: skip result data update
|
---|
564 | continue;
|
---|
565 |
|
---|
566 | $query = "INSERT INTO HPCAnalysisResultData SET " .
|
---|
567 | "HPCAnalysisResultID='$HPCAnalysisResultID', " .
|
---|
568 | "HPCAnalysisResultType='$file_type', " .
|
---|
569 | "resultID=$id";
|
---|
570 |
|
---|
571 | $result = mysqli_query( $us3_link, $query );
|
---|
572 |
|
---|
573 | if ( ! $result )
|
---|
574 | {
|
---|
575 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
576 | mail_to_user( "fail", "Internal error\n$query\n" . mysqli_error( $us3_link ) );
|
---|
577 | return( -1 );
|
---|
578 | }
|
---|
579 | }
|
---|
580 |
|
---|
581 | // Now fix up noise entries
|
---|
582 | // For noise files, there is, at most two: ti_noise and ri_noise
|
---|
583 | // In this case there will only be one modelID
|
---|
584 |
|
---|
585 | foreach ( $noiseIDs as $noiseID )
|
---|
586 | {
|
---|
587 | $modelGUID = $modelGUIDs[ $noiseID ];
|
---|
588 | $query = "UPDATE noise SET " .
|
---|
589 | "editedDataID=" .
|
---|
590 | "(SELECT editedDataID FROM model WHERE modelGUID='$modelGUID')," .
|
---|
591 | "modelID=" .
|
---|
592 | "(SELECT modelID FROM model WHERE modelGUID='$modelGUID')" .
|
---|
593 | "WHERE noiseID=$noiseID";
|
---|
594 |
|
---|
595 | $result = mysqli_query( $us3_link, $query );
|
---|
596 |
|
---|
597 | if ( ! $result )
|
---|
598 | {
|
---|
599 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
600 | mail_to_user( "fail", "Bad query\n$query\n" . mysqli_error( $us3_link ) );
|
---|
601 | return( -1 );
|
---|
602 | }
|
---|
603 | }
|
---|
604 |
|
---|
605 | // Now possibly fix up mrecs entries
|
---|
606 |
|
---|
607 | foreach ( $mrecsIDs as $mrecsID )
|
---|
608 | {
|
---|
609 | $modelGUID = $rmodlGUIDs[ $mrecsID ];
|
---|
610 | $query = "UPDATE pcsa_modelrecs SET " .
|
---|
611 | "modelID=" .
|
---|
612 | "(SELECT modelID FROM model WHERE modelGUID='$modelGUID')" .
|
---|
613 | "WHERE mrecsID=$mrecsID";
|
---|
614 |
|
---|
615 | $result = mysqli_query( $us3_link, $query );
|
---|
616 |
|
---|
617 | if ( ! $result )
|
---|
618 | {
|
---|
619 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
620 | mail_to_user( "fail", "Bad query\n$query\n" . mysqli_error( $us3_link ) );
|
---|
621 | return( -1 );
|
---|
622 | }
|
---|
623 | write_log( "$me: mrecs entry updated : mrecsID=$mrecsID" );
|
---|
624 | }
|
---|
625 | //write_log( "$me: mrecs entries updated" );
|
---|
626 |
|
---|
627 | // Copy results to LIMS submit directory (files there are deleted after 7 days)
|
---|
628 | global $submit_dir; // LIMS submit files dir
|
---|
629 |
|
---|
630 | // Get the request guid (LIMS submit dir name)
|
---|
631 | $query = "SELECT HPCAnalysisRequestGUID FROM HPCAnalysisRequest " .
|
---|
632 | "WHERE HPCAnalysisRequestID = $requestID ";
|
---|
633 | $result = mysqli_query( $us3_link, $query );
|
---|
634 |
|
---|
635 | if ( ! $result )
|
---|
636 | {
|
---|
637 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $us3_link ) );
|
---|
638 | }
|
---|
639 |
|
---|
640 | // list( $requestGUID ) = mysqli_fetch_array( $result );
|
---|
641 | //
|
---|
642 | // chdir( "$submit_dir/$requestGUID" );
|
---|
643 | // $f = fopen( "analysis-results.tar", "w" );
|
---|
644 | // fwrite( $f, $tarfile );
|
---|
645 | // fclose( $f );
|
---|
646 |
|
---|
647 | // Clean up
|
---|
648 | // chdir ( $work );
|
---|
649 | // exec( "rm -rf $gfacID" );
|
---|
650 |
|
---|
651 | mysqli_close( $us3_link );
|
---|
652 |
|
---|
653 | /////////
|
---|
654 | // Send email
|
---|
655 |
|
---|
656 | mail_to_user( "success", "" );
|
---|
657 | }
|
---|
658 |
|
---|
659 | function mail_to_user( $type, $msg )
|
---|
660 | {
|
---|
661 | // Note to me. Just changed subject line to include a modified $status instead
|
---|
662 | // of the $type variable passed. More informative than just "fail" or "success."
|
---|
663 | // See how it works for awhile and then consider removing $type parameter from
|
---|
664 | // function.
|
---|
665 | global $email_address;
|
---|
666 | global $submittime;
|
---|
667 | global $endtime;
|
---|
668 | global $queuestatus;
|
---|
669 | global $status;
|
---|
670 | global $cluster;
|
---|
671 | global $jobtype;
|
---|
672 | global $org_name;
|
---|
673 | global $admin_email;
|
---|
674 | global $db;
|
---|
675 | global $dbhost;
|
---|
676 | global $requestID;
|
---|
677 | global $gfacID;
|
---|
678 | global $editXMLFilename;
|
---|
679 | global $stdout;
|
---|
680 | global $org_domain;
|
---|
681 |
|
---|
682 | global $me;
|
---|
683 | write_log( "$me mail_to_user(): sending email to $email_address for $gfacID" );
|
---|
684 |
|
---|
685 | // Get GFAC status and message
|
---|
686 | // function get_gfac_message() also sets global $status
|
---|
687 | $gfac_message = get_gfac_message( $gfacID );
|
---|
688 | if ( $gfac_message === false ) $gfac_message = "Job Finished";
|
---|
689 |
|
---|
690 | // Create a status to put in the subject line
|
---|
691 | switch ( $status )
|
---|
692 | {
|
---|
693 | case "COMPLETE":
|
---|
694 | $subj_status = 'completed';
|
---|
695 | break;
|
---|
696 |
|
---|
697 | case "CANCELLED":
|
---|
698 | case "CANCELED":
|
---|
699 | $subj_status = 'canceled';
|
---|
700 | break;
|
---|
701 |
|
---|
702 | case "FAILED":
|
---|
703 | $subj_status = 'failed';
|
---|
704 | if ( preg_match( "/^US3-A/i", $gfacID ) )
|
---|
705 | { // For A/Thrift FAIL, get error message
|
---|
706 | $gfac_message = getExperimentErrors( $gfacID );
|
---|
707 | //$gfac_message .= "Test ERROR MESSAGE";
|
---|
708 | }
|
---|
709 | break;
|
---|
710 |
|
---|
711 | case "ERROR":
|
---|
712 | $subj_status = 'unknown error';
|
---|
713 | break;
|
---|
714 |
|
---|
715 | default:
|
---|
716 | $subj_status = $status; // For now
|
---|
717 | break;
|
---|
718 |
|
---|
719 | }
|
---|
720 |
|
---|
721 | $queuestatus = $subj_status;
|
---|
722 | $limshost = $dbhost;
|
---|
723 | if ( $limshost == 'localhost' )
|
---|
724 | {
|
---|
725 | $limshost = gethostname();
|
---|
726 | if ( preg_match( "/scyld/", $limshost ) )
|
---|
727 | $limshost = 'alamo.uthscsa.edu';
|
---|
728 | else if ( preg_match( "/novalo/", $limshost ) )
|
---|
729 | $limshost = 'uslims3.aucsolutions.com';
|
---|
730 | else if ( ! preg_match( "/\./", $limshost ) )
|
---|
731 | $limshost = $limshost . $org_domain;
|
---|
732 | }
|
---|
733 |
|
---|
734 | // Parse the editXMLFilename
|
---|
735 | list( $runID, $editID, $dataType, $cell, $channel, $wl, $ext ) =
|
---|
736 | explode( ".", $editXMLFilename );
|
---|
737 |
|
---|
738 | $headers = "From: $org_name Admin<$admin_email>" . "\n";
|
---|
739 | $headers .= "Cc: $org_name Admin<$admin_email>" . "\n";
|
---|
740 | $headers .= "CC: $org_name Admin<alexsav.science@gmail.com>" . "\n";
|
---|
741 | $headers .= "CC: $org_name Admin<gegorbet@gmail.com>" . "\n";
|
---|
742 |
|
---|
743 | // Set the reply address
|
---|
744 | $headers .= "Reply-To: $org_name<$admin_email>" . "\n";
|
---|
745 | $headers .= "Return-Path: $org_name<$admin_email>" . "\n";
|
---|
746 |
|
---|
747 | // Try to avoid spam filters
|
---|
748 | $now = time();
|
---|
749 | $tnow = date( 'Y-m-d H:i:s' );
|
---|
750 | $headers .= "Message-ID: <" . $now . "cleanup@$dbhost>\n";
|
---|
751 | $headers .= "X-Mailer: PHP v" . phpversion() . "\n";
|
---|
752 | $headers .= "MIME-Version: 1.0" . "\n";
|
---|
753 | $headers .= "Content-Transfer-Encoding: 8bit" . "\n";
|
---|
754 |
|
---|
755 | $subject = "UltraScan Job Notification - $subj_status - " . substr( $gfacID, 0, 16 );
|
---|
756 | $message = "
|
---|
757 | Your UltraScan job is complete:
|
---|
758 |
|
---|
759 | Submission Time : $submittime
|
---|
760 | Job End Time : $endtime
|
---|
761 | Mail Time : $tnow
|
---|
762 | LIMS Host : $limshost
|
---|
763 | Analysis ID : $gfacID
|
---|
764 | Request ID : $requestID ( $db )
|
---|
765 | RunID : $runID
|
---|
766 | EditID : $editID
|
---|
767 | Data Type : $dataType
|
---|
768 | Cell/Channel/Wl : $cell / $channel / $wl
|
---|
769 | Status : $queuestatus
|
---|
770 | Cluster : $cluster
|
---|
771 | Job Type : $jobtype
|
---|
772 | GFAC Status : $status
|
---|
773 | GFAC Message : $gfac_message
|
---|
774 | Stdout : $stdout
|
---|
775 | ";
|
---|
776 |
|
---|
777 | if ( $type != "success" ) $message .= "Grid Ctrl Error : $msg\n";
|
---|
778 |
|
---|
779 | // Handle the error case where an error occurs before fetching the
|
---|
780 | // user's email address
|
---|
781 | if ( $email_address == "" ) $email_address = $admin_email;
|
---|
782 |
|
---|
783 | mail( $email_address, $subject, $message, $headers );
|
---|
784 | }
|
---|
785 |
|
---|
786 | function parse_xml( $xml, $type )
|
---|
787 | {
|
---|
788 | $parser = new XMLReader();
|
---|
789 | $parser->xml( $xml );
|
---|
790 |
|
---|
791 | $results = array();
|
---|
792 |
|
---|
793 | while ( $parser->read() )
|
---|
794 | {
|
---|
795 | if ( $parser->name == $type )
|
---|
796 | {
|
---|
797 | while ( $parser->moveToNextAttribute() )
|
---|
798 | {
|
---|
799 | $results[ $parser->name ] = $parser->value;
|
---|
800 | }
|
---|
801 |
|
---|
802 | break;
|
---|
803 | }
|
---|
804 | }
|
---|
805 |
|
---|
806 | $parser->close();
|
---|
807 | return $results;
|
---|
808 | }
|
---|
809 |
|
---|
810 | // Function to get information about the current job GFAC
|
---|
811 | function get_gfac_message( $gfacID )
|
---|
812 | {
|
---|
813 | global $serviceURL;
|
---|
814 | global $me;
|
---|
815 |
|
---|
816 | $hex = "[0-9a-fA-F]";
|
---|
817 | if ( ! preg_match( "/^US3-Experiment/i", $gfacID ) &&
|
---|
818 | ! preg_match( "/^US3-$hex{8}-$hex{4}-$hex{4}-$hex{4}-$hex{12}$/", $gfacID ) )
|
---|
819 | {
|
---|
820 | // Then it's not a GFAC job
|
---|
821 | return false;
|
---|
822 | }
|
---|
823 |
|
---|
824 | $url = "$serviceURL/jobstatus/$gfacID";
|
---|
825 | try
|
---|
826 | {
|
---|
827 | $post = new HttpRequest( $url, HttpRequest::METH_GET );
|
---|
828 | $http = $post->send();
|
---|
829 | $xml = $post->getResponseBody();
|
---|
830 | }
|
---|
831 | catch ( HttpException $e )
|
---|
832 | {
|
---|
833 | write_log( "$me: Job status not available - $gfacID" );
|
---|
834 | return false;
|
---|
835 | }
|
---|
836 |
|
---|
837 | // Parse the result
|
---|
838 | $gfac_message = parse_message( $xml );
|
---|
839 |
|
---|
840 | return $gfac_message;
|
---|
841 | }
|
---|
842 |
|
---|
843 | function parse_message( $xml )
|
---|
844 | {
|
---|
845 | global $status;
|
---|
846 | $status = "";
|
---|
847 | $gfac_message = "";
|
---|
848 |
|
---|
849 | $parser = new XMLReader();
|
---|
850 | $parser->xml( $xml );
|
---|
851 |
|
---|
852 | $results = array();
|
---|
853 |
|
---|
854 | while( $parser->read() )
|
---|
855 | {
|
---|
856 | $type = $parser->nodeType;
|
---|
857 |
|
---|
858 | if ( $type == XMLReader::ELEMENT )
|
---|
859 | $name = $parser->name;
|
---|
860 |
|
---|
861 | else if ( $type == XMLReader::TEXT )
|
---|
862 | {
|
---|
863 | if ( $name == "status" )
|
---|
864 | $status = $parser->value;
|
---|
865 | else
|
---|
866 | $gfac_message = $parser->value;
|
---|
867 | }
|
---|
868 | }
|
---|
869 |
|
---|
870 | $parser->close();
|
---|
871 | return $gfac_message;
|
---|
872 | }
|
---|
873 |
|
---|
874 | function get_local_files( $gfac_link, $cluster, $requestID, $id, $gfacID )
|
---|
875 | {
|
---|
876 | global $work;
|
---|
877 | global $work_remote;
|
---|
878 | global $me;
|
---|
879 | global $db;
|
---|
880 | global $dbhost;
|
---|
881 | global $status;
|
---|
882 |
|
---|
883 | $is_us3iab = preg_match( "/us3iab/", $cluster );
|
---|
884 | $is_jetstr = preg_match( "/jetstream/", $cluster );
|
---|
885 | $is_demeler3 = preg_match( "/demeler3/", $cluster );
|
---|
886 |
|
---|
887 | $limshost = $dbhost;
|
---|
888 | $stderr = '';
|
---|
889 | $stdout = '';
|
---|
890 | $tarfile = '';
|
---|
891 |
|
---|
892 | if ( $limshost == 'localhost' )
|
---|
893 | { // If DB host is local host, get full LIMS host name
|
---|
894 | $limshost = gethostname();
|
---|
895 | if ( preg_match( "/scyld/", $limshost ) )
|
---|
896 | $limshost = 'alamo.uthscsa.edu';
|
---|
897 | else if ( preg_match( "/novalo/", $limshost ) )
|
---|
898 | $limshost = 'uslims3.aucsolutions.com';
|
---|
899 | else if ( ! preg_match( "/\./", $limshost ) )
|
---|
900 | $limshost = $limshost . $org_domain;
|
---|
901 | }
|
---|
902 |
|
---|
903 | if ( preg_match( "/alamo/", $limshost ) &&
|
---|
904 | preg_match( "/alamo/", $cluster ) )
|
---|
905 | { // If both LIMS and cluster are alamo, set up local transfers
|
---|
906 | $is_us3iab = 1;
|
---|
907 | if ( ! preg_match( "/\/local/", $work_remote ) )
|
---|
908 | $work_remote = $work_remote . "/local";
|
---|
909 | }
|
---|
910 |
|
---|
911 | // Figure out job's remote (or local) work directory
|
---|
912 | $remoteDir = sprintf( "$work_remote/$db-%06d", $requestID );
|
---|
913 | //write_log( "$me: is_us3iab=$is_us3iab remoteDir=$remoteDir" );
|
---|
914 |
|
---|
915 | // Get stdout, stderr, output/analysis-results.tar
|
---|
916 | $output = array();
|
---|
917 |
|
---|
918 | if ( $is_us3iab == 0 )
|
---|
919 | {
|
---|
920 | // For "-local", recompute remote work directory
|
---|
921 | $clushost = "$cluster.uthscsa.edu";
|
---|
922 | $lworkdir = "~us3/lims/work/local";
|
---|
923 | if ( $is_jetstr )
|
---|
924 | {
|
---|
925 | $clushost = "js-169-137.jetstream-cloud.org";
|
---|
926 | $lworkdir = "/N/us3_cluster/work/local";
|
---|
927 | }
|
---|
928 |
|
---|
929 | if ( $is_demeler3 )
|
---|
930 | {
|
---|
931 | $clushost = "demeler3.uleth.ca";
|
---|
932 | $lworkdir = "/home/us3/work";
|
---|
933 | }
|
---|
934 |
|
---|
935 | $cmd = "ssh us3@$clushost 'ls -d $lworkdir' 2>/dev/null";
|
---|
936 | exec( $cmd, $output, $stat );
|
---|
937 | $work_remote = $output[ 0 ];
|
---|
938 | $remoteDir = sprintf( "$work_remote/$db-%06d", $requestID );
|
---|
939 | write_log( "$me: -LOCAL: remoteDir=$remoteDir" );
|
---|
940 |
|
---|
941 | // Figure out local working directory
|
---|
942 | if ( ! is_dir( "$work/$gfacID" ) ) mkdir( "$work/$gfacID", 0770 );
|
---|
943 | $pwd = chdir( "$work/$gfacID" );
|
---|
944 |
|
---|
945 | $cmd = "scp us3@$clushost:$remoteDir/output/analysis-results.tar . 2>&1";
|
---|
946 |
|
---|
947 | exec( $cmd, $output, $stat );
|
---|
948 | if ( $stat != 0 )
|
---|
949 | write_log( "$me: Bad exec:\n$cmd\n" . implode( "\n", $output ) );
|
---|
950 |
|
---|
951 | $cmd = "scp us3@$clushost:$remoteDir/stdout . 2>&1";
|
---|
952 |
|
---|
953 | exec( $cmd, $output, $stat );
|
---|
954 | if ( $stat != 0 )
|
---|
955 | {
|
---|
956 | write_log( "$me: Bad exec:\n$cmd\n" . implode( "\n", $output ) );
|
---|
957 | sleep( 10 );
|
---|
958 | write_log( "$me: RETRY" );
|
---|
959 | exec( $cmd, $output, $stat );
|
---|
960 | if ( $stat != 0 )
|
---|
961 | write_log( "$me: Bad exec:\n$cmd\n" . implode( "\n", $output ) );
|
---|
962 | }
|
---|
963 |
|
---|
964 | $cmd = "scp us3@$clushost:$remoteDir/stderr . 2>&1";
|
---|
965 |
|
---|
966 | exec( $cmd, $output, $stat );
|
---|
967 | if ( $stat != 0 )
|
---|
968 | {
|
---|
969 | write_log( "$me: Bad exec:\n$cmd\n" . implode( "\n", $output ) );
|
---|
970 | sleep( 10 );
|
---|
971 | write_log( "$me: RETRY" );
|
---|
972 | exec( $cmd, $output, $stat );
|
---|
973 | if ( $stat != 0 )
|
---|
974 | write_log( "$me: Bad exec:\n$cmd\n" . implode( "\n", $output ) );
|
---|
975 | }
|
---|
976 | }
|
---|
977 | else
|
---|
978 | { // Is US3IAB or alamo-to-alamo, so just change to local work directory
|
---|
979 | $pwd = chdir( "$remoteDir" );
|
---|
980 | write_log( "$me: IS US3IAB: pwd=$pwd $remoteDir");
|
---|
981 | }
|
---|
982 |
|
---|
983 |
|
---|
984 | // Write the files to gfacDB
|
---|
985 |
|
---|
986 | $secwait = 10;
|
---|
987 | $num_try = 0;
|
---|
988 | while ( ! file_exists( "stderr" ) && $num_try < 3 )
|
---|
989 | { // Do waits and retries to let stderr appear
|
---|
990 | sleep( $secwait );
|
---|
991 | $num_try++;
|
---|
992 | $secwait *= 2;
|
---|
993 | write_log( "$me: not-exist-stderr: num_try=$num_try" );
|
---|
994 | }
|
---|
995 |
|
---|
996 | $lense = 0;
|
---|
997 | if ( file_exists( "stderr" ) )
|
---|
998 | {
|
---|
999 | $lense = filesize( "stderr" );
|
---|
1000 | if ( $lense > 1000000 )
|
---|
1001 | { // Replace exceptionally large stderr with smaller version
|
---|
1002 | exec( "mv stderr stderr-orig", $output, $stat );
|
---|
1003 | exec( "head -n 5000 stderr-orig >stderr-h", $output, $stat );
|
---|
1004 | exec( "tail -n 5000 stderr-orig >stderr-t", $output, $stat );
|
---|
1005 | exec( "cat stderr-h stderr-t >stderr", $output, $stat );
|
---|
1006 | }
|
---|
1007 | $stderr = file_get_contents( "stderr" );
|
---|
1008 | }
|
---|
1009 | else
|
---|
1010 | {
|
---|
1011 | $stderr = "";
|
---|
1012 | }
|
---|
1013 |
|
---|
1014 | if ( file_exists( "stdout" ) ) $stdout = file_get_contents( "stdout" );
|
---|
1015 |
|
---|
1016 | $fn1_tarfile = "analysis-results.tar";
|
---|
1017 | $fn2_tarfile = "output/" . $fn1_tarfile;
|
---|
1018 | if ( file_exists( $fn1_tarfile ) )
|
---|
1019 | $tarfile = file_get_contents( $fn1_tarfile );
|
---|
1020 | else if ( file_exists( $fn2_tarfile ) )
|
---|
1021 | $tarfile = file_get_contents( $fn2_tarfile );
|
---|
1022 |
|
---|
1023 | // $lense = strlen( $stderr );
|
---|
1024 | // if ( $lense > 1000000 )
|
---|
1025 | // { // Replace exceptionally large stderr with smaller version
|
---|
1026 | // exec( "mv stderr stderr-orig", $output, $stat );
|
---|
1027 | // exec( "head -n 5000 stderr-orig >stderr-h", $output, $stat );
|
---|
1028 | // exec( "tail -n 5000 stderr-orig >stderr-t", $output, $stat );
|
---|
1029 | // exec( "cat stderr-h stderr-t >stderr", $output, $stat );
|
---|
1030 | // $stderr = file_get_contents( "stderr" );
|
---|
1031 | // }
|
---|
1032 | $lene = strlen( $stderr );
|
---|
1033 | write_log( "$me: stderr size: $lene (was $lense)");
|
---|
1034 | $leno = strlen( $stdout );
|
---|
1035 | write_log( "$me: stdout size: $leno");
|
---|
1036 | $lent = strlen( $tarfile );
|
---|
1037 | write_log( "$me: tarfile size: $lent");
|
---|
1038 | $esstde = mysqli_real_escape_string( $gfac_link, $stderr );
|
---|
1039 | $esstdo = mysqli_real_escape_string( $gfac_link, $stdout );
|
---|
1040 | $estarf = mysqli_real_escape_string( $gfac_link, $tarfile );
|
---|
1041 | $lene = strlen($esstde);
|
---|
1042 | write_log( "$me: es-stderr size: $lene");
|
---|
1043 | $leno = strlen($esstdo);
|
---|
1044 | write_log( "$me: es-stdout size: $leno");
|
---|
1045 | $lenf = strlen($estarf);
|
---|
1046 | write_log( "$me: es-tarfile size: $lenf");
|
---|
1047 | $query = "UPDATE analysis SET " .
|
---|
1048 | "stderr='" . $esstde . "'," .
|
---|
1049 | "stdout='" . $esstdo . "'," .
|
---|
1050 | "tarfile='" . $estarf . "'";
|
---|
1051 |
|
---|
1052 | $result = mysqli_query( $gfac_link, $query );
|
---|
1053 |
|
---|
1054 | if ( ! $result )
|
---|
1055 | {
|
---|
1056 | write_log( "$me: Bad query:\n$query\n" . mysqli_error( $gfac_link ) );
|
---|
1057 | echo "Bad query\n";
|
---|
1058 | return( -1 );
|
---|
1059 | }
|
---|
1060 | }
|
---|
1061 | ?>
|
---|