i3status/src/print_cpu_usage.c

112 lines
3.3 KiB
C
Raw Normal View History

2011-02-26 22:45:12 +00:00
// vim:sw=8:sts=8:ts=8:expandtab
#include <stdlib.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
2012-03-25 18:55:55 +00:00
#include <yajl/yajl_gen.h>
2012-04-08 12:05:47 +00:00
#include <yajl/yajl_version.h>
2011-02-26 22:45:12 +00:00
#if defined(__FreeBSD__) || defined(__OpenBSD__)
#include <sys/param.h>
2011-07-24 01:36:33 +00:00
#include <sys/types.h>
#include <sys/sysctl.h>
#include <sys/dkstat.h>
#endif
2012-11-14 01:29:55 +00:00
#if defined(__DragonFly__)
#include <sys/param.h>
#include <sys/types.h>
#include <sys/sysctl.h>
#include <sys/resource.h>
#endif
2013-10-06 18:13:29 +00:00
#if defined(__NetBSD__)
#include <sys/param.h>
#include <sys/resource.h>
#include <sys/sysctl.h>
#include <sys/sched.h>
#endif
2011-02-26 22:45:12 +00:00
#include "i3status.h"
static int prev_total = 0;
static int prev_idle = 0;
/*
* Reads the CPU utilization from /proc/stat and returns the usage as a
* percentage.
*
*/
2012-03-25 18:55:55 +00:00
void print_cpu_usage(yajl_gen json_gen, char *buffer, const char *format) {
2011-02-26 22:45:12 +00:00
const char *walk;
2012-03-25 18:55:55 +00:00
char *outwalk = buffer;
2011-02-26 22:45:12 +00:00
char buf[1024];
int curr_user = 0, curr_nice = 0, curr_system = 0, curr_idle = 0, curr_total;
2011-02-26 22:45:12 +00:00
int diff_idle, diff_total, diff_usage;
#if defined(LINUX)
static char statpath[512];
strcpy(statpath, "/proc/stat");
if (!slurp(statpath, buf, sizeof(buf)) ||
sscanf(buf, "cpu %d %d %d %d", &curr_user, &curr_nice, &curr_system, &curr_idle) != 4)
2011-08-25 21:24:06 +00:00
goto error;
2011-02-26 22:45:12 +00:00
curr_total = curr_user + curr_nice + curr_system + curr_idle;
diff_idle = curr_idle - prev_idle;
diff_total = curr_total - prev_total;
diff_usage = (diff_total ? (1000 * (diff_total - diff_idle)/diff_total + 5)/10 : 0);
2011-02-26 22:45:12 +00:00
prev_total = curr_total;
prev_idle = curr_idle;
2013-10-06 18:13:29 +00:00
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
2013-10-06 18:13:29 +00:00
#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__)
2011-07-24 01:36:33 +00:00
size_t size;
long cp_time[CPUSTATES];
size = sizeof cp_time;
2011-08-25 21:24:06 +00:00
if (sysctlbyname("kern.cp_time", &cp_time, &size, NULL, 0) < 0)
goto error;
#else
/* This information is taken from the boot cpu, any other cpus are currently ignored. */
long cp_time[CPUSTATES];
int mib[2];
size_t size = sizeof(cp_time);
mib[0] = CTL_KERN;
mib[1] = KERN_CPTIME;
if (sysctl(mib, 2, cp_time, &size, NULL, 0))
goto error;
#endif
2011-08-25 21:24:06 +00:00
2011-07-24 01:36:33 +00:00
curr_user = cp_time[CP_USER];
curr_nice = cp_time[CP_NICE];
curr_system = cp_time[CP_SYS];
curr_idle = cp_time[CP_IDLE];
curr_total = curr_user + curr_nice + curr_system + curr_idle;
diff_idle = curr_idle - prev_idle;
diff_total = curr_total - prev_total;
diff_usage = (diff_total ? (1000 * (diff_total - diff_idle)/diff_total + 5)/10 : 0);
2011-07-24 01:36:33 +00:00
prev_total = curr_total;
prev_idle = curr_idle;
2011-08-25 21:24:06 +00:00
#else
goto error;
2011-02-26 22:45:12 +00:00
#endif
for (walk = format; *walk != '\0'; walk++) {
if (*walk != '%') {
2012-03-25 18:55:55 +00:00
*(outwalk++) = *walk;
2011-02-26 22:45:12 +00:00
continue;
}
if (BEGINS_WITH(walk+1, "usage")) {
2012-03-25 18:55:55 +00:00
outwalk += sprintf(outwalk, "%02d%%", diff_usage);
2011-02-26 22:45:12 +00:00
walk += strlen("usage");
}
}
2012-03-25 18:55:55 +00:00
OUTPUT_FULL_TEXT(buffer);
2011-08-25 21:24:06 +00:00
return;
error:
OUTPUT_FULL_TEXT("cant read cpu usage");
(void)fputs("i3status: Cannot read CPU usage\n", stderr);
2011-02-26 22:45:12 +00:00
}