// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2008 University of California // // 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. // // BOINC 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. // // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . #include "cc_config.h" #ifdef _WIN32 #include "boinc_win.h" #else #include "config.h" #include #include #include #endif #include "common_defs.h" #include "diagnostics.h" #include "error_numbers.h" #include "filesys.h" #include "parse.h" #include "str_util.h" #include "url.h" #include "cc_config.h" using std::string; LOG_FLAGS::LOG_FLAGS() { init(); } void LOG_FLAGS::init() { memset(this, 0, sizeof(LOG_FLAGS)); // on by default (others are off by default) // task = true; file_xfer = true; sched_ops = true; } // Parse log flag preferences // int LOG_FLAGS::parse(XML_PARSER& xp) { while (!xp.get_tag()) { if (!xp.is_tag) { continue; } if (xp.match_tag("/log_flags")) return 0; if (xp.parse_bool("file_xfer", file_xfer)) continue; if (xp.parse_bool("sched_ops", sched_ops)) continue; if (xp.parse_bool("task", task)) continue; if (xp.parse_bool("android_debug", android_debug)) continue; if (xp.parse_bool("app_msg_receive", app_msg_receive)) continue; if (xp.parse_bool("app_msg_send", app_msg_send)) continue; if (xp.parse_bool("async_file_debug", async_file_debug)) continue; if (xp.parse_bool("benchmark_debug", benchmark_debug)) continue; if (xp.parse_bool("checkpoint_debug", checkpoint_debug)) continue; if (xp.parse_bool("coproc_debug", coproc_debug)) continue; if (xp.parse_bool("cpu_sched", cpu_sched)) continue; if (xp.parse_bool("cpu_sched_debug", cpu_sched_debug)) continue; if (xp.parse_bool("cpu_sched_status", cpu_sched_status)) continue; if (xp.parse_bool("dcf_debug", dcf_debug)) continue; if (xp.parse_bool("disk_usage_debug", disk_usage_debug)) continue; if (xp.parse_bool("file_xfer_debug", file_xfer_debug)) continue; if (xp.parse_bool("gui_rpc_debug", gui_rpc_debug)) continue; if (xp.parse_bool("heartbeat_debug", heartbeat_debug)) continue; if (xp.parse_bool("http_debug", http_debug)) continue; if (xp.parse_bool("http_xfer_debug", http_xfer_debug)) continue; if (xp.parse_bool("mem_usage_debug", mem_usage_debug)) continue; if (xp.parse_bool("network_status_debug", network_status_debug)) continue; if (xp.parse_bool("notice_debug", notice_debug)) continue; if (xp.parse_bool("poll_debug", poll_debug)) continue; if (xp.parse_bool("priority_debug", priority_debug)) continue; if (xp.parse_bool("proxy_debug", proxy_debug)) continue; if (xp.parse_bool("rr_simulation", rr_simulation)) continue; if (xp.parse_bool("rrsim_detail", rrsim_detail)) continue; if (xp.parse_bool("sched_op_debug", sched_op_debug)) continue; if (xp.parse_bool("scrsave_debug", scrsave_debug)) continue; if (xp.parse_bool("slot_debug", slot_debug)) continue; if (xp.parse_bool("state_debug", state_debug)) continue; if (xp.parse_bool("statefile_debug", statefile_debug)) continue; if (xp.parse_bool("suspend_debug", suspend_debug)) continue; if (xp.parse_bool("task_debug", task_debug)) continue; if (xp.parse_bool("time_debug", time_debug)) continue; if (xp.parse_bool("trickle_debug", trickle_debug)) continue; if (xp.parse_bool("unparsed_xml", unparsed_xml)) continue; if (xp.parse_bool("work_fetch_debug", work_fetch_debug)) continue; xp.skip_unexpected(true, "LOG_FLAGS::parse"); } return ERR_XML_PARSE; } int LOG_FLAGS::write(MIOFILE& out) { out.printf( " \n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " \n", file_xfer ? 1 : 0, sched_ops ? 1 : 0, task ? 1 : 0, android_debug ? 1 : 0, app_msg_receive ? 1 : 0, app_msg_send ? 1 : 0, async_file_debug ? 1 : 0, benchmark_debug ? 1 : 0, checkpoint_debug ? 1 : 0, coproc_debug ? 1 : 0, cpu_sched ? 1 : 0, cpu_sched_debug ? 1 : 0, cpu_sched_status ? 1 : 0, dcf_debug ? 1 : 0, disk_usage_debug ? 1 : 0, file_xfer_debug ? 1 : 0, gui_rpc_debug ? 1 : 0, heartbeat_debug ? 1 : 0, http_debug ? 1 : 0, http_xfer_debug ? 1 : 0, mem_usage_debug ? 1 : 0, network_status_debug ? 1 : 0, notice_debug ? 1 : 0, poll_debug ? 1 : 0, priority_debug ? 1 : 0, proxy_debug ? 1 : 0, rr_simulation ? 1 : 0, rrsim_detail ? 1 : 0, sched_op_debug ? 1 : 0, scrsave_debug ? 1 : 0, slot_debug ? 1 : 0, state_debug ? 1 : 0, statefile_debug ? 1 : 0, suspend_debug ? 1 : 0, task_debug ? 1 : 0, time_debug ? 1 : 0, trickle_debug ? 1 : 0, unparsed_xml ? 1 : 0, work_fetch_debug ? 1 : 0 ); return 0; } CONFIG::CONFIG() { } // this is called first thing by client // void CONFIG::defaults() { abort_jobs_on_exit = false; allow_multiple_clients = false; allow_remote_gui_rpc = false; alt_platforms.clear(); client_download_url = "http://boinc.berkeley.edu/download.php"; client_new_version_text = ""; client_version_check_url = "http://boinc.berkeley.edu/download.php?xml=1"; config_coprocs.clear(); data_dir[0] = 0; disallow_attach = false; dont_check_file_sizes = false; dont_contact_ref_site = false; exclude_gpus.clear(); exclusive_apps.clear(); exclusive_gpu_apps.clear(); exit_after_finish = false; exit_before_start = false; exit_when_idle = false; fetch_minimal_work = false; fetch_on_update = false; force_auth = "default"; http_1_0 = false; http_transfer_timeout = 300; http_transfer_timeout_bps = 10; for (int i=1; i\n"); out.printf("\n"); log_flags.write(out); out.printf( " \n" " %d\n" " %d\n" " %d\n", abort_jobs_on_exit ? 1 : 0, allow_multiple_clients ? 1 : 0, allow_remote_gui_rpc ? 1 : 0 ); for (i=0; i%s\n", alt_platforms[i].c_str() ); } out.printf( " %s\n" " %s\n" " %s\n", client_version_check_url.c_str(), client_new_version_text.c_str(), client_download_url.c_str() ); for (int k=1; k\n" " %s\n" " %d\n" " %f\n" " ", config_coprocs.coprocs[k].type, config_coprocs.coprocs[k].count, config_coprocs.coprocs[k].peak_flops ); for (j=0; j\n" " \n" ); } // Older versions of BOINC choke on empty data_dir string if (strlen(data_dir)) { out.printf(" %s\n", data_dir); } out.printf( " %d\n" " %d\n" " %d\n", disallow_attach, dont_check_file_sizes, dont_contact_ref_site ); for (i=0; i%s\n", exclusive_apps[i].c_str() ); } for (i=0; i%s\n", exclusive_gpu_apps[i].c_str() ); } out.printf( " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %s\n" " %d\n" " %d\n" " %d\n", exit_after_finish, exit_before_start, exit_when_idle, fetch_minimal_work, fetch_on_update, force_auth.c_str(), http_1_0, http_transfer_timeout, http_transfer_timeout_bps ); for (i=0; i%d\n", ignore_gpu_instance[PROC_TYPE_NVIDIA_GPU][i] ); } for (i=0; i%d\n", ignore_gpu_instance[PROC_TYPE_AMD_GPU][i] ); } for (i=0; i%d\n", ignore_gpu_instance[PROC_TYPE_INTEL_GPU][i] ); } out.printf( " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %s\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n", max_event_log_lines, max_file_xfers, max_file_xfers_per_project, max_stderr_file_size, max_stdout_file_size, max_tasks_reported, ncpus, network_test_url.c_str(), no_alt_platform, no_gpus, no_info_fetch, no_priority_change, os_random_only ); proxy_info.write(out); out.printf( " %f\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n" " %d\n", rec_half_life/86400, report_results_immediately, run_apps_manually, save_stats_days, skip_cpu_benchmarks, simple_gui_only, start_delay, stderr_head, suppress_net_info, unsigned_apps_ok, use_all_gpus, use_certs, use_certs_only, vbox_window ); out.printf(" \n\n"); out.printf("\n"); return 0; }