// 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 . // This file is code to print (in ASCII) the stuff returned by GUI RPC. // Used only by boinccmd. #if defined(_WIN32) && !defined(__STDWX_H__) && !defined(_BOINC_WIN_) && !defined(_AFX_STDAFX_H_) #include "boinc_win.h" #endif #ifdef _WIN32 #include "../version.h" #else #include "config.h" #include #include #include #include #include #include #include #endif #include "diagnostics.h" #include "parse.h" #include "util.h" #include "str_util.h" #include "error_numbers.h" #include "miofile.h" #include "md5_file.h" #include "network.h" #include "gui_rpc_client.h" using std::string; using std::vector; void DAILY_XFER_HISTORY::print() { for (unsigned int i=0; iproject_name.c_str()); } void APP_VERSION::print() { printf(" application: %s\n", app->name); printf(" version: %.2f\n", version_num/100.0); printf(" project: %s\n", project->project_name.c_str()); } void WORKUNIT::print() { printf(" name: %s\n", name); printf(" FP estimate: %f\n", rsc_fpops_est); printf(" FP bound: %f\n", rsc_fpops_bound); printf(" memory bound: %f\n", rsc_memory_bound); printf(" disk bound: %f\n", rsc_disk_bound); } void RESULT::print() { printf(" name: %s\n", name); printf(" WU name: %s\n", wu_name); printf(" project URL: %s\n", project_url); time_t foo = (time_t)report_deadline; printf(" report deadline: %s", ctime(&foo)); printf(" ready to report: %s\n", ready_to_report?"yes":"no"); printf(" got server ack: %s\n", got_server_ack?"yes":"no"); printf(" final CPU time: %f\n", final_cpu_time); printf(" state: %d\n", state); printf(" scheduler state: %d\n", scheduler_state); printf(" exit_status: %d\n", exit_status); printf(" signal: %d\n", signal); printf(" suspended via GUI: %s\n", suspended_via_gui?"yes":"no"); printf(" active_task_state: %d\n", active_task_state); //printf(" stderr_out: %s\n", stderr_out.c_str()); printf(" app version num: %d\n", app_version_num); printf(" checkpoint CPU time: %f\n", checkpoint_cpu_time); printf(" current CPU time: %f\n", current_cpu_time); printf(" fraction done: %f\n", fraction_done); printf(" swap size: %f\n", swap_size); printf(" working set size: %f\n", working_set_size_smoothed); printf(" estimated CPU time remaining: %f\n", estimated_cpu_time_remaining); } void FILE_TRANSFER::print() { printf(" name: %s\n", name.c_str()); printf(" direction: %s\n", is_upload?"upload":"download"); printf(" sticky: %s\n", sticky?"yes":"no"); printf(" xfer active: %s\n", xfer_active?"yes":"no"); printf(" time_so_far: %f\n", time_so_far); printf(" bytes_xferred: %f\n", bytes_xferred); printf(" xfer_speed: %f\n", xfer_speed); } void MESSAGE::print() { printf("%s %d %d %s\n", project.c_str(), priority, timestamp, body.c_str() ); } void GR_PROXY_INFO::print() { printf("HTTP server name: %s\n",this->http_server_name.c_str()); printf("HTTP server port: %d\n",this->http_server_port); printf("HTTP user name: %s\n",this->http_user_name.c_str()); //printf("HTTP user password: %s\n",this->http_user_passwd.c_str()); printf("SOCKS server name: %s\n",this->socks_server_name.c_str()); printf("SOCKS server port: %d\n",this->socks_server_port); printf("SOCKS version: %d\n",this->socks_version); printf("SOCKS5 user name: %s\n",this->socks5_user_name.c_str()); //printf("SOCKS5 user password: %s\n",this->socks5_user_passwd.c_str()); printf("no proxy hosts: %s\n",this->noproxy_hosts.c_str()); } void HOST_INFO::print() { printf(" timezone: %d\n", timezone); printf(" domain name: %s\n", domain_name); printf(" IP addr: %s\n", ip_addr); printf(" #CPUS: %d\n", p_ncpus); printf(" CPU vendor: %s\n", p_vendor); printf(" CPU model: %s\n", p_model); printf(" CPU FP OPS: %f\n", p_fpops); printf(" CPU int OPS: %f\n", p_iops); printf(" CPU mem BW: %f\n", p_membw); printf(" OS name: %s\n", os_name); printf(" OS version: %s\n", os_version); printf(" mem size: %f\n", m_nbytes); printf(" cache size: %f\n", m_cache); printf(" swap size: %f\n", m_swap); printf(" disk size: %f\n", d_total); printf(" disk free: %f\n", d_free); } void SIMPLE_GUI_INFO::print() { unsigned int i; printf("======== Projects ========\n"); for (i=0; iprint(); } printf("\n======== Tasks ========\n"); for (i=0; iprint(); } } void CC_STATE::print() { unsigned int i; printf("======== Projects ========\n"); for (i=0; iprint(); } printf("\n======== Applications ========\n"); for (i=0; iprint(); } printf("\n======== Application versions ========\n"); for (i=0; iprint(); } printf("\n======== Workunits ========\n"); for (i=0; iprint(); } printf("\n======== Tasks ========\n"); for (i=0; iprint(); } } void print_status( const char* name, int reason, int mode, int mode_perm, double delay ) { printf("%s status\n", name); if (reason) { printf(" suspended: %s\n", suspend_reason_string(reason)); } else { printf(" not suspended\n"); } printf( " current mode: %s\n" " perm mode: %s\n" " perm becomes current in %.0f sec\n", run_mode_string(mode), run_mode_string(mode_perm), delay ); } void CC_STATUS::print() { printf("network connection status: %s\n", network_status_string(network_status) ); print_status("CPU", task_suspend_reason, task_mode, task_mode_perm, task_mode_delay ); print_status("GPU", gpu_suspend_reason, gpu_mode, gpu_mode_perm, gpu_mode_delay ); print_status("Network", network_suspend_reason, network_mode, network_mode_perm, network_mode_delay ); } void PROJECTS::print() { unsigned int i; printf("======== Projects ========\n"); for (i=0; iprint(); } } void DISK_USAGE::print() { unsigned int i; printf("======== Disk usage ========\n"); printf("total: %f\n", d_total); printf("free: %f\n", d_free); for (i=0; iprint_disk_usage(); } } void RESULTS::print() { unsigned int i; printf("\n======== Tasks ========\n"); for (i=0; iprint(); } } void FILE_TRANSFERS::print() { unsigned int i; printf("\n======== File transfers ========\n"); for (i=0; iprint(); } } void MESSAGES::print() { unsigned int i; printf("\n======== Messages ========\n"); for (i=0; iprint(); } } void PROJECT_CONFIG::print() { printf( "uses_username: %d\n" "name: %s\n" "min_passwd_length: %d\n", uses_username, name.c_str(), min_passwd_length ); } void ACCOUNT_OUT::print() { if (error_num) { printf("error in account lookup: %s\n", boincerror(error_num)); } else { printf("account key: %s\n", authenticator.c_str()); } }