2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2003-07-08 21:30:47 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 3 of the License, or (at your option) any later version.
|
2003-07-08 21:30:47 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2002-12-03 18:57:40 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-03 18:57:40 +00:00
|
|
|
|
|
|
|
// Parse a server configuration file
|
|
|
|
|
2008-09-09 19:10:42 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "boinc_fcgi.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstring>
|
2003-10-03 06:46:22 +00:00
|
|
|
#include <string>
|
2004-08-03 21:51:30 +00:00
|
|
|
#include <unistd.h>
|
2002-10-03 18:33:46 +00:00
|
|
|
|
|
|
|
#include "parse.h"
|
|
|
|
#include "error_numbers.h"
|
2009-05-07 13:54:51 +00:00
|
|
|
#include "filesys.h"
|
|
|
|
#include "str_util.h"
|
2009-06-16 20:54:44 +00:00
|
|
|
#include "str_replace.h"
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2006-06-07 04:10:04 +00:00
|
|
|
#include "sched_msgs.h"
|
2007-04-18 20:49:58 +00:00
|
|
|
#include "sched_util.h"
|
2003-08-15 00:45:25 +00:00
|
|
|
#include "sched_config.h"
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2003-09-02 21:16:55 +00:00
|
|
|
const char* CONFIG_FILE = "config.xml";
|
2003-07-08 21:30:47 +00:00
|
|
|
|
2008-02-25 18:05:04 +00:00
|
|
|
SCHED_CONFIG config;
|
|
|
|
|
2009-09-21 16:15:28 +00:00
|
|
|
const int MAX_NCPUS = 16;
|
2009-06-01 22:15:14 +00:00
|
|
|
// max multiplier for daily_result_quota.
|
2008-02-21 20:10:10 +00:00
|
|
|
// need to change as multicore processors expand
|
|
|
|
|
2006-05-25 05:22:10 +00:00
|
|
|
int SCHED_CONFIG::parse(FILE* f) {
|
2008-02-25 18:05:04 +00:00
|
|
|
char tag[1024], buf[256];
|
2006-08-21 22:25:21 +00:00
|
|
|
bool is_tag;
|
2006-08-22 21:52:44 +00:00
|
|
|
MIOFILE mf;
|
|
|
|
XML_PARSER xp(&mf);
|
2008-02-25 18:05:04 +00:00
|
|
|
int retval;
|
|
|
|
regex_t re;
|
2006-05-25 05:22:10 +00:00
|
|
|
|
2006-08-22 21:52:44 +00:00
|
|
|
mf.init_file(f);
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
|
|
|
|
memset(this, 0, sizeof(*this));
|
|
|
|
ban_os = new vector<regex_t>;
|
|
|
|
ban_cpu = new vector<regex_t>;
|
2009-03-03 00:25:41 +00:00
|
|
|
locality_scheduling_workunit_file = new vector<regex_t>;
|
|
|
|
locality_scheduling_sticky_file = new vector<regex_t>;
|
2006-05-25 05:22:10 +00:00
|
|
|
max_wus_to_send = 10;
|
|
|
|
default_disk_max_used_gb = 100.;
|
|
|
|
default_disk_max_used_pct = 50.;
|
|
|
|
default_disk_min_free_gb = .001;
|
2008-02-21 21:00:58 +00:00
|
|
|
sched_debug_level = MSG_NORMAL;
|
|
|
|
fuh_debug_level = MSG_NORMAL;
|
2007-06-27 20:09:18 +00:00
|
|
|
strcpy(httpd_user, "apache");
|
2008-02-21 20:10:10 +00:00
|
|
|
max_ncpus = MAX_NCPUS;
|
2006-08-21 22:25:21 +00:00
|
|
|
|
|
|
|
if (!xp.parse_start("boinc")) return ERR_XML_PARSE;
|
|
|
|
if (!xp.parse_start("config")) return ERR_XML_PARSE;
|
2006-08-23 03:34:30 +00:00
|
|
|
while (!xp.get(tag, sizeof(tag), is_tag)) {
|
2006-08-21 22:25:21 +00:00
|
|
|
if (!is_tag) {
|
|
|
|
fprintf(stderr, "SCHED_CONFIG::parse(): unexpected text %s\n", tag);
|
|
|
|
continue;
|
|
|
|
}
|
2006-05-25 05:22:10 +00:00
|
|
|
if (!strcmp(tag, "/config")) {
|
|
|
|
char hostname[256];
|
|
|
|
gethostname(hostname, 256);
|
|
|
|
if (!strcmp(hostname, db_host)) strcpy(db_host, "localhost");
|
|
|
|
return 0;
|
|
|
|
}
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_str(tag, "master_url", master_url, sizeof(master_url))) continue;
|
|
|
|
if (xp.parse_str(tag, "long_name", long_name, sizeof(long_name))) continue;
|
|
|
|
if (xp.parse_str(tag, "db_name", db_name, sizeof(db_name))) continue;
|
|
|
|
if (xp.parse_str(tag, "db_user", db_user, sizeof(db_user))) continue;
|
|
|
|
if (xp.parse_str(tag, "db_passwd", db_passwd, sizeof(db_passwd))) continue;
|
|
|
|
if (xp.parse_str(tag, "db_host", db_host, sizeof(db_host))) continue;
|
2009-05-07 13:54:51 +00:00
|
|
|
if (xp.parse_str(tag, "project_dir", project_dir, sizeof(project_dir))) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_int(tag, "shmem_key", shmem_key)) continue;
|
|
|
|
if (xp.parse_str(tag, "key_dir", key_dir, sizeof(key_dir))) continue;
|
|
|
|
if (xp.parse_str(tag, "download_url", download_url, sizeof(download_url))) continue;
|
|
|
|
if (xp.parse_str(tag, "download_dir", download_dir, sizeof(download_dir))) continue;
|
|
|
|
if (xp.parse_str(tag, "upload_url", upload_url, sizeof(upload_url))) continue;
|
|
|
|
if (xp.parse_str(tag, "upload_dir", upload_dir, sizeof(upload_dir))) continue;
|
|
|
|
if (xp.parse_str(tag, "sched_lockfile_dir", sched_lockfile_dir, sizeof(sched_lockfile_dir))) continue;
|
|
|
|
if (xp.parse_bool(tag, "one_result_per_user_per_wu", one_result_per_user_per_wu)) continue;
|
|
|
|
if (xp.parse_bool(tag, "one_result_per_host_per_wu", one_result_per_host_per_wu)) continue;
|
|
|
|
if (xp.parse_bool(tag, "non_cpu_intensive", non_cpu_intensive)) continue;
|
|
|
|
if (xp.parse_bool(tag, "verify_files_on_app_start", verify_files_on_app_start)) continue;
|
|
|
|
if (xp.parse_int(tag, "homogeneous_redundancy", homogeneous_redundancy)) continue;
|
|
|
|
if (xp.parse_bool(tag, "locality_scheduling", locality_scheduling)) continue;
|
|
|
|
if (xp.parse_bool(tag, "locality_scheduling_sorted_order", locality_scheduling_sorted_order)) continue;
|
|
|
|
if (xp.parse_bool(tag, "msg_to_host", msg_to_host)) continue;
|
|
|
|
if (xp.parse_bool(tag, "ignore_upload_certificates", ignore_upload_certificates)) continue;
|
|
|
|
if (xp.parse_bool(tag, "dont_generate_upload_certificates", dont_generate_upload_certificates)) continue;
|
|
|
|
if (xp.parse_bool(tag, "ignore_delay_bound", ignore_delay_bound)) continue;
|
|
|
|
if (xp.parse_int(tag, "min_sendwork_interval", min_sendwork_interval)) continue;
|
|
|
|
if (xp.parse_int(tag, "max_wus_to_send", max_wus_to_send)) continue;
|
|
|
|
if (xp.parse_int(tag, "max_wus_in_progress", max_wus_in_progress)) continue;
|
2009-06-01 22:15:14 +00:00
|
|
|
if (xp.parse_int(tag, "max_wus_in_progress_gpu", max_wus_in_progress_gpu)) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_int(tag, "daily_result_quota", daily_result_quota)) continue;
|
2009-06-01 22:15:14 +00:00
|
|
|
if (xp.parse_int(tag, "gpu_multiplier", gpu_multiplier)) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_int(tag, "uldl_dir_fanout", uldl_dir_fanout)) continue;
|
|
|
|
if (xp.parse_int(tag, "locality_scheduling_wait_period", locality_scheduling_wait_period)) continue;
|
|
|
|
if (xp.parse_int(tag, "locality_scheduling_send_timeout", locality_scheduling_send_timeout)) continue;
|
2009-03-03 00:25:41 +00:00
|
|
|
if (xp.parse_str(tag, "locality_scheduling_workunit_file", buf, sizeof(buf))) {
|
|
|
|
retval = regcomp(&re, buf, REG_EXTENDED|REG_NOSUB);
|
|
|
|
if (retval) {
|
|
|
|
log_messages.printf(MSG_CRITICAL, "BAD REGEXP: %s\n", buf);
|
|
|
|
} else {
|
|
|
|
locality_scheduling_workunit_file->push_back(re);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (xp.parse_str(tag, "locality_scheduling_sticky_file", buf, sizeof(buf))) {
|
|
|
|
retval = regcomp(&re, buf, REG_EXTENDED|REG_NOSUB);
|
|
|
|
if (retval) {
|
|
|
|
log_messages.printf(MSG_CRITICAL, "BAD REGEXP: %s\n", buf);
|
|
|
|
} else {
|
|
|
|
locality_scheduling_sticky_file->push_back(re);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2009-03-03 00:12:55 +00:00
|
|
|
if (xp.parse_double(tag, "locality_scheduler_fraction", locality_scheduler_fraction)) continue;
|
2010-01-18 04:52:58 +00:00
|
|
|
if (xp.parse_int(tag, "min_core_client_version", min_core_client_version)) {
|
|
|
|
if (min_core_client_version && min_core_client_version < 10000) {
|
|
|
|
log_messages.printf(MSG_CRITICAL,
|
|
|
|
"min_core_client_version too small; multiplying by 100\n"
|
|
|
|
);
|
|
|
|
min_core_client_version *= 100;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (xp.parse_int(tag, "min_core_client_version_announced", min_core_client_version_announced)) {
|
|
|
|
if (min_core_client_version_announced && min_core_client_version_announced < 10000) {
|
|
|
|
log_messages.printf(MSG_CRITICAL,
|
|
|
|
"min_core_client_version_announced too small; multiplying by 100\n"
|
|
|
|
);
|
|
|
|
min_core_client_version_announced *= 100;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_int(tag, "min_core_client_upgrade_deadline", min_core_client_upgrade_deadline)) continue;
|
2009-03-02 23:47:11 +00:00
|
|
|
if (xp.parse_str(tag, "replace_download_url_by_timezone", replace_download_url_by_timezone, sizeof(replace_download_url_by_timezone))) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_bool(tag, "cache_md5_info", cache_md5_info)) continue;
|
|
|
|
if (xp.parse_bool(tag, "nowork_skip", nowork_skip)) continue;
|
|
|
|
if (xp.parse_bool(tag, "resend_lost_results", resend_lost_results)) continue;
|
|
|
|
if (xp.parse_bool(tag, "send_result_abort", send_result_abort)) continue;
|
|
|
|
if (xp.parse_double(tag, "fp_benchmark_weight", fp_benchmark_weight)) {
|
2006-08-21 19:41:25 +00:00
|
|
|
if (fp_benchmark_weight < 0 || fp_benchmark_weight > 1) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"CONFIG FILE ERROR: fp_benchmark_weight outside of 0..1"
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
use_benchmark_weights = true;
|
|
|
|
}
|
2007-06-27 20:09:18 +00:00
|
|
|
continue;
|
2006-05-25 05:22:10 +00:00
|
|
|
}
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_double(tag, "default_disk_max_used_gb", default_disk_max_used_gb)) continue;
|
|
|
|
if (xp.parse_double(tag, "default_disk_max_used_pct", default_disk_max_used_pct)) continue;
|
|
|
|
if (xp.parse_double(tag, "default_disk_min_free_gb", default_disk_min_free_gb)) continue;
|
|
|
|
if (xp.parse_str(tag, "symstore", symstore, sizeof(symstore))) continue;
|
|
|
|
if (xp.parse_double(tag, "next_rpc_delay", next_rpc_delay)) continue;
|
|
|
|
if (xp.parse_int(tag, "sched_debug_level", sched_debug_level)) continue;
|
|
|
|
if (xp.parse_int(tag, "fuh_debug_level", fuh_debug_level)) continue;
|
|
|
|
if (xp.parse_int(tag, "reliable_max_avg_turnaround", reliable_max_avg_turnaround)) continue;
|
2008-03-07 21:13:01 +00:00
|
|
|
if (xp.parse_double(tag, "reliable_max_error_rate", reliable_max_error_rate)) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_int(tag, "reliable_priority_on_over", reliable_priority_on_over)) continue;
|
|
|
|
if (xp.parse_int(tag, "reliable_priority_on_over_except_error", reliable_priority_on_over_except_error)) continue;
|
|
|
|
if (xp.parse_int(tag, "reliable_on_priority", reliable_on_priority)) continue;
|
|
|
|
if (xp.parse_double(tag, "reliable_reduced_delay_bound", reliable_reduced_delay_bound)) continue;
|
|
|
|
if (xp.parse_int(tag, "grace_period_hours", grace_period_hours)) continue;
|
|
|
|
if (xp.parse_int(tag, "delete_delay_hours", delete_delay_hours)) continue;
|
2008-03-27 21:39:02 +00:00
|
|
|
if (xp.parse_bool(tag, "distinct_beta_apps", distinct_beta_apps)) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_bool(tag, "workload_sim", workload_sim)) continue;
|
|
|
|
if (xp.parse_bool(tag, "ended", ended)) continue;
|
|
|
|
if (xp.parse_int(tag, "shmem_work_items", shmem_work_items)) continue;
|
|
|
|
if (xp.parse_int(tag, "feeder_query_size", feeder_query_size)) continue;
|
2008-03-07 21:13:01 +00:00
|
|
|
if (xp.parse_int(tag, "granted_credit_ramp_up", granted_credit_ramp_up)) continue;
|
|
|
|
if (xp.parse_double(tag, "granted_credit_weight", granted_credit_weight)) continue;
|
2008-02-25 18:05:04 +00:00
|
|
|
if (xp.parse_bool(tag, "no_amd_k6", no_amd_k6)) {
|
|
|
|
if (no_amd_k6) {
|
|
|
|
regcomp(&re, ".*AMD.*\t.*Family 5 Model 8 Stepping 0.*", REG_EXTENDED|REG_NOSUB);
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
ban_cpu->push_back(re);
|
2008-02-25 18:05:04 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2007-06-27 20:09:18 +00:00
|
|
|
if (xp.parse_str(tag, "httpd_user", httpd_user, sizeof(httpd_user))) continue;
|
2007-09-17 15:58:36 +00:00
|
|
|
if (xp.parse_int(tag, "file_deletion_strategy", file_deletion_strategy)) continue;
|
2008-01-13 00:12:14 +00:00
|
|
|
if (xp.parse_bool(tag, "request_time_stats_log", request_time_stats_log)) continue;
|
2008-02-21 00:47:50 +00:00
|
|
|
if (xp.parse_bool(tag, "enable_assignment", enable_assignment)) continue;
|
2008-02-21 20:10:10 +00:00
|
|
|
if (xp.parse_int(tag, "max_ncpus", max_ncpus)) continue;
|
2008-02-25 18:05:04 +00:00
|
|
|
if (xp.parse_str(tag, "ban_os", buf, sizeof(buf))) {
|
|
|
|
retval = regcomp(&re, buf, REG_EXTENDED|REG_NOSUB);
|
|
|
|
if (retval) {
|
|
|
|
log_messages.printf(MSG_CRITICAL, "BAD REGEXP: %s\n", buf);
|
|
|
|
} else {
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
ban_os->push_back(re);
|
2008-02-25 18:05:04 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (xp.parse_str(tag, "ban_cpu", buf, sizeof(buf))) {
|
|
|
|
retval = regcomp(&re, buf, REG_EXTENDED|REG_NOSUB);
|
|
|
|
if (retval) {
|
|
|
|
log_messages.printf(MSG_CRITICAL, "BAD REGEXP: %s\n", buf);
|
|
|
|
} else {
|
- server code: at some point I made a global var "SCHED_CONFIG config",
mostly so that the parse function could assume
that everything was initially zero.
However, various back-end functions pass around SCHED_CONFIG&
as an argument (also named "config").
This creates a shadow, which is always bad.
Worse is the possibility that some projects have back-end programs
that have a SCHED_CONFIG variable that's automatic,
and therefore isn't zero initially,
and therefore isn't parsing correctly.
To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers,
and have the parse routine zero the structure.
I was tempted to remove the SCHED_CONFIG& args to back-end functions,
but this would have broken some projects' code.
I did, however, change the name from config to config_loc
to avoid shadowing.
Also fixed various other compiler warnings.
svn path=/trunk/boinc/; revision=15541
2008-07-02 17:24:53 +00:00
|
|
|
ban_cpu->push_back(re);
|
2008-02-25 18:05:04 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2008-05-23 16:13:30 +00:00
|
|
|
if (xp.parse_bool(tag, "matchmaker", matchmaker)) continue;
|
|
|
|
if (xp.parse_int(tag, "mm_min_slots", mm_min_slots)) continue;
|
|
|
|
if (xp.parse_int(tag, "mm_max_slots", mm_max_slots)) continue;
|
2008-05-06 19:53:49 +00:00
|
|
|
if (xp.parse_bool(tag, "job_size_matching", job_size_matching)) continue;
|
2008-08-06 23:30:22 +00:00
|
|
|
if (xp.parse_bool(tag, "use_credit_multiplier", use_credit_multiplier)) continue;
|
2008-09-04 08:33:21 +00:00
|
|
|
if (xp.parse_bool(tag, "multiple_clients_per_host", multiple_clients_per_host)) continue;
|
2008-10-01 19:48:52 +00:00
|
|
|
if (xp.parse_bool(tag, "no_vista_sandbox", no_vista_sandbox)) continue;
|
2008-12-12 17:03:54 +00:00
|
|
|
if (xp.parse_bool(tag, "ignore_dcf", ignore_dcf)) continue;
|
2009-05-14 19:01:40 +00:00
|
|
|
if (xp.parse_int(tag, "report_max", report_max)) continue;
|
2009-06-30 18:00:58 +00:00
|
|
|
if (xp.parse_bool(tag, "dont_store_success_stderr", dont_store_success_stderr)) continue;
|
2008-05-23 16:13:30 +00:00
|
|
|
|
2008-03-18 21:22:44 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_version_select", debug_version_select)) continue;
|
|
|
|
if (xp.parse_bool(tag, "debug_assignment", debug_assignment)) continue;
|
2008-04-23 23:34:26 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_prefs", debug_prefs)) continue;
|
2008-04-26 23:34:38 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_send", debug_send)) continue;
|
2008-08-19 03:00:17 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_resend", debug_resend)) continue;
|
2008-05-02 17:48:29 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_request_headers", debug_request_headers)) continue;
|
|
|
|
if (xp.parse_bool(tag, "debug_user_messages", debug_user_messages)) continue;
|
|
|
|
if (xp.parse_bool(tag, "debug_request_details", debug_request_details)) continue;
|
|
|
|
if (xp.parse_bool(tag, "debug_handle_results", debug_handle_results)) continue;
|
2008-05-08 17:48:40 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_edf_sim_workload", debug_edf_sim_workload)) continue;
|
|
|
|
if (xp.parse_bool(tag, "debug_edf_sim_detail", debug_edf_sim_detail)) continue;
|
2009-01-15 20:23:20 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_locality", debug_locality)) continue;
|
2009-03-07 01:00:05 +00:00
|
|
|
if (xp.parse_bool(tag, "debug_array", debug_array)) continue;
|
2007-06-27 20:09:18 +00:00
|
|
|
|
|
|
|
// don't complain about unparsed XML;
|
|
|
|
// there are lots of tags the scheduler doesn't know about
|
|
|
|
|
2009-09-07 05:26:23 +00:00
|
|
|
xp.skip_unexpected(tag, false, "SCHED_CONFIG::parse");
|
2006-05-25 05:22:10 +00:00
|
|
|
}
|
|
|
|
return ERR_XML_PARSE;
|
|
|
|
}
|
|
|
|
|
2005-02-16 23:17:43 +00:00
|
|
|
int SCHED_CONFIG::parse_file(const char* dir) {
|
2003-09-02 21:16:55 +00:00
|
|
|
char path[256];
|
2004-04-30 23:18:56 +00:00
|
|
|
int retval;
|
2002-10-03 18:33:46 +00:00
|
|
|
|
2009-05-07 13:54:51 +00:00
|
|
|
if (dir && dir[0]) {
|
|
|
|
snprintf(path, sizeof(path), "%s/%s", dir, CONFIG_FILE);
|
|
|
|
} else {
|
|
|
|
strcpy(path, project_path(CONFIG_FILE));
|
|
|
|
}
|
2008-09-09 19:10:42 +00:00
|
|
|
#ifndef _USING_FCGI_
|
2006-05-25 05:22:10 +00:00
|
|
|
FILE* f = fopen(path, "r");
|
2008-09-09 19:10:42 +00:00
|
|
|
#else
|
|
|
|
FCGI_FILE *f = FCGI::fopen(path, "r");
|
|
|
|
#endif
|
2006-05-25 05:22:10 +00:00
|
|
|
if (!f) return ERR_FOPEN;
|
|
|
|
retval = parse(f);
|
|
|
|
fclose(f);
|
|
|
|
return retval;
|
2002-10-03 18:33:46 +00:00
|
|
|
}
|
2004-04-04 02:59:42 +00:00
|
|
|
|
2007-04-19 22:11:25 +00:00
|
|
|
int SCHED_CONFIG::upload_path(const char* filename, char* path) {
|
2009-06-10 17:42:18 +00:00
|
|
|
return dir_hier_path(filename, upload_dir, uldl_dir_fanout, path, true);
|
2007-04-19 03:12:13 +00:00
|
|
|
}
|
|
|
|
|
2007-04-19 22:11:25 +00:00
|
|
|
int SCHED_CONFIG::download_path(const char* filename, char* path) {
|
2009-06-10 17:42:18 +00:00
|
|
|
return dir_hier_path(filename, download_dir, uldl_dir_fanout, path, true);
|
2007-04-18 20:49:58 +00:00
|
|
|
}
|
|
|
|
|
2009-05-07 13:54:51 +00:00
|
|
|
// Does 2 things:
|
|
|
|
// - locate project directory. This is either
|
|
|
|
// a) env var BOINC_PROJECT_DIR, if defined
|
|
|
|
// b) current dir, if config.xml exists there
|
|
|
|
// c) parent dir, if config.xml exists there
|
|
|
|
// - returns a path relative to the project dir,
|
|
|
|
// specified by a format string + args
|
|
|
|
//
|
|
|
|
const char *SCHED_CONFIG::project_path(const char *fmt, ...) {
|
|
|
|
static char path[1024];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
if (!strlen(project_dir)) {
|
|
|
|
char *p = getenv("BOINC_PROJECT_DIR");
|
|
|
|
if (p) {
|
|
|
|
strlcpy(project_dir, p, sizeof(project_dir));
|
|
|
|
} else if (boinc_file_exists(CONFIG_FILE)) {
|
|
|
|
strcpy(project_dir, ".");
|
|
|
|
} else {
|
|
|
|
strcpy(project_dir, "..");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
snprintf(path, sizeof(path), "%s/", project_dir);
|
|
|
|
vsnprintf(path + strlen(path), sizeof(path) - strlen(path), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return (const char *)path;
|
2004-04-04 02:59:42 +00:00
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_3704204cfd = "$Id$";
|