// 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): // // read "in", convert to UC, write to "out" // // This version does one char/second, // and writes its state to disk every so often #include #include #include #include "boinc_api.h" #define CHECKPOINT_FILE "uc_slow_state" time_t my_start_time; int do_checkpoint(MFILE& mf, int nchars) { int retval; char resolved_name[512],res_name2[512]; FILE *app_time = fopen("../../app.time", "w"), *client_time = fopen("../../client.time", "w"); APP_INIT_DATA aid; boinc_get_init_data(aid); boinc_resolve_filename( "temp", resolved_name ); FILE* f = fopen(resolved_name, "w"); if (!f) return 1; fprintf(f, "%d", nchars); fclose(f); fprintf(stderr, "APP: uc_slow checkpointing\n"); // hopefully atomic part starts here retval = mf.flush(); if (retval) return retval; boinc_resolve_filename( CHECKPOINT_FILE, res_name2 ); retval = rename(resolved_name, res_name2); if (retval) return retval; // hopefully atomic part ends here // print our own information about cpu time fprintf(app_time, "%f\n", difftime(time(0), my_start_time)); fflush(app_time); fclose(app_time); // print what the client thinks is our cpu time fprintf(client_time, "%f\n", aid.wu_cpu_time + boinc_cpu_time()); fflush(client_time); fclose(client_time); return 0; } int main() { int c, nchars = 0, retval, n; unsigned long int i; double j; char resolved_name[512]; MFILE out, time_file; FILE* state, *in; my_start_time = time(0); boinc_init(); boinc_resolve_filename( "in", resolved_name ); in = fopen(resolved_name, "r"); boinc_resolve_filename( CHECKPOINT_FILE, resolved_name ); state = fopen(resolved_name, "r"); if (state) { fscanf(state, "%d", &nchars); printf("nchars %d\n", nchars); fseek(in, nchars, SEEK_SET); boinc_resolve_filename( "out", resolved_name ); retval = out.open(resolved_name, "a"); } else { boinc_resolve_filename( "out", resolved_name ); retval = out.open(resolved_name, "w"); } fprintf(stderr, "APP: uc_slow starting\n"); if (retval) { fprintf(stderr, "APP: uc_slow output open failed %d\n", retval); exit(1); } time_file.open("../../time.xml", "w"); while (1) { c = fgetc(in); if (c == EOF) break; c = toupper(c); out._putchar(c); nchars++; n = 0; j = 3.14159; for(i=0; i<200000000; i++) { n++; j *= n+j-3.14159; j /= (float)n; } if (boinc_time_to_checkpoint()) { retval = do_checkpoint(out, nchars); if (retval) { fprintf(stderr, "APP: uc_slow checkpoint failed %d\n", retval); } boinc_checkpoint_completed(); } } retval = out.flush(); if (retval) { fprintf(stderr, "APP: uc_slow flush failed %d\n", retval); exit(1); } fprintf(stderr, "APP: uc_slow ending, wrote %d chars\n", nchars); time_file.printf("%f\n", boinc_cpu_time()); time_file.flush(); time_file.close(); boinc_finish(0); return 0; }