2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2003-08-08 23:41:36 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
2003-08-08 23:41:36 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software 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.
|
2002-04-30 22:22:54 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#ifndef _HOSTINFO_
|
|
|
|
#define _HOSTINFO_
|
|
|
|
|
2005-10-04 21:44:58 +00:00
|
|
|
// Description of a host's hardware and software.
|
|
|
|
// This is used a few places:
|
|
|
|
// - it's part of the client's state file, client_state.xml
|
|
|
|
// - it's passed in the reply to the get_host_info GUI RPC
|
|
|
|
// - it's included in scheduler RPC requests
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
// Other host-specific info is kept in
|
|
|
|
// TIME_STATS (on/connected/active fractions)
|
|
|
|
// NET_STATS (average network bandwidths)
|
|
|
|
|
2005-10-04 21:44:58 +00:00
|
|
|
#include "miofile.h"
|
|
|
|
|
2005-08-03 20:59:01 +00:00
|
|
|
class HOST_INFO {
|
|
|
|
public:
|
2006-05-17 22:29:37 +00:00
|
|
|
int timezone; // local STANDARD time - UTC time (in seconds)
|
2002-04-30 22:22:54 +00:00
|
|
|
char domain_name[256];
|
|
|
|
char serialnum[256];
|
|
|
|
char ip_addr[256];
|
2005-01-20 18:50:49 +00:00
|
|
|
char host_cpid[64];
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
int p_ncpus;
|
|
|
|
char p_vendor[256];
|
|
|
|
char p_model[256];
|
|
|
|
double p_fpops;
|
|
|
|
double p_iops;
|
|
|
|
double p_membw;
|
2006-05-17 22:29:37 +00:00
|
|
|
double p_calculated; // when benchmarks were last run, or zero
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2006-05-17 22:29:37 +00:00
|
|
|
double m_nbytes; // Total amount of memory in bytes
|
2002-04-30 22:22:54 +00:00
|
|
|
double m_cache;
|
2006-05-17 22:29:37 +00:00
|
|
|
double m_swap; // Total amount of swap space in bytes
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2006-05-22 09:54:31 +00:00
|
|
|
double d_total; // Total amount of disk in bytes
|
|
|
|
double d_free; // Total amount of free disk in bytes
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2006-05-16 20:43:11 +00:00
|
|
|
char os_name[256];
|
|
|
|
char os_version[256];
|
|
|
|
|
|
|
|
char accelerators[256];
|
2006-05-22 09:54:31 +00:00
|
|
|
// text description of graphics coprocessors or other accelerators
|
2006-05-16 20:43:11 +00:00
|
|
|
|
2005-08-03 20:59:01 +00:00
|
|
|
HOST_INFO();
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
|
|
|
int write(MIOFILE&);
|
2003-04-01 03:28:37 +00:00
|
|
|
int parse_cpu_benchmarks(FILE*);
|
|
|
|
int write_cpu_benchmarks(FILE*);
|
2005-08-04 16:17:30 +00:00
|
|
|
void print();
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2004-03-31 19:43:15 +00:00
|
|
|
bool host_is_running_on_batteries();
|
2004-06-29 19:54:50 +00:00
|
|
|
bool users_idle(bool check_all_logins, double idle_time_to_run);
|
2004-03-31 19:43:15 +00:00
|
|
|
int get_host_info();
|
2006-06-23 20:41:47 +00:00
|
|
|
int get_local_network_info();
|
2004-03-31 19:43:15 +00:00
|
|
|
void clear_host_info();
|
2005-10-23 07:19:03 +00:00
|
|
|
void make_random_string(const char* salt, char* out);
|
2005-01-20 18:50:49 +00:00
|
|
|
void generate_host_cpid();
|
2004-03-31 19:43:15 +00:00
|
|
|
};
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#endif
|