// 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 . // 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 #include #include #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& /*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_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