evisum/src/bin/system/machine.h

100 lines
1.6 KiB
C

#ifndef __MACHINE_H__
#define __MACHINE_H__
#include <stdint.h>
#include <stdbool.h>
typedef struct
{
unsigned long total;
unsigned long idle;
float percent;
} cpu_core_t;
typedef struct
{
unsigned long long total;
unsigned long long used;
unsigned long long cached;
unsigned long long buffered;
unsigned long long shared;
unsigned long long swap_total;
unsigned long long swap_used;
unsigned long long zfs_arc_used;
} meminfo_t;
typedef struct
{
char *name;
double value;
bool invalid;
} sensor_t;
typedef struct
{
char *name;
double charge_full;
double charge_current;
uint8_t percent;
bool present;
#if defined(__OpenBSD__)
int *mibs;
#endif
} bat_t;
typedef struct
{
bool have_ac;
int battery_count;
bat_t **batteries;
int ac_mibs[5];
} power_t;
typedef struct
{
unsigned long incoming;
unsigned long outgoing;
} network_t;
typedef struct Sys_Info Sys_Info;
struct Sys_Info
{
int cpu_count;
cpu_core_t **cores;
meminfo_t memory;
power_t power;
int sensor_count;
sensor_t **sensors;
network_t network_usage;
};
Sys_Info *
system_info_all_get(void);
void
system_info_all_free(Sys_Info *);
int
system_cpu_online_count_get();
cpu_core_t **
system_cpu_usage_get(int *ncpu);
cpu_core_t **
system_cpu_usage_delayed_get(int *ncpu, int usecs);
void
system_memory_usage_get(meminfo_t *memory);
void
system_power_state_get(power_t *power);
void
system_network_transfer_get(network_t *usage);
#endif