// 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): // #ifdef _WIN32 #include "boinc_win.h" #endif #ifndef _WIN32 #include #include #include #endif #include "parse.h" #include "util.h" #include "error_numbers.h" #include "client_msgs.h" #include "time_stats.h" // exponential decay constant. // The last 30 days have a weight of 1/e; // everything before that has a weight of (1-1/e) const float ALPHA = (SECONDS_PER_DAY*30); TIME_STATS::TIME_STATS() { last_update = 0; first = true; on_frac = 1; connected_frac = 1; active_frac = 1; } // Update time statistics based on current activities // void TIME_STATS::update(bool is_connected, bool is_active) { int now = time(0), dt; double w1, w2; if (last_update == 0) { // this is the first time this client has executed. // Assume that its state has always been what it is now on_frac = 1; connected_frac = is_connected?1:0; active_frac = true; first = false; last_update = now; } else { dt = now - last_update; if (dt <= 0) return; w1 = 1 - exp(-dt/ALPHA); w2 = 1 - w1; if (first) { // the client has just started; this is the first call. // The client has been off (and disconnected and inactive) // since the last time it ran. on_frac *= w2; connected_frac *= w2; active_frac *= w2; first = false; } else { on_frac = w1 + w2*on_frac; connected_frac *= w2; if (is_connected) connected_frac += w1; active_frac *= w2; if (is_active) active_frac += w1; } last_update = now; } } // Write XML based time statistics // int TIME_STATS::write(MIOFILE& out, bool to_server) { out.printf( "\n" " %f\n" " %f\n" " %f\n", on_frac, connected_frac, active_frac ); if (!to_server) { out.printf( " %d\n", last_update ); } out.printf("\n"); return 0; } // Parse XML based time statistics, usually from client_state.xml // int TIME_STATS::parse(MIOFILE& in) { char buf[256]; SCOPE_MSG_LOG scope_messages(log_messages, CLIENT_MSG_LOG::DEBUG_STATE); while (in.fgets(buf, 256)) { if (match_tag(buf, "")) return 0; else if (parse_int(buf, "", last_update)) continue; else if (parse_double(buf, "", on_frac)) continue; else if (parse_double(buf, "", connected_frac)) continue; else if (parse_double(buf, "", active_frac)) continue; else scope_messages.printf("TIME_STATS::parse(): unrecognized: %s\n", buf); } return ERR_XML_PARSE; } const char *BOINC_RCSID_472504d8c2 = "$Id$";