2011-09-21 21:26:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2011 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2011-12-29 06:30:18 +00:00
|
|
|
// server-side utility functions for remote job submissions and control
|
2011-09-21 21:26:00 +00:00
|
|
|
|
|
|
|
require_once("../inc/submit_db.inc");
|
|
|
|
|
|
|
|
function get_outfile_names($result) {
|
|
|
|
$names = array();
|
|
|
|
$xml = "<a>".$result->xml_doc_out."</a>";
|
|
|
|
$r = simplexml_load_string($xml);
|
|
|
|
if (!$r) return $names;
|
|
|
|
foreach ($r->file_info as $fi) {
|
|
|
|
$names[] = (string)($fi->name);
|
|
|
|
}
|
|
|
|
return $names;
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_outfile_paths($result) {
|
|
|
|
$fanout = parse_config(get_config(), "<uldl_dir_fanout>");
|
|
|
|
$upload_dir = parse_config(get_config(), "<upload_dir>");
|
|
|
|
|
|
|
|
$paths = array();
|
|
|
|
$xml = "<a>".$result->xml_doc_out."</a>";
|
|
|
|
$r = simplexml_load_string($xml);
|
|
|
|
if (!$r) return $paths;
|
|
|
|
foreach ($r->file_info as $fi) {
|
|
|
|
$path = dir_hier_path((string)($fi->name), $upload_dir, $fanout);
|
|
|
|
$paths[] = $path;
|
|
|
|
}
|
|
|
|
return $paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
function abort_workunit($wu) {
|
|
|
|
BoincResult::update_aux(
|
|
|
|
"server_state=5, outcome=5 where server_state=2 and workunitid=$wu->id"
|
|
|
|
);
|
|
|
|
$wu->update("error_mask=error_mask|16");
|
|
|
|
}
|
|
|
|
|
|
|
|
function abort_batch($batch) {
|
|
|
|
$wus = BoincWorkunit::enum("batch=$batch->id");
|
|
|
|
foreach ($wus as $wu) {
|
|
|
|
abort_workunit($wu);
|
|
|
|
}
|
|
|
|
$batch->update("state=".BATCH_STATE_ABORTED);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
function retire_batch($batch) {
|
|
|
|
$wus = BoincWorkunit::enum("batch=$batch_id");
|
|
|
|
$now = time();
|
|
|
|
foreach ($wus as $wu) {
|
|
|
|
$wu->update("assimilate_state=2, transition_time=$now");
|
|
|
|
}
|
|
|
|
$batch->update("state=".BATCH_STATE_RETIRED);
|
|
|
|
}
|
|
|
|
|
|
|
|
function batch_state_string($state) {
|
|
|
|
switch ($state) {
|
|
|
|
case BATCH_STATE_INIT: return "new";
|
|
|
|
case BATCH_STATE_IN_PROGRESS: return "in progress";
|
|
|
|
case BATCH_STATE_COMPLETE: return "completed";
|
|
|
|
case BATCH_STATE_ABORTED: return "aborted";
|
|
|
|
case BATCH_STATE_RETIRED: return "retired";
|
|
|
|
}
|
|
|
|
return "unknown state $state";
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|