// 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 #ifdef _WIN32 #include "boinc_win.h" #endif #ifndef _WIN32 #include #endif #include "boinc_api.h" #include "parse.h" #include "error_numbers.h" #include "util.h" #include "filesys.h" #include "miofile.h" #include "app_ipc.h" using std::string; char* xml_graphics_modes[NGRAPHICS_MSGS] = { "", "", "", "", "", "", "" }; GRAPHICS_MSG::GRAPHICS_MSG() { memset(this, 0, sizeof(GRAPHICS_MSG)); } int write_init_data_file(FILE* f, APP_INIT_DATA& ai) { string str1, str2; fprintf(f, "\n%d\n", ai.core_version); if (strlen(ai.app_name)) { fprintf(f, "%s\n", ai.app_name); } if (ai.project_preferences && strlen(ai.project_preferences)) { fprintf(f, "\n%s\n", ai.project_preferences); } if (strlen(ai.team_name)) { str1 = ai.team_name; xml_escape(str1, str2); fprintf(f, "%s\n", str2.c_str()); } if (strlen(ai.user_name)) { str1 = ai.user_name; xml_escape(str1, str2); fprintf(f, "%s\n", str2.c_str()); } 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", ai.slot, ai.wu_cpu_time, ai.user_total_credit, ai.user_expavg_credit, ai.host_total_credit, ai.host_expavg_credit, ai.checkpoint_period, ai.fraction_done_update_period, ai.fraction_done_start, ai.fraction_done_end ); MIOFILE mf; mf.init_file(f); ai.host_info.write(mf); ai.proxy_info.write(mf); ai.global_prefs.write(f); fprintf(f, "\n"); return 0; } int parse_init_data_file(FILE* f, APP_INIT_DATA& ai) { char buf[256]; int retval; bool flag; memset(&ai, 0, sizeof(ai)); ai.fraction_done_start = 0; ai.fraction_done_end = 1; while (fgets(buf, 256, f)) { if (match_tag(buf, "")) { retval = dup_element_contents(f, "", &ai.project_preferences); if (retval) return retval; continue; } if (match_tag(buf, "")) { retval = ai.global_prefs.parse(f, "", flag); if (retval) return retval; continue; } else if (match_tag(buf, "")) { MIOFILE mf; mf.init_file(f); ai.host_info.parse(mf); continue; } else if (parse_int(buf, "", ai.core_version)) continue; else if (parse_str(buf, "", ai.app_name, sizeof(ai.app_name))) continue; else if (parse_str(buf, "", ai.user_name, sizeof(ai.user_name))) continue; else if (parse_str(buf, "", ai.team_name, sizeof(ai.team_name))) continue; else if (parse_str(buf, "", ai.project_dir, sizeof(ai.project_dir))) continue; else if (parse_str(buf, "", ai.boinc_dir, sizeof(ai.boinc_dir))) continue; else if (parse_str(buf, "", ai.authenticator, sizeof(ai.authenticator))) continue; else if (parse_str(buf, "", ai.wu_name, sizeof(ai.wu_name))) continue; #ifdef _WIN32 else if (parse_str(buf, "", ai.shmem_seg_name, sizeof(ai.shmem_seg_name))) continue; #else else if (parse_int(buf, "", ai.shmem_seg_name)) continue; #endif else if (parse_int(buf, "", ai.slot)) continue; else if (parse_double(buf, "", ai.user_total_credit)) continue; else if (parse_double(buf, "", ai.user_expavg_credit)) continue; else if (parse_double(buf, "", ai.host_total_credit)) continue; else if (parse_double(buf, "", ai.host_expavg_credit)) continue; else if (parse_double(buf, "", ai.wu_cpu_time)) continue; else if (parse_double(buf, "", ai.checkpoint_period)) continue; else if (parse_double(buf, "", ai.fraction_done_update_period)) continue; else if (parse_double(buf, "", ai.fraction_done_start)) continue; else if (parse_double(buf, "", ai.fraction_done_end)) continue; //else fprintf(stderr, "parse_init_data_file: unrecognized %s", buf); } return 0; } APP_CLIENT_SHM::APP_CLIENT_SHM() { shm = 0; } bool MSG_CHANNEL::get_msg(char *msg) { if (!buf[0]) return false; safe_strncpy(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(char *msg) { if (buf[0]) return false; safe_strncpy(buf+1, msg, MSG_CHANNEL_SIZE-1); buf[0] = 1; return true; } void MSG_CHANNEL::send_msg_overwrite(char* msg) { safe_strncpy(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)); m.mode = 0; for (i=0; i%s\n", existing); fclose(fp); return 0; } // resolve XML soft link // int boinc_resolve_filename(const char *virtual_name, char *physical_name, int len) { FILE *fp; char buf[512]; safe_strncpy(physical_name, virtual_name, len); // Open the file and load the first line // fp = boinc_fopen(virtual_name, "r"); if (!fp) return ERR_FOPEN; // must initialize buf since fgets() on an empty file won't do anything // buf[0] = 0; fgets(buf, 512, fp); fclose(fp); // If it's the XML tag, return its value, // otherwise, return the original file name // parse_str(buf, "", physical_name, len); return 0; } // resolve XML soft link // int boinc_resolve_filename_s(const char *virtual_name, string& physical_name) { physical_name = virtual_name; // Open the file and load the first line FILE *fp = fopen(virtual_name, "r"); if (!fp) return ERR_FOPEN; char buf[512]; fgets(buf, 512, fp); fclose(fp); // If it's the XML tag, return its value, // otherwise, return the original file name // parse_str(buf, "", physical_name); return 0; } const char *BOINC_RCSID_3add42d20e = "$Id$";