mirror of https://github.com/BOINC/boinc.git
73 lines
2.0 KiB
C
73 lines
2.0 KiB
C
// The contents of this file are subject to the Mozilla Public License
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
// http://www.mozilla.org/MPL/
|
|
//
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing rights and limitations
|
|
// under the License.
|
|
//
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
//
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
//
|
|
// Contributor(s):
|
|
//
|
|
|
|
#ifndef _HOSTINFO_
|
|
#define _HOSTINFO_
|
|
|
|
// Other host-specific info is kept in
|
|
// TIME_STATS (on/connected/active fractions)
|
|
// NET_STATS (average network bandwidths)
|
|
|
|
struct HOST_INFO {
|
|
int timezone; // seconds added to local time to get UTC
|
|
char domain_name[256];
|
|
char serialnum[256];
|
|
char ip_addr[256];
|
|
|
|
//exponentially weighted fractions
|
|
double on_frac;
|
|
double conn_frac;
|
|
double active_frac;
|
|
|
|
int p_ncpus;
|
|
char p_vendor[256];
|
|
char p_model[256];
|
|
double p_fpops;
|
|
double p_iops;
|
|
double p_membw;
|
|
double p_calculated; //needs to be initialized to zero
|
|
|
|
char os_name[256];
|
|
char os_version[256];
|
|
|
|
double m_nbytes;
|
|
double m_cache;
|
|
double m_swap;
|
|
|
|
double d_total;
|
|
double d_free;
|
|
|
|
int parse(FILE*);
|
|
int write(FILE*);
|
|
int parse_time_tests(FILE*);
|
|
int write_time_tests(FILE*);
|
|
};
|
|
|
|
extern bool host_is_running_on_batteries();
|
|
|
|
extern int get_host_info(HOST_INFO&);
|
|
extern void clear_host_info(HOST_INFO&);
|
|
extern void get_host_disk_info( double &total_space, double &free_space );
|
|
|
|
extern int get_local_domain_name(char* p);
|
|
extern int get_local_ip_addr_str(char* p);
|
|
extern int get_local_ip_addr(int& p);
|
|
|
|
#endif
|