boinc/sched/validate_test.C

180 lines
5.1 KiB
C++
Raw Normal View History

// 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):
//
using namespace std;
#include <vector>
#include "boinc_db.h"
#include "config.h"
#include "parse.h"
#include "sched_util.h"
extern CONFIG config;
// get the name of a result's (first) output file
//
int get_output_file_path(RESULT& result, char* path) {
char buf[256];
bool flag;
flag = parse_str(result.xml_doc_in, "<name>", buf, sizeof(buf));
if (!flag) return -1;
sprintf(path, "%s/%s", config.upload_dir, buf);
return 0;
}
// crude example of a validation function.
// See if there's a strict majority under equality.
//
int check_set(vector<RESULT>& results, int& canonicalid, double& credit) {
int i, j, n, neq=0, retval, ilow, ihigh, canonical;
char* files[100];
char path[256];
bool found;
double c, low=0.0, high=0.0;
canonical = 0;
n = results.size();
// read the result files into malloc'd memory buffers
//
for (i=0; i<n; i++) {
RESULT& result = results[i];
retval = get_output_file_path(result, path);
if (retval) {
log_messages.printf(
SchedMessages::CRITICAL,
"check_set: can't get output filename for %s\n",
result.name
);
return retval;
}
retval = read_file_malloc(path, files[i]);
if (retval) {
log_messages.printf(
SchedMessages::CRITICAL,
"[RESULT#%d %s] Couldn't open %s (read_file_malloc()=%d)\n",
result.id, result.name, path, retval
);
return retval;
}
}
// go through the files, compare with the others.
// If equal to over half, make it the canonical result
//
for (i=0; i<n; i++) {
neq = 0;
for (j=0; j<n; j++) {
if (!strcmp(files[i], files[j])) neq++;
}
if (neq > n/2) {
found = true;
canonical = i;
canonicalid = results[i].id;
break;
}
}
// if we have a canonical result, flag all matching results as valid
// Also find the low and high claimed credits
//
ilow = ihigh = -1;
for (i=0; i<n; i++) {
if (!strcmp(files[i], files[canonical])) {
results[i].validate_state = VALIDATE_STATE_VALID;
c = results[i].claimed_credit;
if (ilow < 0) {
ilow = ihigh = i;
low = high = c;
} else {
if (c < low) {
low = c;
ilow = i;
}
if (c > high) {
high = c;
ihigh = i;
}
}
} else {
results[i].validate_state = VALIDATE_STATE_INVALID;
}
}
// if we have a canonical result, compute a canonical credit as follows:
// - if N==1, give that credit
// - if N==2, give min credit
// - if N>2, toss out min and max, give average of rest
//
if (neq == 1) {
credit = low;
} else if (neq == 2) {
credit = low;
} else {
double sum = 0;
for (i=0; i<n; i++) {
if (i == ilow) continue;
if (i == ihigh) continue;
if (results[i].validate_state == VALIDATE_STATE_VALID) {
sum += results[i].claimed_credit;
}
}
credit = sum/(neq-2);
}
// free malloced files
//
for (i=0; i<n; i++) {
free(files[i]);
}
return 0;
}
int check_pair(RESULT& r1, RESULT& r2, bool& match) {
char path[256];
char* p1, *p2;
int retval;
get_output_file_path(r1, path);
retval = read_file_malloc(path, p1);
if (retval) {
log_messages.printf(
SchedMessages::CRITICAL,
"[RESULT#%d %s] [RESULT#%d %s] Couldn't open %s (r1: read_file_malloc()=%d)\n",
r1.id, r1.name, r2.id, r2.name, path, retval
);
return retval;
}
get_output_file_path(r2, path);
retval = read_file_malloc(path, p2);
if (retval) {
log_messages.printf(
SchedMessages::CRITICAL,
"[RESULT#%d %s] [RESULT#%d %s] Couldn't open %s (r2: read_file_malloc()=%d)\n",
r1.id, r1.name, r2.id, r2.name, path, retval
);
return retval;
}
match = !strcmp(p1, p2);
free(p1);
free(p2);
return 0;
}