#include #include "parse.h" #include "util.h" #include "app_ipc.h" char* xml_graphics_modes[5] = { "", "", "", "", "" }; int write_init_data_file(FILE* f, APP_INIT_DATA& ai) { if (strlen(ai.app_preferences)) { fprintf(f, "\n%s\n", ai.app_preferences); } if (strlen(ai.team_name)) { fprintf(f, "%s\n", ai.team_name); } if (strlen(ai.user_name)) { fprintf(f, "%s\n", ai.user_name); } if (strlen(ai.comm_obj_name)) { fprintf(f, "%s\n", ai.comm_obj_name); } fprintf(f, "%f\n" "%f\n" "%f\n" "%f\n" "%f\n" "%d\n" "%f\n" "%f\n", ai.wu_cpu_time, ai.user_total_credit, ai.user_expavg_credit, ai.host_total_credit, ai.host_expavg_credit, ai.shm_key, ai.checkpoint_period, ai.fraction_done_update_period ); return 0; } int parse_init_data_file(FILE* f, APP_INIT_DATA& ai) { char buf[256]; memset(&ai, 0, sizeof(ai)); while (fgets(buf, 256, f)) { if (match_tag(buf, "")) { safe_strncpy(ai.app_preferences, "", sizeof(ai.app_preferences)); while (fgets(buf, 256, f)) { if (match_tag(buf, "")) break; strcat(ai.app_preferences, buf); } 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.comm_obj_name, sizeof(ai.comm_obj_name))) 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_int(buf, "", ai.shm_key)) continue; else if (parse_double(buf, "", ai.checkpoint_period)) continue; else if (parse_double(buf, "", ai.fraction_done_update_period)) continue; else fprintf(stderr, "parse_init_data_file: unrecognized %s", buf); } return 0; } // TODO: this should handle arbitrarily many fd/filename pairs. // Also, give the tags better names int write_fd_init_file(FILE* f, char *file_name, int fdesc, int input_file ) { if (input_file) { fprintf(f, "%s\n", file_name); fprintf(f, "%d\n", fdesc); } else { fprintf(f, "%s\n", file_name); fprintf(f, "%d\n", fdesc); } return 0; } // TODO: this should handle arbitrarily many fd/filename pairs. // Also, this shouldn't be doing the actual duping! // int parse_fd_init_file(FILE* f) { char buf[256],filename[256]; int filedesc; while (fgets(buf, 256, f)) { if (parse_str(buf, "", filename, sizeof(filename))) { if (fgets(buf, 256, f)) { if (parse_int(buf, "", filedesc)) { freopen(filename, "r", stdin); fprintf(stderr, "opened input file %s\n", filename); } } } else if (parse_str(buf, "", filename, sizeof(filename))) { if (fgets(buf, 256, f)) { if (parse_int(buf, "", filedesc)) { freopen(filename, "w", stdout); fprintf(stderr, "opened output file %s\n", filename); } } } else fprintf(stderr, "parse_fd_init_file: unrecognized %s", buf); } return 0; } bool APP_CLIENT_SHM::pending_msg(int seg_num) { if (seg_num < 0 || seg_num >= NUM_SEGS || shm == NULL) return false; return (shm[seg_num*SHM_SEG_SIZE]?true:false); } bool APP_CLIENT_SHM::get_msg(char *msg, int seg_num) { if (seg_num < 0 || seg_num >= NUM_SEGS || shm == NULL) return false; // Check if there's an available message // if (!shm[seg_num*SHM_SEG_SIZE]) return false; // Copy the message from shared memory // strncpy(msg, &shm[(seg_num*SHM_SEG_SIZE)+1], SHM_SEG_SIZE-1); // Reset the message status flag // shm[seg_num*SHM_SEG_SIZE] = 0; return true; } bool APP_CLIENT_SHM::send_msg(char *msg,int seg_num) { if (seg_num < 0 || seg_num >= NUM_SEGS || shm == NULL) return false; // Check if there's already a message // //if (shm[seg_num*SHM_SEG_SIZE]) return false; // Copy the message into shared memory // strncpy(&shm[(seg_num*SHM_SEG_SIZE)+1], msg, SHM_SEG_SIZE-1); // Set the message status flag // shm[seg_num*SHM_SEG_SIZE] = 1; return true; } void APP_CLIENT_SHM::reset_msgs(void) { if (shm == NULL) return; memset(shm, 0, sizeof(char)*NUM_SEGS*SHM_SEG_SIZE); } void APP_CLIENT_SHM::reset_msg(int seg_num) { if (seg_num < 0 || seg_num >= NUM_SEGS || shm == NULL) return; memset(&shm[seg_num*SHM_SEG_SIZE], 0, sizeof(char)*SHM_SEG_SIZE); } bool APP_CLIENT_SHM::send_graphics_mode_msg(int seg, int mode) { return send_msg(xml_graphics_modes[mode], seg); } bool APP_CLIENT_SHM::get_graphics_mode_msg(int seg, int& mode) { char buf[SHM_SEG_SIZE]; int i; if (!get_msg(buf, seg)) return false; for (i=0; i<5; i++) { if (match_tag(buf, xml_graphics_modes[i])) { mode = i; return true; } } return false; } int write_graphics_file(FILE* f, GRAPHICS_INFO* gi) { fprintf(f, "\n" " %d\n" " %d\n" " %f\n" "\n", gi->xsize, gi->ysize, gi->refresh_period ); return 0; } int parse_graphics_file(FILE* f, GRAPHICS_INFO* gi) { char buf[256]; while (fgets(buf, 256, f)) { if (match_tag(buf, "")) continue; if (match_tag(buf, "")) return 0; else if (parse_int(buf, "", gi->xsize)) continue; else if (parse_int(buf, "", gi->ysize)) continue; else if (parse_double(buf, "", gi->refresh_period)) continue; else fprintf(stderr, "parse_graphics_file: unrecognized %s", buf); } return -1; }