// 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):
//
#include "parse.h"
#include "error_numbers.h"
#include "filesys.h"
#include "file_names.h"
#include "client_state.h"
void CLIENT_STATE::set_client_state_dirty(char* source) {
log_messages.printf(ClientMessages::DEBUG_STATE, "set dirty: %s\n", source);
client_state_dirty = true;
}
// Parse the client_state.xml file
//
int CLIENT_STATE::parse_state_file() {
char buf[256];
FILE* f = fopen(STATE_FILE_NAME, "r");
PROJECT temp_project, *project=NULL;
int retval=0;
int failnum;
ScopeMessages scope_messages(log_messages, ClientMessages::DEBUG_STATE);
if (!f) {
scope_messages.printf("CLIENT_STATE::parse_state_file(): No state file; will create one\n");
// avoid warning messages about version
//
old_major_version = MAJOR_VERSION;
old_minor_version = MINOR_VERSION;
return ERR_FOPEN;
}
fgets(buf, 256, f);
if (!match_tag(buf, "")) {
retval = ERR_XML_PARSE;
goto done;
}
while (fgets(buf, 256, f)) {
if (match_tag(buf, "")) {
retval = 0;
break;
} else if (match_tag(buf, "")) {
temp_project.parse_state(f);
project = lookup_project(temp_project.master_url);
if (project) {
project->copy_state_fields(temp_project);
} else {
msg_printf(NULL, MSG_ERROR, "Project %s found in state file but not prefs.\n",
temp_project.master_url);
}
} else if (match_tag(buf, "")) {
APP* app = new APP;
app->parse(f);
if (project) {
retval = link_app(project, app);
if (!retval) apps.push_back(app);
} else {
delete app;
}
} else if (match_tag(buf, "")) {
FILE_INFO* fip = new FILE_INFO;
fip->parse(f, false);
if (project) {
retval = link_file_info(project, fip);
if (!retval) file_infos.push_back(fip);
// If the file had a failure before, there's no reason
// to start another file transfer
if (fip->had_failure(failnum)) {
if (fip->pers_file_xfer) delete fip->pers_file_xfer;
fip->pers_file_xfer = NULL;
}
// Init PERS_FILE_XFER and push it onto pers_file_xfer stack
if (fip->pers_file_xfer) {
fip->pers_file_xfer->init(fip, fip->upload_when_present);
retval = pers_file_xfers->insert( fip->pers_file_xfer );
}
} else {
delete fip;
}
} else if (match_tag(buf, "")) {
APP_VERSION* avp = new APP_VERSION;
avp->parse(f);
if (project) {
retval = link_app_version(project, avp);
if (!retval) app_versions.push_back(avp);
} else {
delete avp;
}
} else if (match_tag(buf, "")) {
WORKUNIT* wup = new WORKUNIT;
wup->parse(f);
if (project) {
retval = link_workunit(project, wup);
if (!retval) workunits.push_back(wup);
} else {
delete wup;
}
} else if (match_tag(buf, "")) {
RESULT* rp = new RESULT;
rp->parse_state(f);
if (project) {
retval = link_result(project, rp);
if (!retval) results.push_back(rp);
} else {
msg_printf(NULL, MSG_ERROR,
" found before any project\n"
);
delete rp;
}
} else if (match_tag(buf, "")) {
retval = host_info.parse(f);
if (retval) goto done;
} else if (match_tag(buf, "")) {
retval = time_stats.parse(f);
if (retval) goto done;
} else if (match_tag(buf, "")) {
retval = net_stats.parse(f);
if (retval) goto done;
} else if (match_tag(buf, "")) {
retval = active_tasks.parse(f, this);
if (retval) goto done;
} else if (match_tag(buf, "")) {
// should match our current platform name
} else if (match_tag(buf, "")) {
// could put logic here to detect incompatible state files
// after core client update
} else if (parse_int(buf, "", old_major_version)) {
} else if (parse_int(buf, "", old_minor_version)) {
} else if (match_tag(buf, "")) {
use_http_proxy = true;
} else if (match_tag(buf, "")) {
use_socks_proxy = true;
} else if (parse_str(buf, "", proxy_server_name, sizeof(proxy_server_name))) {
} else if (parse_int(buf, "", proxy_server_port)) {
} else if (parse_str(buf, "", socks_user_name, sizeof(socks_user_name))) {
} else if (parse_str(buf, "", socks_user_passwd, sizeof(socks_user_passwd))) {
// } else if (parse_int(buf, "")) {
} else if (parse_str(buf, "", host_venue, sizeof(host_venue))) {
} else {
msg_printf(NULL, MSG_ERROR, "CLIENT_STATE::parse_state_file: unrecognized: %s\n", buf);
}
}
done:
fclose(f);
return retval;
}
// read just the venue from the state file.
//
int CLIENT_STATE::parse_venue() {
char buf[256];
FILE* f = fopen(STATE_FILE_NAME, "r");
if (!f) return 0;
while (fgets(buf, 256, f)) {
if (match_tag(buf, "")) {
break;
}
if (parse_str(buf, "", host_venue, sizeof(host_venue))) {
break;
}
}
fclose(f);
return 0;
}
// Write the client_state.xml file
//
int CLIENT_STATE::write_state_file() {
unsigned int i, j;
FILE* f = fopen(STATE_FILE_TEMP, "w");
int retval;
ScopeMessages scope_messages(log_messages, ClientMessages::DEBUG_STATE);
scope_messages.printf("CLIENT_STATE::write_state_file(): Writing state file\n");
if (!f) {
msg_printf(0, MSG_ERROR, "Can't open temp state file: %s\n", STATE_FILE_TEMP);
return ERR_FOPEN;
}
fprintf(f, "\n");
retval = host_info.write(f);
if (retval) return retval;
retval = time_stats.write(f, false);
if (retval) return retval;
retval = net_stats.write(f, false);
if (retval) return retval;
for (j=0; jwrite_state(f);
if (retval) return retval;
for (i=0; iproject == p) {
retval = apps[i]->write(f);
if (retval) return retval;
}
}
for (i=0; iproject == p) {
retval = file_infos[i]->write(f, false);
if (retval) return retval;
}
}
for (i=0; iproject == p) app_versions[i]->write(f);
}
for (i=0; iproject == p) workunits[i]->write(f);
}
for (i=0; iproject == p) results[i]->write(f, false);
}
}
active_tasks.write(f);
fprintf(f,
"%s\n"
"%d\n"
"%d\n",
platform_name,
core_client_major_version,
core_client_minor_version
);
// save proxy info
//
fprintf(f,
"%s"
"%s"
"%s\n"
"%d\n"
"%s\n"
"%s\n",
use_http_proxy?"\n":"",
use_socks_proxy?"\n":"",
proxy_server_name,
proxy_server_port,
socks_user_name,
socks_user_passwd
);
#if 0
fprintf(f, "%d\n", user_run_request);
#endif
if (strlen(host_venue)) {
fprintf(f, "%s\n", host_venue);
}
fprintf(f, "\n");
fclose(f);
retval = boinc_rename(STATE_FILE_TEMP, STATE_FILE_NAME);
scope_messages.printf("CLIENT_STATE::write_state_file(): Done writing state file\n");
if (retval) return ERR_RENAME;
return 0;
}
// Write the client_state.xml file if necessary
// TODO: write no more often than X seconds
//
int CLIENT_STATE::write_state_file_if_needed() {
int retval;
if (client_state_dirty) {
client_state_dirty = false;
retval = write_state_file();
if (retval) return retval;
}
return 0;
}