2002-12-03 18:57:40 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
|
2002-10-18 16:52:28 +00:00
|
|
|
// make_work
|
|
|
|
// -wu_name name
|
|
|
|
// -result_template filename
|
|
|
|
// [ -redundancy n ]
|
|
|
|
// [ -cushion n ]
|
2002-10-14 23:10:12 +00:00
|
|
|
//
|
2002-11-05 18:36:09 +00:00
|
|
|
// Create WU and result records as needed to maintain a pool of work
|
|
|
|
// (for testing purposes).
|
2002-10-18 16:52:28 +00:00
|
|
|
// Makes a new WU for every "redundancy" results.
|
|
|
|
// Clones the WU of the given name.
|
2002-10-09 04:56:41 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "db.h"
|
2002-10-14 23:10:12 +00:00
|
|
|
#include "crypt.h"
|
|
|
|
#include "backend_lib.h"
|
2002-10-09 04:56:41 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#define TRIGGER_FILENAME "stop_server"
|
|
|
|
|
2002-10-14 23:10:12 +00:00
|
|
|
int cushion = 10;
|
2002-10-18 16:52:28 +00:00
|
|
|
int redundancy = 10;
|
2002-10-14 23:10:12 +00:00
|
|
|
char wu_name[256], result_template_file[256];
|
|
|
|
|
2002-10-09 04:56:41 +00:00
|
|
|
void check_trigger() {
|
|
|
|
FILE* f = fopen(TRIGGER_FILENAME, "r");
|
|
|
|
if (!f) return;
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void make_work() {
|
|
|
|
CONFIG config;
|
2002-10-18 16:52:28 +00:00
|
|
|
int retval, i, start_time=time(0), n, nresults_left;
|
2002-11-21 00:48:50 +00:00
|
|
|
char keypath[256], suffix[256], result_template[MAX_BLOB_SIZE];
|
2002-10-14 23:10:12 +00:00
|
|
|
R_RSA_PRIVATE_KEY key;
|
|
|
|
WORKUNIT wu;
|
2002-10-09 04:56:41 +00:00
|
|
|
|
|
|
|
retval = config.parse_file();
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "make_work: can't read config file\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = db_open(config.db_name, config.db_passwd);
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "make_work: can't open db\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-10-14 23:10:12 +00:00
|
|
|
strcpy(wu.name, wu_name);
|
|
|
|
retval = db_workunit_lookup_name(wu);
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "make_work: can't find wu %s\n", wu_name);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintf(keypath, "%s/upload_private", config.key_dir);
|
|
|
|
retval = read_key_file(keypath, key);
|
2002-10-09 04:56:41 +00:00
|
|
|
if (retval) {
|
2002-10-14 23:10:12 +00:00
|
|
|
fprintf(stderr, "make_work: can't read key\n");
|
2002-10-09 04:56:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-11-21 00:48:50 +00:00
|
|
|
retval = read_filename(result_template_file, result_template);
|
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "make_work: can't open result template\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-10-18 16:52:28 +00:00
|
|
|
nresults_left = 0;
|
2002-10-09 04:56:41 +00:00
|
|
|
while (true) {
|
|
|
|
fflush(stdout);
|
2002-12-07 00:56:51 +00:00
|
|
|
retval = db_result_count_server_state(RESULT_SERVER_STATE_UNSENT, n);
|
2002-10-09 04:56:41 +00:00
|
|
|
if (retval) {
|
|
|
|
fprintf(stderr, "make_work: can't counts results\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
printf("make_work: %d results\n", n);
|
2002-10-14 23:10:12 +00:00
|
|
|
if (n > cushion) {
|
2002-10-09 04:56:41 +00:00
|
|
|
sleep(1);
|
|
|
|
continue;
|
|
|
|
}
|
2002-10-14 23:10:12 +00:00
|
|
|
|
2002-10-18 16:52:28 +00:00
|
|
|
if (nresults_left == 0) {
|
|
|
|
nresults_left = redundancy;
|
|
|
|
sprintf(wu.name, "wu_%d_%d", start_time, i++);
|
|
|
|
wu.id = 0;
|
|
|
|
wu.create_time = time(0);
|
|
|
|
retval = db_workunit_new(wu);
|
|
|
|
wu.id = db_insert_id();
|
|
|
|
}
|
2002-10-14 23:10:12 +00:00
|
|
|
sprintf(suffix, "%d_%d", start_time, i++);
|
|
|
|
create_result(
|
2002-11-21 00:48:50 +00:00
|
|
|
wu, result_template, suffix, key,
|
2002-10-14 23:10:12 +00:00
|
|
|
config.upload_url, config.download_url
|
|
|
|
);
|
2002-10-09 04:56:41 +00:00
|
|
|
printf("make_work: added a result\n");
|
2002-10-18 16:52:28 +00:00
|
|
|
nresults_left--;
|
2002-10-09 04:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
bool asynch = false;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
unlink(TRIGGER_FILENAME);
|
|
|
|
for (i=1; i<argc; i++) {
|
|
|
|
if (!strcmp(argv[i], "-asynch")) {
|
|
|
|
asynch = true;
|
2002-10-14 23:10:12 +00:00
|
|
|
} else if (!strcmp(argv[i], "-cushion")) {
|
|
|
|
cushion = atoi(argv[++i]);
|
|
|
|
} else if (!strcmp(argv[i], "-result_template")) {
|
|
|
|
strcpy(result_template_file, argv[++i]);
|
|
|
|
} else if (!strcmp(argv[i], "-wu_name")) {
|
|
|
|
strcpy(wu_name, argv[++i]);
|
2002-10-09 04:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-14 23:10:12 +00:00
|
|
|
if (!strlen(result_template_file)) {
|
|
|
|
fprintf(stderr, "make_work: missing -result_template\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (!strlen(wu_name)) {
|
|
|
|
fprintf(stderr, "make_work: missing -wu_name\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2002-10-09 04:56:41 +00:00
|
|
|
if (asynch) {
|
|
|
|
if (!fork()) {
|
|
|
|
make_work();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
make_work();
|
|
|
|
}
|
|
|
|
}
|