// The contents of this file are subject to the BOINC 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://boinc.berkeley.edu/license_1.0.txt // // 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): // // make_work // -wu_name name // -result_template filename // [ -redundancy n ] // [ -cushion n ] // // Create WU and result records as needed to maintain a pool of work // (for testing purposes). // Makes a new WU for every "redundancy" results. // Clones the WU of the given name. // #include #include #include #include #include #include "boinc_db.h" #include "crypt.h" #include "util.h" #include "backend_lib.h" #include "config.h" #include "parse.h" #include "sched_util.h" #define LOCKFILE "make_work.out" #define PIDFILE "make_work.pid" int cushion = 10; int redundancy = 10; char wu_name[256], result_template_file[256]; // edit a WU XML doc, replacing one filename by another // (should appear twice, within and ) // Also patch the download URL (redundant) // void replace_file_name( char* xml_doc, char* filename, char* new_filename, char* download_url ) { char buf[MAX_BLOB_SIZE], temp[256], download_path[256], new_download_path[256]; char * p; sprintf(download_path,"%s/%s", download_url, filename); sprintf(new_download_path,"%s/%s", download_url, new_filename); strcpy(buf, xml_doc); p = strtok(buf,"\n"); while (p) { if (parse_str(p, "", temp, sizeof(temp))) { if(!strcmp(filename, temp)) { replace_element(xml_doc + (p - buf),"","",new_filename); } } else if (parse_str(p, "", temp, sizeof(temp))) { if(!strcmp(filename, temp)) { replace_element(xml_doc + (p - buf),"","",new_filename); } } else if (parse_str(p, "", temp, sizeof(temp))) { if(!strcmp(temp, download_path)) { replace_element(xml_doc + (p - buf),"","",new_download_path); } } p = strtok(0, "\n"); } } void make_work() { CONFIG config; char * p; int retval, start_time=time(0), n, nresults_left; char keypath[256], suffix[256], result_template[MAX_BLOB_SIZE]; char file_name[256], buf[MAX_BLOB_SIZE], pathname[256]; char new_file_name[256], new_pathname[256], command[256]; char starting_xml[MAX_BLOB_SIZE], new_buf[MAX_BLOB_SIZE]; R_RSA_PRIVATE_KEY key; DB_WORKUNIT wu; DB_RESULT result; int seqno = 0; retval = config.parse_file(); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't read config file\n"); exit(1); } retval = boinc_db_open(config.db_name, config.db_passwd); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't open db\n"); exit(1); } sprintf(buf, "where name='%s'", wu_name); retval = wu.lookup(buf); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't find wu %s\n", wu_name); exit(1); } strcpy(starting_xml,wu.xml_doc); sprintf(keypath, "%s/upload_private", config.key_dir); retval = read_key_file(keypath, key); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't read key\n"); exit(1); } retval = read_filename(result_template_file, result_template); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't open result template\n"); exit(1); } nresults_left = 0; while (1) { check_stop_trigger(); sprintf(buf, "where server_state=%d", RESULT_SERVER_STATE_UNSENT); retval = result.count(n, buf); if (retval) { log_messages.printf(SchedMessages::CRITICAL, "can't count results\n"); exit(1); } if (n > cushion) { sleep(1); continue; } // make a new workunit every "redundancy" results // if (nresults_left == 0) { strcpy(buf, starting_xml); p = strtok(buf, "\n"); strcpy(file_name, ""); // make new copies of all the WU's input files // while (p) { if (parse_str(p, "", file_name, sizeof(file_name))) { sprintf( new_file_name, "%s__%d_%d", file_name, start_time, seqno++ ); sprintf(pathname, "%s/%s", config.download_dir, file_name); sprintf( new_pathname, "%s/%s",config.download_dir, new_file_name ); sprintf(command,"ln %s %s", pathname, new_pathname); log_messages.printf(SchedMessages::DEBUG, "executing command: %s\n", command); if (system(command)) { log_messages.printf(SchedMessages::CRITICAL, "system() error\n"); perror(command); exit(1); } strcpy(new_buf, starting_xml); replace_file_name( new_buf, file_name, new_file_name, config.download_url ); strcpy(wu.xml_doc, new_buf); } p = strtok(0, "\n"); } nresults_left = redundancy; sprintf(wu.name, "wu_%d_%d", start_time, seqno++); wu.id = 0; wu.create_time = time(0); retval = wu.insert(); wu.id = boinc_db_insert_id(); log_messages.printf(SchedMessages::DEBUG, "[%s] Created new WU\n", wu.name); } sprintf(suffix, "%d_%d", start_time, seqno++); create_result( wu, result_template, suffix, key, config.upload_url, config.download_url ); log_messages.printf(SchedMessages::DEBUG, "[%s_%s] Added result\n", wu.name, suffix); nresults_left--; } } int main(int argc, char** argv) { bool asynch = false; int i; check_stop_trigger(); for (i=1; i