--- projects/libstatgrab/src/libstatgrab/statgrab.h 2004/04/08 13:44:44 1.49 +++ projects/libstatgrab/src/libstatgrab/statgrab.h 2006/03/11 13:11:21 1.58 @@ -18,9 +18,16 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA * - * $Id: statgrab.h,v 1.49 2004/04/08 13:44:44 ats Exp $ + * $Id: statgrab.h,v 1.58 2006/03/11 13:11:21 tdb Exp $ */ +#ifndef STATGRAB_H +#define STATGRAB_H + +#ifdef __cplusplus +extern "C" { +#endif + #include /* FIXME typedefs for 32/64-bit types */ @@ -28,17 +35,22 @@ /* FIXME comments for less obvious fields */ int sg_init(void); +int sg_snapshot(); +int sg_shutdown(); int sg_drop_privileges(void); typedef enum { SG_ERROR_NONE = 0, SG_ERROR_ASPRINTF, + SG_ERROR_DEVICES, SG_ERROR_DEVSTAT_GETDEVS, SG_ERROR_DEVSTAT_SELECTDEVS, + SG_ERROR_DISKINFO, SG_ERROR_ENOENT, SG_ERROR_GETIFADDRS, SG_ERROR_GETMNTINFO, SG_ERROR_GETPAGESIZE, + SG_ERROR_HOST, SG_ERROR_KSTAT_DATA_LOOKUP, SG_ERROR_KSTAT_LOOKUP, SG_ERROR_KSTAT_OPEN, @@ -46,9 +58,16 @@ typedef enum { SG_ERROR_KVM_GETSWAPINFO, SG_ERROR_KVM_OPENFILES, SG_ERROR_MALLOC, + SG_ERROR_MEMSTATUS, SG_ERROR_OPEN, SG_ERROR_OPENDIR, SG_ERROR_PARSE, + SG_ERROR_PDHADD, + SG_ERROR_PDHCOLLECT, + SG_ERROR_PDHOPEN, + SG_ERROR_PDHREAD, + SG_ERROR_PERMISSION, + SG_ERROR_PSTAT, SG_ERROR_SETEGID, SG_ERROR_SETEUID, SG_ERROR_SETMNTENT, @@ -64,8 +83,10 @@ typedef enum { } sg_error; void sg_set_error(sg_error code, const char *arg); +void sg_set_error_with_errno(sg_error code, const char *arg); sg_error sg_get_error(); const char *sg_get_error_arg(); +int sg_get_error_errno(); const char *sg_str_error(sg_error code); typedef struct { @@ -147,6 +168,13 @@ typedef struct { long long total_inodes; long long used_inodes; long long free_inodes; + long long avail_inodes; + long long io_size; + long long block_size; + long long total_blocks; + long long free_blocks; + long long used_blocks; + long long avail_blocks; } sg_fs_stats; sg_fs_stats *sg_get_fs_stats(int *entries); @@ -192,7 +220,10 @@ typedef enum { typedef struct { char *interface_name; int speed; /* In megabits/sec */ + sg_iface_duplex duplex; +#ifdef SG_ENABLE_DEPRECATED sg_iface_duplex dup; +#endif int up; } sg_network_iface_stats; @@ -225,10 +256,18 @@ typedef struct { pid_t parent; /* Parent pid */ pid_t pgid; /* process id of process group leader */ +/* Windows does not have uid_t or gid_t types */ +#ifndef WIN32 uid_t uid; uid_t euid; gid_t gid; gid_t egid; +#else + int uid; + int euid; + int gid; + int egid; +#endif unsigned long long proc_size; /* in bytes */ unsigned long long proc_resident; /* in bytes */ @@ -263,3 +302,8 @@ sg_process_count *sg_get_process_count(); #include #endif +#ifdef __cplusplus +} +#endif + +#endif