mirror of https://github.com/BOINC/boinc.git
69 lines
1.9 KiB
PHP
69 lines
1.9 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 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/>.
|
|
|
|
// Make some jobs for Bossa example 4
|
|
// Usage:
|
|
// bossa_example4_make_jobs.php
|
|
// --dir dir
|
|
|
|
require_once("../inc/bossa.inc");
|
|
|
|
function make_job($path, $batchid, $appid) {
|
|
$info = null;
|
|
$info->path = $path;
|
|
|
|
if (!bossa_job_create($appid, $batchid, $info, false)) {
|
|
exit("bossa_create_job() failed\n");
|
|
}
|
|
echo "created job for $path\n";
|
|
}
|
|
|
|
function make_jobs($dir, $appid) {
|
|
$batchid = bossa_batch_create($appid, date(DATE_RFC822), false);
|
|
if (!$batchid) {
|
|
exit("bossa_create_batch() failed\n");
|
|
}
|
|
|
|
$d = opendir("../user/$dir");
|
|
while ($file = readdir($d)) {
|
|
if (!strstr($file, ".png") && !strstr($file, ".jpg")) continue;
|
|
make_job("$dir/$file", $batchid, $appid);
|
|
}
|
|
closedir($d);
|
|
}
|
|
|
|
function usage() {
|
|
exit("Usage: bossa_example4_make_jobs.php --dir d\n");
|
|
}
|
|
|
|
for ($i=1; $i<$argc; $i++) {
|
|
if ($argv[$i] == '--dir') $dir = $argv[++$i];
|
|
else usage();
|
|
}
|
|
|
|
if (!$dir) usage();
|
|
|
|
if (!is_dir("../user/$dir")) {
|
|
exit("../user/$dir is not a directory\n");
|
|
}
|
|
|
|
$appid = bossa_app_lookup("bossa_example4");
|
|
if (!$appid) exit("No application 'bossa_example4'\n");
|
|
|
|
make_jobs($dir, $appid);
|