mirror of https://github.com/BOINC/boinc.git
434 lines
14 KiB
C++
434 lines
14 KiB
C++
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2014 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/>.
|
|
|
|
// Create workunit(s).
|
|
// see http://boinc.berkeley.edu/trac/wiki/JobSubmission
|
|
|
|
#include "config.h"
|
|
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <ctime>
|
|
#include <string>
|
|
#include <sys/param.h>
|
|
#include <unistd.h>
|
|
|
|
#include "boinc_db.h"
|
|
#include "common_defs.h"
|
|
#include "crypt.h"
|
|
#include "filesys.h"
|
|
#include "sched_config.h"
|
|
#include "str_replace.h"
|
|
#include "str_util.h"
|
|
#include "util.h"
|
|
|
|
#include "backend_lib.h"
|
|
|
|
using std::string;
|
|
|
|
void usage() {
|
|
fprintf(stderr,
|
|
"usage: create_work [options] infile1 infile2 ...\n"
|
|
"\n"
|
|
"Options:\n"
|
|
" --appname name\n"
|
|
" [ --additional_xml x ]\n"
|
|
" [ --batch n ]\n"
|
|
" [ --broadcast ]\n"
|
|
" [ --broadcast_user ID ]\n"
|
|
" [ --broadcast_team ID ]\n"
|
|
" [ --command_line \"X\" ]\n"
|
|
" [ --config_dir path ]\n"
|
|
" [ -d n ]\n"
|
|
" [ --delay_bound x ]\n"
|
|
" [ --max_error_results n ]\n"
|
|
" [ --max_success_results n ]\n"
|
|
" [ --max_total_results n ]\n"
|
|
" [ --min_quorum n ]\n"
|
|
" [ --priority n ]\n"
|
|
" [ --result_template filename ] default: appname_out\n"
|
|
" [ --rsc_disk_bound x ]\n"
|
|
" [ --rsc_fpops_est x ]\n"
|
|
" [ --rsc_fpops_bound x ]\n"
|
|
" [ --rsc_memory_bound x ]\n"
|
|
" [ --size_class n ]\n"
|
|
" [ --stdin ]\n"
|
|
" [ --target_host ID ]\n"
|
|
" [ --target_nresults n ]\n"
|
|
" [ --target_team ID ]\n"
|
|
" [ --target_user ID ]\n"
|
|
" [ --wu_id ID ] ID of existing workunit record (used by boinc_submit)\n"
|
|
" [ --wu_name name ] default: generate a name based on app name\n"
|
|
" [ --wu_template filename ] default: appname_in\n"
|
|
);
|
|
exit(1);
|
|
}
|
|
|
|
bool arg(char** argv, int i, const char* name) {
|
|
char buf[256];
|
|
sprintf(buf, "-%s", name);
|
|
if (!strcmp(argv[i], buf)) return true;
|
|
sprintf(buf, "--%s", name);
|
|
if (!strcmp(argv[i], buf)) return true;
|
|
return false;
|
|
}
|
|
|
|
struct JOB_DESC {
|
|
DB_WORKUNIT wu;
|
|
char wu_template[BLOB_SIZE];
|
|
char result_template_file[256], result_template_path[MAXPATHLEN];
|
|
char** infiles;
|
|
char* command_line;
|
|
char additional_xml[256];
|
|
bool assign_flag;
|
|
bool assign_multi;
|
|
int assign_id;
|
|
int assign_type;
|
|
int ninfiles;
|
|
|
|
JOB_DESC() {
|
|
wu.clear();
|
|
infiles = NULL;
|
|
command_line = NULL;
|
|
assign_flag = false;
|
|
assign_multi = false;
|
|
strcpy(result_template_file, "");
|
|
strcpy(additional_xml, "");
|
|
assign_id = 0;
|
|
assign_type = ASSIGN_NONE;
|
|
ninfiles = 0;
|
|
|
|
// defaults (in case they're not in WU template)
|
|
//
|
|
wu.id = 0;
|
|
wu.min_quorum = 2;
|
|
wu.target_nresults = 2;
|
|
wu.max_error_results = 3;
|
|
wu.max_total_results = 10;
|
|
wu.max_success_results = 6;
|
|
wu.rsc_fpops_est = 3600e9;
|
|
wu.rsc_fpops_bound = 86400e9;
|
|
wu.rsc_memory_bound = 5e8;
|
|
wu.rsc_disk_bound = 1e9;
|
|
wu.rsc_bandwidth_bound = 0.0;
|
|
wu.delay_bound = 7*86400;
|
|
|
|
}
|
|
void create();
|
|
void parse_cmdline(int, char**);
|
|
};
|
|
|
|
// parse additional job-specific info when using --stdin
|
|
//
|
|
void JOB_DESC::parse_cmdline(int argc, char** argv) {
|
|
for (int i=0; i<argc; i++) {
|
|
if (arg(argv, i, (char*)"command_line")) {
|
|
command_line = argv[++i];
|
|
} else if (arg(argv, i, (char*)"wu_name")) {
|
|
strcpy(wu.name, argv[++i]);
|
|
} else {
|
|
if (!strncmp("-", argv[i], 1)) {
|
|
fprintf(stderr, "create_work: bad stdin argument '%s'\n", argv[i]);
|
|
exit(1);
|
|
}
|
|
infiles = argv+i;
|
|
ninfiles = argc - i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
DB_APP app;
|
|
int retval;
|
|
char wu_template_file[256];
|
|
int i;
|
|
char download_dir[256], db_name[256], db_passwd[256];
|
|
char db_user[256],db_host[256];
|
|
char buf[4096];
|
|
JOB_DESC jd;
|
|
bool show_wu_name = true;
|
|
bool use_stdin = false;
|
|
|
|
strcpy(wu_template_file, "");
|
|
strcpy(app.name, "");
|
|
strcpy(db_passwd, "");
|
|
const char* config_dir = 0;
|
|
i = 1;
|
|
|
|
while (i < argc) {
|
|
if (arg(argv, i, "appname")) {
|
|
safe_strcpy(app.name, argv[++i]);
|
|
} else if (arg(argv, i, "d")) {
|
|
int dl = atoi(argv[++i]);
|
|
log_messages.set_debug_level(dl);
|
|
if (dl ==4) g_print_queries = true;
|
|
} else if (arg(argv, i, "wu_name")) {
|
|
show_wu_name = false;
|
|
safe_strcpy(jd.wu.name, argv[++i]);
|
|
} else if (arg(argv, i, "wu_template")) {
|
|
safe_strcpy(wu_template_file, argv[++i]);
|
|
} else if (arg(argv, i, "result_template")) {
|
|
safe_strcpy(jd.result_template_file, argv[++i]);
|
|
} else if (arg(argv, i, "config_dir")) {
|
|
config_dir = argv[++i];
|
|
} else if (arg(argv, i, "batch")) {
|
|
jd.wu.batch = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "priority")) {
|
|
jd.wu.priority = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "rsc_fpops_est")) {
|
|
jd.wu.rsc_fpops_est = atof(argv[++i]);
|
|
} else if (arg(argv, i, "rsc_fpops_bound")) {
|
|
jd.wu.rsc_fpops_bound = atof(argv[++i]);
|
|
} else if (arg(argv, i, "rsc_memory_bound")) {
|
|
jd.wu.rsc_memory_bound = atof(argv[++i]);
|
|
} else if (arg(argv, i, "size_class")) {
|
|
jd.wu.size_class = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "rsc_disk_bound")) {
|
|
jd.wu.rsc_disk_bound = atof(argv[++i]);
|
|
} else if (arg(argv, i, "delay_bound")) {
|
|
jd.wu.delay_bound = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "min_quorum")) {
|
|
jd.wu.min_quorum = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "target_nresults")) {
|
|
jd.wu.target_nresults = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "max_error_results")) {
|
|
jd.wu.max_error_results = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "max_total_results")) {
|
|
jd.wu.max_total_results = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "max_success_results")) {
|
|
jd.wu.max_success_results = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "opaque")) {
|
|
jd.wu.opaque = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "command_line")) {
|
|
jd.command_line= argv[++i];
|
|
} else if (arg(argv, i, "additional_xml")) {
|
|
strcpy(jd.additional_xml, argv[++i]);
|
|
} else if (arg(argv, i, "wu_id")) {
|
|
jd.wu.id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "broadcast")) {
|
|
jd.assign_multi = true;
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_NONE;
|
|
} else if (arg(argv, i, "broadcast_user")) {
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_USER;
|
|
jd.assign_multi = true;
|
|
jd.assign_id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "broadcast_team")) {
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_TEAM;
|
|
jd.assign_multi = true;
|
|
jd.assign_id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "target_host")) {
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_HOST;
|
|
jd.assign_id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "target_user")) {
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_USER;
|
|
jd.assign_id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "target_team")) {
|
|
jd.assign_flag = true;
|
|
jd.assign_type = ASSIGN_TEAM;
|
|
jd.assign_id = atoi(argv[++i]);
|
|
} else if (arg(argv, i, "help")) {
|
|
usage();
|
|
exit(0);
|
|
} else if (arg(argv, i, "stdin")) {
|
|
use_stdin = true;
|
|
} else {
|
|
if (!strncmp("-", argv[i], 1)) {
|
|
fprintf(stderr, "create_work: bad argument '%s'\n", argv[i]);
|
|
exit(1);
|
|
}
|
|
jd.infiles = argv+i;
|
|
jd.ninfiles = argc - i;
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
|
|
if (!strlen(app.name)) {
|
|
usage();
|
|
}
|
|
if (!strlen(jd.wu.name)) {
|
|
sprintf(jd.wu.name, "%s_%d_%f", app.name, getpid(), dtime());
|
|
}
|
|
if (!strlen(wu_template_file)) {
|
|
sprintf(wu_template_file, "templates/%s_in", app.name);
|
|
}
|
|
if (!strlen(jd.result_template_file)) {
|
|
sprintf(jd.result_template_file, "templates/%s_out", app.name);
|
|
}
|
|
|
|
retval = config.parse_file(config_dir);
|
|
if (retval) {
|
|
fprintf(stderr, "Can't parse config file: %s\n", boincerror(retval));
|
|
exit(1);
|
|
} else {
|
|
strcpy(db_name, config.db_name);
|
|
strcpy(db_passwd, config.db_passwd);
|
|
strcpy(db_user, config.db_user);
|
|
strcpy(db_host, config.db_host);
|
|
strcpy(download_dir, config.download_dir);
|
|
}
|
|
|
|
retval = boinc_db.open(db_name, db_host, db_user, db_passwd);
|
|
if (retval) {
|
|
fprintf(stderr,
|
|
"create_work: error opening database: %s\n", boincerror(retval)
|
|
);
|
|
exit(1);
|
|
}
|
|
boinc_db.set_isolation_level(READ_UNCOMMITTED);
|
|
sprintf(buf, "where name='%s'", app.name);
|
|
retval = app.lookup(buf);
|
|
if (retval) {
|
|
fprintf(stderr, "create_work: app not found\n");
|
|
exit(1);
|
|
}
|
|
|
|
retval = read_filename(
|
|
wu_template_file, jd.wu_template, sizeof(jd.wu_template)
|
|
);
|
|
if (retval) {
|
|
fprintf(stderr,
|
|
"create_work: can't open input template %s\n", wu_template_file
|
|
);
|
|
exit(1);
|
|
}
|
|
|
|
jd.wu.appid = app.id;
|
|
|
|
strcpy(jd.result_template_path, "./");
|
|
strcat(jd.result_template_path, jd.result_template_file);
|
|
if (use_stdin) {
|
|
string values;
|
|
DB_WORKUNIT wu;
|
|
int _argc;
|
|
char* _argv[100], value_buf[MAX_QUERY_LEN];
|
|
for (int j=0; ; j++) {
|
|
char* p = fgets(buf, sizeof(buf), stdin);
|
|
if (p == NULL) break;
|
|
JOB_DESC jd2 = jd;
|
|
strcpy(jd2.wu.name, "");
|
|
_argc = parse_command_line(buf, _argv);
|
|
jd2.parse_cmdline(_argc, _argv);
|
|
if (!strlen(jd2.wu.name)) {
|
|
sprintf(jd2.wu.name, "%s_%d", jd.wu.name, j);
|
|
}
|
|
retval = create_work(
|
|
jd2.wu,
|
|
jd2.wu_template,
|
|
jd2.result_template_file,
|
|
jd2.result_template_path,
|
|
const_cast<const char **>(jd2.infiles),
|
|
jd2.ninfiles,
|
|
config,
|
|
jd2.command_line,
|
|
jd2.additional_xml,
|
|
value_buf
|
|
);
|
|
if (retval) {
|
|
fprintf(stderr, "create_work() failed: %d\n", retval);
|
|
exit(1);
|
|
}
|
|
if (values.size()) {
|
|
values += ",";
|
|
values += value_buf;
|
|
} else {
|
|
values = value_buf;
|
|
}
|
|
// MySQL can handles queries at least 1 MB
|
|
//
|
|
int n = strlen(value_buf);
|
|
if (values.size() + 2*n > 1000000) {
|
|
retval = wu.insert_batch(values);
|
|
if (retval) {
|
|
fprintf(stderr,
|
|
"wu.insert_batch() failed: %d\n", retval
|
|
);
|
|
exit(1);
|
|
}
|
|
values.clear();
|
|
}
|
|
}
|
|
if (values.size()) {
|
|
retval = wu.insert_batch(values);
|
|
if (retval) {
|
|
fprintf(stderr,
|
|
"wu.insert_batch() failed: %d\n", retval
|
|
);
|
|
exit(1);
|
|
}
|
|
}
|
|
} else {
|
|
jd.create();
|
|
if (show_wu_name) {
|
|
printf("workunit name: %s\n", jd.wu.name);
|
|
}
|
|
}
|
|
boinc_db.close();
|
|
}
|
|
|
|
void JOB_DESC::create() {
|
|
char buf[256];
|
|
int retval = create_work(
|
|
wu,
|
|
wu_template,
|
|
result_template_file,
|
|
result_template_path,
|
|
const_cast<const char **>(infiles),
|
|
ninfiles,
|
|
config,
|
|
command_line,
|
|
additional_xml
|
|
);
|
|
if (retval) {
|
|
fprintf(stderr, "create_work: %s\n", boincerror(retval));
|
|
exit(1);
|
|
}
|
|
if (assign_flag) {
|
|
DB_ASSIGNMENT assignment;
|
|
assignment.clear();
|
|
assignment.create_time = time(0);
|
|
assignment.target_id = assign_id;
|
|
assignment.target_type = assign_type;
|
|
assignment.multi = assign_multi;
|
|
assignment.workunitid = wu.id;
|
|
retval = assignment.insert();
|
|
if (retval) {
|
|
fprintf(stderr,
|
|
"assignment.insert() failed: %s\n", boincerror(retval)
|
|
);
|
|
exit(1);
|
|
}
|
|
sprintf(buf, "transitioner_flags=%d",
|
|
assign_multi?TRANSITION_NONE:TRANSITION_NO_NEW_RESULTS
|
|
);
|
|
retval = wu.update_field(buf);
|
|
if (retval) {
|
|
fprintf(stderr, "wu.update() failed: %s\n", boincerror(retval));
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
const char *BOINC_RCSID_3865dbbf46 = "$Id$";
|