mirror of https://github.com/BOINC/boinc.git
212 lines
7.2 KiB
C
Executable File
212 lines
7.2 KiB
C
Executable File
#include <string.h>
|
|
|
|
#include "parse.h"
|
|
#include "util.h"
|
|
|
|
#include "app_ipc.h"
|
|
|
|
char* xml_graphics_modes[5] = {
|
|
"<mode_unsupported/>",
|
|
"<mode_hide_graphics/>",
|
|
"<mode_window/>",
|
|
"<mode_fullscreen/>",
|
|
"<mode_blankscreen/>"
|
|
};
|
|
|
|
int write_init_data_file(FILE* f, APP_INIT_DATA& ai) {
|
|
if (strlen(ai.app_preferences)) {
|
|
fprintf(f, "<app_preferences>\n%s</app_preferences>\n", ai.app_preferences);
|
|
}
|
|
if (strlen(ai.team_name)) {
|
|
fprintf(f, "<team_name>%s</team_name>\n", ai.team_name);
|
|
}
|
|
if (strlen(ai.user_name)) {
|
|
fprintf(f, "<user_name>%s</user_name>\n", ai.user_name);
|
|
}
|
|
if (strlen(ai.comm_obj_name)) {
|
|
fprintf(f, "<comm_obj_name>%s</comm_obj_name>\n", ai.comm_obj_name);
|
|
}
|
|
fprintf(f,
|
|
"<wu_cpu_time>%f</wu_cpu_time>\n"
|
|
"<user_total_credit>%f</user_total_credit>\n"
|
|
"<user_expavg_credit>%f</user_expavg_credit>\n"
|
|
"<host_total_credit>%f</host_total_credit>\n"
|
|
"<host_expavg_credit>%f</host_expavg_credit>\n"
|
|
"<shm_key>%d</shm_key>\n"
|
|
"<checkpoint_period>%f</checkpoint_period>\n"
|
|
"<fraction_done_update_period>%f</fraction_done_update_period>\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, "<app_preferences>")) {
|
|
safe_strncpy(ai.app_preferences, "", sizeof(ai.app_preferences));
|
|
while (fgets(buf, 256, f)) {
|
|
if (match_tag(buf, "</app_preferences>")) break;
|
|
strcat(ai.app_preferences, buf);
|
|
}
|
|
continue;
|
|
}
|
|
else if (parse_str(buf, "<user_name>", ai.user_name, sizeof(ai.user_name))) continue;
|
|
else if (parse_str(buf, "<team_name>", ai.team_name, sizeof(ai.team_name))) continue;
|
|
else if (parse_str(buf, "<comm_obj_name>", ai.comm_obj_name, sizeof(ai.comm_obj_name))) continue;
|
|
else if (parse_double(buf, "<user_total_credit>", ai.user_total_credit)) continue;
|
|
else if (parse_double(buf, "<user_expavg_credit>", ai.user_expavg_credit)) continue;
|
|
else if (parse_double(buf, "<host_total_credit>", ai.host_total_credit)) continue;
|
|
else if (parse_double(buf, "<host_expavg_credit>", ai.host_expavg_credit)) continue;
|
|
else if (parse_double(buf, "<wu_cpu_time>", ai.wu_cpu_time)) continue;
|
|
else if (parse_int(buf, "<shm_key>", ai.shm_key)) continue;
|
|
else if (parse_double(buf, "<checkpoint_period>", ai.checkpoint_period)) continue;
|
|
else if (parse_double(buf, "<fraction_done_update_period>", 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, "<fdesc_dup_infile>%s</fdesc_dup_infile>\n", file_name);
|
|
fprintf(f, "<fdesc_dup_innum>%d</fdesc_dup_innum>\n", fdesc);
|
|
} else {
|
|
fprintf(f, "<fdesc_dup_outfile>%s</fdesc_dup_outfile>\n", file_name);
|
|
fprintf(f, "<fdesc_dup_outnum>%d</fdesc_dup_outnum>\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, "<fdesc_dup_infile>", filename, sizeof(filename))) {
|
|
if (fgets(buf, 256, f)) {
|
|
if (parse_int(buf, "<fdesc_dup_innum>", filedesc)) {
|
|
freopen(filename, "r", stdin);
|
|
fprintf(stderr, "opened input file %s\n", filename);
|
|
}
|
|
}
|
|
} else if (parse_str(buf, "<fdesc_dup_outfile>", filename, sizeof(filename))) {
|
|
if (fgets(buf, 256, f)) {
|
|
if (parse_int(buf, "<fdesc_dup_outnum>", 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,
|
|
"<graphics_info>\n"
|
|
" <graphics_xsize>%d</graphics_xsize>\n"
|
|
" <graphics_ysize>%d</graphics_ysize>\n"
|
|
" <graphics_refresh_period>%f</graphics_refresh_period>\n"
|
|
"</graphics_info>\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, "<graphics_info>")) continue;
|
|
if (match_tag(buf, "</graphics_info>")) return 0;
|
|
else if (parse_int(buf, "<graphics_xsize>", gi->xsize)) continue;
|
|
else if (parse_int(buf, "<graphics_ysize>", gi->ysize)) continue;
|
|
else if (parse_double(buf, "<graphics_refresh_period>", gi->refresh_period)) continue;
|
|
else fprintf(stderr, "parse_graphics_file: unrecognized %s", buf);
|
|
}
|
|
return -1;
|
|
}
|
|
|