mirror of https://github.com/BOINC/boinc.git
168 lines
4.6 KiB
C
168 lines
4.6 KiB
C
// 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):
|
|
//
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "db.h"
|
|
#include "md5_file.h"
|
|
|
|
#include "backend_lib.h"
|
|
|
|
#define INFILE_MACRO "<INFILE_"
|
|
#define MD5_MACRO "<MD5_"
|
|
#define WU_NAME_MACRO "<WU_NAME/>"
|
|
#define RESULT_NAME_MACRO "<RESULT_NAME/>"
|
|
#define OUTFILE_MACRO "<OUTFILE_"
|
|
#define UPLOAD_URL_MACRO "<UPLOAD_URL/>"
|
|
#define DOWNLOAD_URL_MACRO "<DOWNLOAD_URL/>"
|
|
#define UPLOAD_URL "http://localhost/upload/"
|
|
#define DOWNLOAD_URL "http://localhost/download/"
|
|
|
|
int read_file(char* path, char* buf) {
|
|
FILE* f = fopen(path, "r");
|
|
if (!f) return -1;
|
|
int n = fread(buf, 1, MAX_BLOB_SIZE, f);
|
|
buf[n] = 0;
|
|
fclose(f);
|
|
return 0;
|
|
}
|
|
|
|
// replace INFILE_x with filename from array,
|
|
// MD5_x with checksum of file,
|
|
// WU_NAME with WU name
|
|
//
|
|
static int process_wu_template(
|
|
char* wu_name, char* tmplate, char* out,
|
|
char* dirpath, char** infiles, int n
|
|
) {
|
|
char* p;
|
|
char buf[MAX_BLOB_SIZE], md5[33], path[256];
|
|
bool found;
|
|
int i;
|
|
double nbytes;
|
|
|
|
strcpy(out, tmplate);
|
|
while (1) {
|
|
found = false;
|
|
p = strstr(out, INFILE_MACRO);
|
|
if (p) {
|
|
found = true;
|
|
i = atoi(p+strlen(INFILE_MACRO));
|
|
if (i >= n) {
|
|
fprintf(stderr, "invalid file number\n");
|
|
return 1;
|
|
}
|
|
strcpy(buf, p+strlen(INFILE_MACRO)+1+2); // assume <= 10 files
|
|
strcpy(p, infiles[i]);
|
|
strcat(p, buf);
|
|
}
|
|
p = strstr(out, UPLOAD_URL_MACRO);
|
|
if (p) {
|
|
found = true;
|
|
strcpy(buf, p+strlen(UPLOAD_URL_MACRO));
|
|
strcpy(p, UPLOAD_URL);
|
|
strcat(p, buf);
|
|
}
|
|
p = strstr(out, DOWNLOAD_URL_MACRO);
|
|
if (p) {
|
|
found = true;
|
|
strcpy(buf, p+strlen(DOWNLOAD_URL_MACRO));
|
|
strcpy(p, DOWNLOAD_URL);
|
|
strcat(p, buf);
|
|
}
|
|
p = strstr(out, MD5_MACRO);
|
|
if (p) {
|
|
found = true;
|
|
i = atoi(p+strlen(MD5_MACRO));
|
|
if (i >= n) {
|
|
fprintf(stderr, "invalid file number\n");
|
|
return 1;
|
|
}
|
|
sprintf(path, "%s/%s", dirpath, infiles[i]);
|
|
md5_file(path, md5, nbytes);
|
|
strcpy(buf, p+strlen(MD5_MACRO)+1+2); // assume <= 10 files
|
|
strcpy(p, md5);
|
|
strcat(p, buf);
|
|
}
|
|
p = strstr(out, WU_NAME_MACRO);
|
|
if (p) {
|
|
found = true;
|
|
strcpy(buf, p+strlen(WU_NAME_MACRO));
|
|
strcpy(p, wu_name);
|
|
strcat(p, buf);
|
|
}
|
|
if (!found) break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int create_result(WORKUNIT& wu, char* result_template, int i) {
|
|
RESULT r;
|
|
char base_outfile_name[256];
|
|
int retval;
|
|
|
|
memset(&r, 0, sizeof(r));
|
|
r.create_time = time(0);
|
|
r.workunitid = wu.id;
|
|
r.state = RESULT_STATE_UNSENT;
|
|
sprintf(r.name, "%s_%d", wu.name, i);
|
|
sprintf(base_outfile_name, "%s_", r.name);
|
|
strcpy(r.xml_doc_in, result_template);
|
|
retval = process_result_template(
|
|
r.xml_doc_in, base_outfile_name, wu.name, r.name
|
|
);
|
|
|
|
retval = db_result_new(r);
|
|
return retval;
|
|
}
|
|
|
|
int create_work(
|
|
WORKUNIT& wu,
|
|
char* wu_template,
|
|
char* result_template,
|
|
int nresults,
|
|
char* infile_dir,
|
|
char** infiles,
|
|
int ninfiles
|
|
) {
|
|
int i, retval;
|
|
|
|
wu.create_time = time(0);
|
|
retval = process_wu_template(
|
|
wu.name, wu_template, wu.xml_doc, infile_dir, infiles, ninfiles
|
|
);
|
|
if (retval) return retval;
|
|
if (wu.dynamic_results) {
|
|
wu.max_results = nresults;
|
|
} else {
|
|
wu.nresults_unsent = nresults;
|
|
}
|
|
retval = db_workunit_new(wu);
|
|
wu.id = db_insert_id();
|
|
|
|
if (!wu.dynamic_results) {
|
|
for (i=0; i<nresults; i++) {
|
|
create_result(wu, result_template, i);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|