// 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 #if defined(_WIN32) && !defined(__STDWX_H__) && !defined(_BOINC_WIN_) && !defined(_AFX_STDAFX_H_) #include "boinc_win.h" #endif #ifndef _WIN32 #include "config.h" #include #include #endif #include "parse.h" #include "error_numbers.h" #include "str_util.h" #include "filesys.h" #include "miofile.h" #include "app_ipc.h" using std::string; const char* xml_graphics_modes[NGRAPHICS_MSGS] = { "", "", "", "", "", "", "" }; GRAPHICS_MSG::GRAPHICS_MSG() { memset(this, 0, sizeof(GRAPHICS_MSG)); } APP_INIT_DATA::APP_INIT_DATA() { project_preferences = 0; } APP_INIT_DATA::~APP_INIT_DATA() { if (project_preferences) { free(project_preferences); project_preferences=0; // paranoia } } APP_INIT_DATA::APP_INIT_DATA(const APP_INIT_DATA& a) { copy(a); } void APP_INIT_DATA::operator=(const APP_INIT_DATA& a) { copy(a); } void APP_INIT_DATA::copy(const APP_INIT_DATA& a) { memcpy(this, &a, sizeof(APP_INIT_DATA)); if (a.project_preferences) { project_preferences = strdup(a.project_preferences); } } int write_init_data_file(FILE* f, APP_INIT_DATA& ai) { char buf[2048]; fprintf(f, "\n" "%d\n" "%d\n" "%d\n" "%d\n", ai.major_version, ai.minor_version, ai.release, ai.app_version ); if (strlen(ai.app_name)) { fprintf(f, "%s\n", ai.app_name); } if (strlen(ai.symstore)) { fprintf(f, "%s\n", ai.symstore); } if (strlen(ai.acct_mgr_url)) { fprintf(f, "%s\n", ai.acct_mgr_url); } if (ai.project_preferences && strlen(ai.project_preferences)) { fprintf(f, "\n%s\n", ai.project_preferences); } if (strlen(ai.team_name)) { xml_escape(ai.team_name, buf); fprintf(f, "%s\n", buf); } if (strlen(ai.user_name)) { xml_escape(ai.user_name, buf); fprintf(f, "%s\n", buf); } if (strlen(ai.project_dir)) { fprintf(f, "%s\n", ai.project_dir); } if (strlen(ai.boinc_dir)) { fprintf(f, "%s\n", ai.boinc_dir); } if (strlen(ai.authenticator)) { fprintf(f, "%s\n", ai.authenticator); } if (strlen(ai.wu_name)) { fprintf(f, "%s\n", ai.wu_name); } #ifdef _WIN32 if (strlen(ai.shmem_seg_name)) { fprintf(f, "%s\n", ai.shmem_seg_name); } #else fprintf(f, "%d\n", ai.shmem_seg_name); #endif fprintf(f, "%d\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%f\n", ai.slot, ai.wu_cpu_time, ai.user_total_credit, ai.user_expavg_credit, ai.host_total_credit, ai.host_expavg_credit, ai.resource_share_fraction, ai.checkpoint_period, ai.fraction_done_update_period, ai.fraction_done_start, ai.fraction_done_end, ai.rsc_fpops_est, ai.rsc_fpops_bound, ai.rsc_memory_bound, ai.rsc_disk_bound ); MIOFILE mf; mf.init_file(f); ai.host_info.write(mf); ai.proxy_info.write(mf); ai.global_prefs.write(mf); fprintf(f, "\n"); return 0; } int parse_init_data_file(FILE* f, APP_INIT_DATA& ai) { char tag[1024]; int retval; bool flag, is_tag; MIOFILE mf; mf.init_file(f); XML_PARSER xp(&mf); if (!xp.parse_start("app_init_data")) { return ERR_XML_PARSE; } memset(&ai, 0, sizeof(ai)); ai.fraction_done_start = 0; ai.fraction_done_end = 1; while (!xp.get(tag, sizeof(tag), is_tag)) { if (!is_tag) { printf("unexpected text in init_data.xml: %s\n", tag); continue; } if (!strcmp(tag, "project_preferences")) { retval = dup_element_contents(f, "", &ai.project_preferences); if (retval) return retval; continue; } if (!strcmp(tag, "global_preferences")) { GLOBAL_PREFS_MASK mask; retval = ai.global_prefs.parse(xp, "", flag, mask); if (retval) return retval; continue; } else if (!strcmp(tag, "host_info")) { ai.host_info.parse(mf); continue; } else if (!strcmp(tag, "proxy_info")) { ai.proxy_info.parse(mf); } else if (xp.parse_int(tag, "major_version", ai.major_version)) continue; else if (xp.parse_int(tag, "minor_version", ai.minor_version)) continue; else if (xp.parse_int(tag, "release", ai.release)) continue; else if (xp.parse_int(tag, "app_version", ai.app_version)) continue; else if (xp.parse_str(tag, "app_name", ai.app_name, sizeof(ai.app_name))) continue; else if (xp.parse_str(tag, "symstore", ai.symstore, sizeof(ai.symstore))) continue; else if (xp.parse_str(tag, "acct_mgr_url", ai.acct_mgr_url, sizeof(ai.acct_mgr_url))) continue; else if (xp.parse_str(tag, "user_name", ai.user_name, sizeof(ai.user_name))) continue; else if (xp.parse_str(tag, "team_name", ai.team_name, sizeof(ai.team_name))) continue; else if (xp.parse_str(tag, "project_dir", ai.project_dir, sizeof(ai.project_dir))) continue; else if (xp.parse_str(tag, "boinc_dir", ai.boinc_dir, sizeof(ai.boinc_dir))) continue; else if (xp.parse_str(tag, "authenticator", ai.authenticator, sizeof(ai.authenticator))) continue; else if (xp.parse_str(tag, "wu_name", ai.wu_name, sizeof(ai.wu_name))) continue; #ifdef _WIN32 else if (xp.parse_str(tag, "comm_obj_name", ai.shmem_seg_name, sizeof(ai.shmem_seg_name))) continue; #else else if (xp.parse_int(tag, "shm_key", ai.shmem_seg_name)) continue; #endif else if (xp.parse_int(tag, "slot", ai.slot)) continue; else if (xp.parse_double(tag, "user_total_credit", ai.user_total_credit)) continue; else if (xp.parse_double(tag, "user_expavg_credit", ai.user_expavg_credit)) continue; else if (xp.parse_double(tag, "host_total_credit", ai.host_total_credit)) continue; else if (xp.parse_double(tag, "host_expavg_credit", ai.host_expavg_credit)) continue; else if (xp.parse_double(tag, "resource_share_fraction", ai.resource_share_fraction)) continue; else if (xp.parse_double(tag, "rsc_fpops_est", ai.rsc_fpops_est)) continue; else if (xp.parse_double(tag, "rsc_fpops_bound", ai.rsc_fpops_bound)) continue; else if (xp.parse_double(tag, "rsc_memory_bound", ai.rsc_memory_bound)) continue; else if (xp.parse_double(tag, "rsc_disk_bound", ai.rsc_disk_bound)) continue; else if (xp.parse_double(tag, "wu_cpu_time", ai.wu_cpu_time)) continue; else if (xp.parse_double(tag, "checkpoint_period", ai.checkpoint_period)) continue; else if (xp.parse_double(tag, "fraction_done_update_period", ai.fraction_done_update_period)) continue; else if (xp.parse_double(tag, "fraction_done_start", ai.fraction_done_start)) continue; else if (xp.parse_double(tag, "fraction_done_end", ai.fraction_done_end)) continue; //else fprintf(stderr, "parse_init_data_file: unrecognized %s", tag); } return 0; } APP_CLIENT_SHM::APP_CLIENT_SHM() { shm = 0; } bool MSG_CHANNEL::get_msg(char *msg) { if (!buf[0]) return false; strlcpy(msg, buf+1, MSG_CHANNEL_SIZE-1); buf[0] = 0; return true; } bool MSG_CHANNEL::has_msg() { if (buf[0]) return true; return false; } bool MSG_CHANNEL::send_msg(const char *msg) { if (buf[0]) return false; strlcpy(buf+1, msg, MSG_CHANNEL_SIZE-1); buf[0] = 1; return true; } void MSG_CHANNEL::send_msg_overwrite(const char* msg) { strlcpy(buf+1, msg, MSG_CHANNEL_SIZE-1); buf[0] = 1; } int APP_CLIENT_SHM::decode_graphics_msg(char* msg, GRAPHICS_MSG& m) { int i; parse_str(msg, "", m.window_station, sizeof(m.window_station)); parse_str(msg, "", m.desktop, sizeof(m.desktop)); parse_str(msg, "", m.display, sizeof(m.display)); m.mode = 0; for (i=0; i XML tag, return its value, // otherwise, return the original file name // parse_str(buf, "", physical_name, len); return 0; } // same, std::string version // int boinc_resolve_filename_s(const char *virtual_name, string& physical_name) { char buf[512]; if (!virtual_name) return ERR_NULL; physical_name = virtual_name; FILE *fp = boinc_fopen(virtual_name, "r"); if (!fp) return ERR_FOPEN; buf[0] = 0; fgets(buf, 512, fp); fclose(fp); parse_str(buf, "", physical_name); return 0; } void url_to_project_dir(char* url, char* dir) { char buf[256]; escape_project_url(url, buf); sprintf(dir, "%s/%s", PROJECT_DIR, buf); } const char *BOINC_RCSID_3add42d20e = "$Id$";