forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_assimilator.cpp
112 lines (101 loc) · 3.23 KB
/
sample_assimilator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2015 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/>.
// A sample assimilator that:
// 1) if success, copy the output file(s) to a directory
// 2) if failure, append a message to an error log
#include <vector>
#include <string>
#include <cstdlib>
#include "boinc_db.h"
#include "error_numbers.h"
#include "filesys.h"
#include "sched_msgs.h"
#include "validate_util.h"
#include "sched_config.h"
#include "assimilate_handler.h"
using std::vector;
using std::string;
const char* outdir = "sample_results";
int write_error(char* p) {
static FILE* f = 0;
if (!f) {
char path[1024];
sprintf(path, "%s/errors", outdir);
f = fopen(config.project_path(path), "a");
if (!f) return ERR_FOPEN;
}
fprintf(f, "%s", p);
fflush(f);
return 0;
}
int assimilate_handler_init(int argc, char** argv) {
for (int i=1; i<argc; i++) {
if (!strcmp(argv[i], "--outdir")) {
outdir = argv[++i];
} else {
fprintf(stderr, "bad arg %s\n", argv[i]);
}
}
return 0;
}
void assimilate_handler_usage() {
// describe the project specific arguments here
fprintf(stderr,
" Custom options:\n"
" [--outdir X] output dir for result files\n"
);
}
int assimilate_handler(
WORKUNIT& wu, vector<RESULT>& /*results*/, RESULT& canonical_result
) {
int retval;
char buf[1024];
unsigned int i;
retval = boinc_mkdir(config.project_path(outdir));
if (retval) return retval;
if (wu.canonical_resultid) {
vector<OUTPUT_FILE_INFO> output_files;
const char *copy_path;
get_output_file_infos(canonical_result, output_files);
unsigned int n = output_files.size();
bool file_copied = false;
for (i=0; i<n; i++) {
OUTPUT_FILE_INFO& fi = output_files[i];
if (n==1) {
sprintf(buf, "%s/%s", outdir, wu.name);
} else {
sprintf(buf, "%s/%s_%d", outdir, wu.name, i);
}
copy_path = config.project_path(buf);
retval = boinc_copy(fi.path.c_str() , copy_path);
if (!retval) {
file_copied = true;
}
}
if (!file_copied) {
sprintf(buf, "%s/%s_no_output_files", outdir, wu.name);
copy_path = config.project_path(buf);
FILE* f = fopen(copy_path, "w");
if (!f) return ERR_FOPEN;
fclose(f);
}
} else {
sprintf(buf, "%s: 0x%x\n", wu.name, wu.error_mask);
return write_error(buf);
}
return 0;
}