Personal tools
You are here: Home Downloads LinuxDays 2007 BOINC sample_dummy_assimilator
Document Actions

sample_dummy_assimilator

This is a fast hack to save the canonical result from being removed by the file_deleter daemon. The canonical result file will be copied to the project upload/canonical directory. This directory has to be created first. (I tested this assimilator with qurom 2 and results 3 during the work unit creation test)

Click here to get the file

Size 3.2 kB - File type text/x-c++src

File contents

// Berkeley Open Infrastructure for Network Computing
// http://boinc.berkeley.edu
// Copyright (C) 2005 University of California
//
// This 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 2.1 of the License, or (at your option) any later version.
//
// This software 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.
//
// To view the GNU Lesser General Public License visit
// http://www.gnu.org/copyleft/lesser.html
// or write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

// A sample assimilator that only writes a log message.

#include "config.h"
#include <cstdio>

#include "boinc_db.h"
#include "sched_msgs.h"
#include "sched_util.h"
#include "assimilate_handler.h"
#include "validate_util.h"

using std::vector;
using std::string;

int assimilate_handler(
    WORKUNIT& wu, vector<RESULT>& /*results*/, RESULT& canonical_result
) {
    SCOPE_MSG_LOG scope_messages(log_messages, SCHED_MSG_LOG::MSG_NORMAL);
    scope_messages.printf("[%s] Assimilating\n", wu.name);
    if (wu.canonical_resultid) {
        string output_file_name;

        scope_messages.printf("[%s] Found canonical result\n", wu.name);
        log_messages.printf_multiline(
            SCHED_MSG_LOG::MSG_DEBUG, canonical_result.xml_doc_out,
            "[%s] canonical result", wu.name
        );
       if (!(get_output_file_path(canonical_result, output_file_name))) {
           scope_messages.printf(
                "[%s] Output file path %s\n",
                wu.name, output_file_name.c_str()
            );
	    char *target_directory="/home/boincadm/projects/test_setup/upload/canonical/";
	    char cmd[1024];
	    int err;
            snprintf(cmd,1024,"cp %s %s",output_file_name.c_str(),
                     target_directory);
	    err = system(cmd);
	    scope_messages.printf("[%s] exectuted the system command %s\n",
                wu.name,cmd);	
	    
	    // ok lets copy the result file
       }
    } else {
        scope_messages.printf("[%s] No canonical result\n", wu.name);
    }
    if (wu.error_mask&WU_ERROR_COULDNT_SEND_RESULT) {
        log_messages.printf(SCHED_MSG_LOG::MSG_CRITICAL,
            "[%s] Error: couldn't send a result\n", wu.name
        );
    }
    if (wu.error_mask&WU_ERROR_TOO_MANY_ERROR_RESULTS) {
        log_messages.printf(SCHED_MSG_LOG::MSG_CRITICAL,
            "[%s] Error: too many error results\n", wu.name
        );
    }
    if (wu.error_mask&WU_ERROR_TOO_MANY_TOTAL_RESULTS) {
        log_messages.printf(SCHED_MSG_LOG::MSG_CRITICAL,
            "[%s] Error: too many total results\n", wu.name
        );
    }
    if (wu.error_mask&WU_ERROR_TOO_MANY_SUCCESS_RESULTS) {
        log_messages.printf(SCHED_MSG_LOG::MSG_CRITICAL,
            "[%s] Error: too many success results\n", wu.name
        );
    }
    return 0;
}

const char *BOINC_RCSID_8f6a5a2d27 = "$Id: sample_dummy_assimilator.C,v 1.10 2005/11/21 18:34:34 korpela Exp $";
by Marc Seil last modified 2007-01-31 15:47

Powered by Plone