2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2003-09-23 23:19:41 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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
|
2003-09-23 23:19:41 +00:00
|
|
|
|
|
|
|
// Functions to check the integrity of core client data structures.
|
|
|
|
// Not currently used, but might be handy if *0 type crashes occur
|
|
|
|
|
2003-10-16 19:03:49 +00:00
|
|
|
#include "cpp.h"
|
2004-03-04 11:41:43 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2004-06-16 23:16:08 +00:00
|
|
|
#include "boinc_win.h"
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cassert>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
2003-09-23 23:19:41 +00:00
|
|
|
|
|
|
|
#include "client_state.h"
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_project_pointer(PROJECT* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<projects.size(); i++) {
|
|
|
|
if (p == projects[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_app_pointer(APP* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<apps.size(); i++) {
|
|
|
|
if (p == apps[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_file_info_pointer(FILE_INFO* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<file_infos.size(); i++) {
|
|
|
|
if (p == file_infos[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_app_version_pointer(APP_VERSION* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<app_versions.size(); i++) {
|
|
|
|
if (p == app_versions[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_workunit_pointer(WORKUNIT* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<workunits.size(); i++) {
|
|
|
|
if (p == workunits[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_result_pointer(RESULT* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<results.size(); i++) {
|
|
|
|
if (p == results[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_pers_file_xfer_pointer(PERS_FILE_XFER* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<pers_file_xfers->pers_file_xfers.size(); i++) {
|
|
|
|
if (p == pers_file_xfers->pers_file_xfers[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
void CLIENT_STATE::check_file_xfer_pointer(FILE_XFER* p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<file_xfers->file_xfers.size(); i++) {
|
|
|
|
if (p == file_xfers->file_xfers[i]) return;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_app(APP& p) {
|
|
|
|
check_project_pointer(p.project);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_file_info(FILE_INFO& p) {
|
|
|
|
if (p.pers_file_xfer) check_pers_file_xfer_pointer(p.pers_file_xfer);
|
|
|
|
if (p.result) check_result_pointer(p.result);
|
|
|
|
check_project_pointer(p.project);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_file_ref(FILE_REF& p) {
|
|
|
|
check_file_info_pointer(p.file_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_app_version(APP_VERSION& p) {
|
|
|
|
unsigned int i;
|
|
|
|
check_app_pointer(p.app);
|
|
|
|
check_project_pointer(p.project);
|
|
|
|
for (i=0; i<p.app_files.size(); i++) {
|
2005-03-10 00:43:22 +00:00
|
|
|
FILE_REF& fr = p.app_files[i];
|
2004-02-06 23:31:27 +00:00
|
|
|
check_file_ref(fr);
|
2003-09-23 23:19:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_workunit(WORKUNIT& p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<p.input_files.size(); i++) {
|
|
|
|
check_file_ref(p.input_files[i]);
|
|
|
|
}
|
|
|
|
check_project_pointer(p.project);
|
|
|
|
check_app_pointer(p.app);
|
|
|
|
check_app_version_pointer(p.avp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_result(RESULT& p) {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<p.output_files.size(); i++) {
|
|
|
|
check_file_ref(p.output_files[i]);
|
|
|
|
}
|
|
|
|
check_app_pointer(p.app);
|
|
|
|
check_workunit_pointer(p.wup);
|
|
|
|
check_project_pointer(p.project);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_active_task(ACTIVE_TASK& p) {
|
|
|
|
check_result_pointer(p.result);
|
|
|
|
check_workunit_pointer(p.wup);
|
|
|
|
check_app_version_pointer(p.app_version);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_pers_file_xfer(PERS_FILE_XFER& p) {
|
2004-02-06 23:31:27 +00:00
|
|
|
if (p.fxp) check_file_xfer_pointer(p.fxp);
|
2003-09-23 23:19:41 +00:00
|
|
|
check_file_info_pointer(p.fip);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_file_xfer(FILE_XFER& p) {
|
|
|
|
check_file_info_pointer(p.fip);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CLIENT_STATE::check_all() {
|
|
|
|
unsigned int i;
|
|
|
|
for (i=0; i<apps.size(); i++) {
|
|
|
|
check_app(*apps[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<file_infos.size(); i++) {
|
|
|
|
check_file_info(*file_infos[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<app_versions.size(); i++) {
|
|
|
|
check_app_version(*app_versions[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<workunits.size(); i++) {
|
|
|
|
check_workunit(*workunits[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<results.size(); i++) {
|
|
|
|
check_result(*results[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<active_tasks.active_tasks.size(); i++) {
|
|
|
|
check_active_task(*active_tasks.active_tasks[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<pers_file_xfers->pers_file_xfers.size(); i++) {
|
|
|
|
check_pers_file_xfer(*pers_file_xfers->pers_file_xfers[i]);
|
|
|
|
}
|
|
|
|
for (i=0; i<file_xfers->file_xfers.size(); i++) {
|
|
|
|
check_file_xfer(*file_xfers->file_xfers[i]);
|
|
|
|
}
|
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_d91498c9e4 = "$Id$";
|