// 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 . // flags determining what is written to standard out. // (errors go to stderr) // // NOTE: all writes to stdout should have an if (log_flags.*) {} around them. // #ifndef _CC_CONFIG_H_ #define _CC_CONFIG_H_ #include #include #include "proxy_info.h" #include "coproc.h" class XML_PARSER; #define MAX_FILE_XFERS_PER_PROJECT 2 #define MAX_FILE_XFERS 8 // kind of arbitrary struct LOG_FLAGS { // If you add anything, you must add it to parse() and write() // on by default; intended for all users // bool file_xfer; // file transfer start and finish bool sched_ops; // interactions with schedulers bool task; // task start and finish // off by default; intended for developers and testers // bool app_msg_receive; // show shared-mem message from apps bool app_msg_send; // show shared-mem message to apps bool benchmark_debug; // debug CPU benchmarks bool checkpoint_debug; bool coproc_debug; // show coproc reserve/free and startup msgs bool cpu_sched; // preemption and resumption bool cpu_sched_debug; // explain scheduler decisions bool cpu_sched_status; // show what's running bool dcf_debug; // show changes to duration correction factors bool debt_debug; // changes to long-term debt bool file_xfer_debug; // show completion of FILE_XFER bool gui_rpc_debug; bool heartbeat_debug; bool http_debug; bool http_xfer_debug; bool mem_usage_debug; // memory usage bool network_status_debug; bool poll_debug; // show what polls are responding bool proxy_debug; bool rr_simulation; // results of rr simulator bool sched_op_debug; bool scrsave_debug; bool slot_debug; // allocation of slots bool state_debug; // print textual summary of CLIENT_STATE initially // and after each scheduler RPC and garbage collect // also show actions of garbage collector bool statefile_debug; // show when and why state file is written bool std_debug; // changes to short-term debt bool task_debug; // task start and control details, and when apps checkpoint bool time_debug; // changes in on_frac, active_frac, connected_frac bool unparsed_xml; // show unparsed XML lines bool work_fetch_debug; // work fetch policy bool notice_debug; LOG_FLAGS(); void init(); int parse(XML_PARSER&); void show(); int write(MIOFILE& out); }; struct EXCLUDE_GPU { std::string url; std::string type; std::string appname; int device_num; // -1 means all }; // if you add anything, you must add it to // defaults(), parse_options(), and write() // struct CONFIG { bool abort_jobs_on_exit; bool allow_multiple_clients; bool allow_remote_gui_rpc; std::vector alt_platforms; std::string client_version_check_url; std::string client_download_url; COPROCS config_coprocs; char data_dir[256]; bool disallow_attach; bool dont_check_file_sizes; bool dont_contact_ref_site; std::vector exclude_gpus; std::vector exclusive_apps; std::vector exclusive_gpu_apps; bool exit_after_finish; bool exit_when_idle; bool fetch_minimal_work; std::string force_auth; bool http_1_0; int http_transfer_timeout_bps; int http_transfer_timeout; std::vector ignore_ati_dev; std::vector ignore_nvidia_dev; int max_file_xfers; int max_file_xfers_per_project; int max_stderr_file_size; int max_stdout_file_size; int max_tasks_reported; int ncpus; std::string network_test_url; bool no_alt_platform; bool no_gpus; bool no_info_fetch; bool no_priority_change; bool os_random_only; PROXY_INFO proxy_info; double rec_half_life; bool report_results_immediately; bool run_apps_manually; int save_stats_days; bool skip_cpu_benchmarks; bool simple_gui_only; double start_delay; bool stderr_head; bool suppress_net_info; bool unsigned_apps_ok; bool use_all_gpus; bool use_certs; bool use_certs_only; // overrides use_certs bool zero_debts; CONFIG(); void defaults(); int parse(FILE*); int parse(XML_PARSER&, LOG_FLAGS&); int parse_client(FILE*); int parse_options(XML_PARSER&); int parse_options_client(XML_PARSER&); int write(MIOFILE&, LOG_FLAGS&); void show(); }; #endif