boinc/client/log_flags.h

151 lines
4.1 KiB
C
Raw Normal View History

// 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 <http://www.gnu.org/licenses/>.
// 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 _LOGFLAGS_H_
#define _LOGFLAGS_H_
#include <vector>
#include <string>
#ifndef _WIN32
- Added checks for net/*.h, arpa/*.h, netinet/*.h and code to figure out which of those files to include - Modified MAC address check to work on some non-Linux unixes. (mac_address.cpp) - Added suggested change to "already attached to project" checking. (ProjectInfoPage.cpp) - changed includes of standard c header files to their c++ equivalents (i.e. replaced <stdio.h> with <cstdio>) for namespace protection. - replaced "using namespace std;" with more explicit "using std::function" in several files. - Fixed bug in checking whether the os is OS/2 and added conditional OS_OS2 to the build environment. (boinc_platform.m4,configure.ac) - Changed build environment to not use -nostandardlibs unless we are using G++ and static linkage is specified. (configure.ac) - Added makefiles and package building files for solaris CSW package manager. - Fixed bug with attempting to find login name using logname. (configure.ac) - Added ifdef HAVE_* protection around some include files commonly found in sys. - Added support for unified binary for x86_64/i686-pc-solaris. (cs_platforms.cpp) - generate_host_cpid() now uses MAC address on non-linux unix. (hostinfo_network.cpp) - Macro BOINC_SET_COMPILE_FLAGS now doesn't check gcc only flags on non-gcc compilers. (boinc_set_compile_flags.m4) - Library compiles no longer depend upon the library extension or require the library to be prefixed with lib. - More fixes for fcgi builds. - Added declaration of "struct ether_addr" and ether_ntoa(). Have not yet implemented ether_ntoa() for machines that don't have it, or where it is buggy. (unix_util.h) - Added FCGI::perror() which calls FCGI_perror(). (boinc_fcgi.{h,cpp}) - Fixed library Makefiles so that all required headers get installed. svn path=/trunk/boinc/; revision=17388
2009-02-26 00:23:23 +00:00
#include <cstdio>
#endif
#define MAX_FILE_XFERS_PER_PROJECT 2
#define MAX_FILE_XFERS 8
// kind of arbitrary
class XML_PARSER;
struct LOG_FLAGS {
// on by default, user-readable
//
/// task start and finish
bool task;
/// file transfer start and finish
bool file_xfer;
/// interactions with schedulers
bool sched_ops;
// off by default; intended for developers and testers
//
/// preemption and resumption
bool cpu_sched;
/// explain scheduler decisions
bool cpu_sched_debug;
/// results of rr simulator
bool rr_simulation;
/// changes to debt
bool debt_debug;
/// task start and control details, and when apps checkpoint
bool task_debug;
/// work fetch policy
bool work_fetch_debug;
/// show unparsed XML lines
bool unparsed_xml;
/// print textual summary of CLIENT_STATE initially
/// and after each scheduler RPC and garbage collect
/// also show actions of garbage collector
bool state_debug;
/// show when and why state file is written
bool statefile_debug;
/// show completion of FILE_XFER
bool file_xfer_debug;
bool sched_op_debug;
bool http_debug;
bool proxy_debug;
/// changes in on_frac, active_frac, connected_frac
bool time_debug;
bool http_xfer_debug;
/// debug CPU benchmarks
bool benchmark_debug;
/// show what polls are responding
bool poll_debug;
bool guirpc_debug;
bool scrsave_debug;
/// show shared-mem message to apps
bool app_msg_send;
/// show shared-mem message from apps
bool app_msg_receive;
/// memory usage
2009-08-14 17:10:52 +00:00
bool mem_usage_debug;
bool network_status_debug;
bool checkpoint_debug;
/// show coproc reserve/free
2009-08-14 17:10:52 +00:00
bool coproc_debug;
/// show changes to duration correction factors
bool dcf_debug;
bool slot_debug;
LOG_FLAGS();
int parse(XML_PARSER&);
void show();
};
struct CONFIG {
bool allow_multiple_clients;
std::vector<std::string> alt_platforms;
std::string client_version_check_url;
std::string client_download_url;
bool disallow_attach;
bool dont_check_file_sizes;
bool dont_contact_ref_site;
std::vector<std::string> exclusive_apps;
std::string force_auth;
2009-08-14 17:10:52 +00:00
bool http_1_0;
int max_file_xfers;
int max_file_xfers_per_project;
int max_stderr_file_size;
int max_stdout_file_size;
int ncpus;
std::string network_test_url;
bool no_alt_platform;
bool no_gpus;
bool no_priority_change;
bool os_random_only;
bool report_results_immediately;
bool run_apps_manually;
int save_stats_days;
bool simple_gui_only;
double start_delay;
bool suppress_net_info;
bool use_all_gpus;
bool use_certs;
bool use_certs_only;
// overrides use_certs
bool zero_debts;
CONFIG();
void clear();
int parse(FILE*);
int parse_options(XML_PARSER&);
void show();
};
extern LOG_FLAGS log_flags;
extern CONFIG config;
extern int read_config_file(bool init);
#endif