slstatus/slstatus.c

421 lines
9.6 KiB
C
Raw Normal View History

2016-03-04 17:07:42 +00:00
/* See LICENSE file for copyright and license details. */
2016-03-07 09:00:02 +00:00
/* global libraries */
2016-03-04 17:07:42 +00:00
#include <alsa/asoundlib.h>
#include <fcntl.h>
#include <locale.h>
2016-03-04 17:07:42 +00:00
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/statvfs.h>
2016-03-04 17:07:42 +00:00
#include <time.h>
#include <unistd.h>
#include <X11/Xlib.h>
2016-03-07 09:00:02 +00:00
/* local libraries */
2016-03-04 17:07:42 +00:00
#include "config.h"
/* check file macro */
#define CHECK_FILE(X,Y) do { \
if (stat(X,&Y) < 0) return -1; \
if (!S_ISREG(Y.st_mode)) return -1; \
} while (0);
2016-03-07 09:00:02 +00:00
/* functions */
int config_check();
void setstatus(char *str);
2016-03-09 15:30:52 +00:00
char *smprintf(char *fmt, ...);
2016-03-09 10:21:35 +00:00
char *get_battery();
char *get_cpu_temperature();
char *get_cpu_usage();
char *get_datetime();
char *get_diskusage();
2016-03-09 10:21:35 +00:00
char *get_ram_usage();
char *get_volume();
char *get_wifi_signal();
2016-03-04 17:07:42 +00:00
2016-03-07 09:00:02 +00:00
/* global variables */
2016-03-04 17:07:42 +00:00
static Display *dpy;
/* check configured paths */
int
config_check()
{
struct stat fs;
/* check all files in the config.h file */
CHECK_FILE(batterynowfile, fs);
CHECK_FILE(batteryfullfile, fs);
CHECK_FILE(tempfile, fs);
/* check update interval */
if (update_interval < 1)
return -1;
/* exit successfully */
return 0;
}
2016-03-07 09:00:02 +00:00
/* set statusbar (WM_NAME) */
void
setstatus(char *str)
{
XStoreName(dpy, DefaultRootWindow(dpy), str);
XSync(dpy, False);
2016-03-07 09:00:02 +00:00
}
2016-03-09 15:30:52 +00:00
/* smprintf function */
char *
smprintf(char *fmt, ...)
{
va_list fmtargs;
2016-03-10 10:49:48 +00:00
char *ret = NULL;
2016-03-09 15:30:52 +00:00
va_start(fmtargs, fmt);
2016-03-10 10:49:48 +00:00
if (vasprintf(&ret, fmt, fmtargs) < 0)
return NULL;
2016-03-09 15:30:52 +00:00
va_end(fmtargs);
return ret;
}
2016-03-07 09:00:02 +00:00
/* battery percentage */
char *
2016-03-09 10:21:35 +00:00
get_battery()
2016-03-07 09:00:02 +00:00
{
2016-03-10 07:37:20 +00:00
int now, full, perc;
FILE *fp;
2016-03-07 09:00:02 +00:00
/* open battery now file */
if (!(fp = fopen(batterynowfile, "r"))) {
fprintf(stderr, "Error opening battery file.");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* read value */
2016-03-10 07:37:20 +00:00
fscanf(fp, "%i", &now);
2016-03-07 09:00:02 +00:00
/* close battery now file */
fclose(fp);
2016-03-08 17:39:18 +00:00
/* open battery full file */
if (!(fp = fopen(batteryfullfile, "r"))) {
fprintf(stderr, "Error opening battery file.");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* read value */
2016-03-10 07:37:20 +00:00
fscanf(fp, "%i", &full);
2016-03-07 09:00:02 +00:00
/* close battery full file */
fclose(fp);
2016-03-07 09:00:02 +00:00
/* calculate percent */
2016-03-10 07:37:20 +00:00
perc = now / (full / 100);
2016-03-07 09:00:02 +00:00
2016-03-10 07:37:20 +00:00
/* return perc as string */
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
/* cpu temperature */
char *
2016-03-09 10:21:35 +00:00
get_cpu_temperature()
2016-03-07 09:00:02 +00:00
{
int temperature;
FILE *fp;
2016-03-07 09:00:02 +00:00
/* open temperature file */
if (!(fp = fopen(tempfile, "r"))) {
fprintf(stderr, "Could not open temperature file.\n");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* extract temperature */
fscanf(fp, "%d", &temperature);
2016-03-07 09:00:02 +00:00
/* close temperature file */
fclose(fp);
2016-03-07 09:00:02 +00:00
/* return temperature in degrees */
return smprintf("%d°C", temperature / 1000);
2016-03-07 09:00:02 +00:00
}
/* cpu percentage */
char *
2016-03-09 10:21:35 +00:00
get_cpu_usage()
2016-03-07 09:00:02 +00:00
{
2016-03-10 07:37:20 +00:00
int perc;
long double a[4], b[4];
FILE *fp;
2016-03-07 09:00:02 +00:00
/* open stat file */
if (!(fp = fopen("/proc/stat","r"))) {
fprintf(stderr, "Error opening stat file.");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* read values */
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
2016-03-07 09:00:02 +00:00
/* close stat file */
fclose(fp);
2016-03-07 09:00:02 +00:00
/* wait a second (for avg values) */
sleep(1);
2016-03-07 09:00:02 +00:00
/* open stat file */
if (!(fp = fopen("/proc/stat","r"))) {
fprintf(stderr, "Error opening stat file.");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* read values */
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
2016-03-07 09:00:02 +00:00
/* close stat file */
fclose(fp);
2016-03-07 09:00:02 +00:00
/* calculate avg in this second */
2016-03-10 07:37:20 +00:00
perc = 100 * ((b[0]+b[1]+b[2]) - (a[0]+a[1]+a[2])) / ((b[0]+b[1]+b[2]+b[3]) - (a[0]+a[1]+a[2]+a[3]));
2016-03-07 09:00:02 +00:00
2016-03-10 07:37:20 +00:00
/* return perc as string */
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
/* date and time */
char *
2016-03-09 10:21:35 +00:00
get_datetime()
2016-03-07 09:00:02 +00:00
{
time_t tm;
size_t bufsize = 64;
char *buf = malloc(bufsize);
/* get time in format */
time(&tm);
setlocale(LC_TIME, "");
if(!strftime(buf, bufsize, timeformat, localtime(&tm))) {
setlocale(LC_TIME, "C");
fprintf(stderr, "Strftime failed.\n");
return smprintf("n/a");
}
setlocale(LC_TIME, "C");
/* return time */
2016-03-10 07:37:20 +00:00
return smprintf("%s", buf);
2016-03-07 09:00:02 +00:00
}
/* disk usage percentage */
char *
get_diskusage()
{
2016-03-11 12:11:15 +00:00
int perc = 0;
struct statvfs fs;
2016-03-11 12:15:17 +00:00
2016-03-11 12:11:15 +00:00
/* try to open mountpoint */
if (statvfs(mountpath, &fs) < 0) {
fprintf(stderr, "Could not get filesystem info.\n");
return smprintf("n/a");
}
2016-03-11 12:11:15 +00:00
/* calculate percent */
perc = 100 * (1.0f - ((float)fs.f_bavail / (float)fs.f_blocks));
/* return perc */
return smprintf("%d%%", perc);
}
2016-03-07 09:00:02 +00:00
/* ram percentage */
char *
2016-03-09 10:21:35 +00:00
get_ram_usage()
2016-03-07 09:00:02 +00:00
{
2016-03-10 07:37:20 +00:00
int perc;
long total, free, buffers, cached;
FILE *fp;
2016-03-07 09:00:02 +00:00
/* open meminfo file */
if (!(fp = fopen("/proc/meminfo", "r"))) {
fprintf(stderr, "Error opening meminfo file.");
return smprintf("n/a");
}
2016-03-07 09:00:02 +00:00
/* read the values */
fscanf(fp, "MemTotal: %ld kB\n", &total);
fscanf(fp, "MemFree: %ld kB\n", &free);
fscanf(fp, "MemAvailable: %ld kB\nBuffers: %ld kB\n", &buffers, &buffers);
fscanf(fp, "Cached: %ld kB\n", &cached);
2016-03-07 09:00:02 +00:00
/* close meminfo file */
fclose(fp);
2016-03-07 09:00:02 +00:00
/* calculate percentage */
2016-03-10 07:37:20 +00:00
perc = 100 * ((total - free) - (buffers + cached)) / total;
2016-03-07 09:00:02 +00:00
2016-03-10 07:37:20 +00:00
/* return perc as string */
return smprintf("%d%%", perc);
2016-03-07 09:00:02 +00:00
}
2016-03-04 17:07:42 +00:00
/* alsa volume percentage */
char *
2016-03-09 10:21:35 +00:00
get_volume()
2016-03-04 17:07:42 +00:00
{
int mute = 0;
long vol = 0, max = 0, min = 0;
/* get volume from alsa */
snd_mixer_t *handle;
snd_mixer_elem_t *pcm_mixer, *mas_mixer;
snd_mixer_selem_id_t *vol_info, *mute_info;
snd_mixer_open(&handle, 0);
snd_mixer_attach(handle, soundcard);
snd_mixer_selem_register(handle, NULL, NULL);
snd_mixer_load(handle);
snd_mixer_selem_id_malloc(&vol_info);
snd_mixer_selem_id_malloc(&mute_info);
snd_mixer_selem_id_set_name(vol_info, channel);
snd_mixer_selem_id_set_name(mute_info, channel);
pcm_mixer = snd_mixer_find_selem(handle, vol_info);
mas_mixer = snd_mixer_find_selem(handle, mute_info);
snd_mixer_selem_get_playback_volume_range((snd_mixer_elem_t *)pcm_mixer, &min, &max);
snd_mixer_selem_get_playback_volume((snd_mixer_elem_t *)pcm_mixer, SND_MIXER_SCHN_MONO, &vol);
snd_mixer_selem_get_playback_switch(mas_mixer, SND_MIXER_SCHN_MONO, &mute);
if (vol_info)
snd_mixer_selem_id_free(vol_info);
if (mute_info)
snd_mixer_selem_id_free(mute_info);
if (handle)
snd_mixer_close(handle);
/* return the string (mute) */
if (!mute)
return smprintf("mute");
else
return smprintf("%d%%", (vol * 100) / max);
2016-03-04 17:07:42 +00:00
}
/* wifi percentage */
char *
2016-03-09 10:21:35 +00:00
get_wifi_signal()
2016-03-04 17:07:42 +00:00
{
int bufsize = 255;
int strength;
char buf[bufsize];
char *datastart;
char path_start[16] = "/sys/class/net/";
char path_end[11] = "/operstate";
char path[32];
char status[5];
char needle[sizeof wificard + 1];
FILE *fp;
/* generate the path name */
memset(path, 0, sizeof path);
strcat(path, path_start);
strcat(path, wificard);
strcat(path, path_end);
/* open wifi file */
if(!(fp = fopen(path, "r"))) {
fprintf(stderr, "Error opening wifi operstate file.");
return smprintf("n/a");
}
/* read the status */
fgets(status, 5, fp);
/* close wifi file */
fclose(fp);
/* check if interface down */
if(strcmp(status, "up\n") != 0){
return smprintf("n/a");
}
/* open wifi file */
if (!(fp = fopen("/proc/net/wireless", "r"))) {
fprintf(stderr, "Error opening wireless file.");
return smprintf("n/a");
}
/* extract the signal strength */
strcpy(needle, wificard);
strcat(needle, ":");
fgets(buf, bufsize, fp);
fgets(buf, bufsize, fp);
fgets(buf, bufsize, fp);
if ((datastart = strstr(buf, needle)) != NULL) {
datastart = strstr(buf, ":");
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &strength);
}
/* close wifi file */
fclose(fp);
/* return strength in percent */
return smprintf("%d%%", strength);
2016-03-04 17:07:42 +00:00
}
2016-03-07 09:00:02 +00:00
/* main function */
2016-03-04 17:07:42 +00:00
int
main()
{
char status[1024];
2016-03-09 10:21:35 +00:00
char *battery = NULL;
char *cpu_temperature = NULL;
2016-03-09 15:30:52 +00:00
char *cpu_usage = NULL;
char *datetime = NULL;
char *diskusage = NULL;
2016-03-09 10:21:35 +00:00
char *ram_usage = NULL;
char *volume = NULL;
2016-03-09 15:30:52 +00:00
char *wifi_signal = NULL;
/* check config for sanity */
if (config_check() < 0) {
fprintf(stderr, "Config error, please check paths and interval and recompile!\n");
exit(1);
}
/* open display */
if (!(dpy = XOpenDisplay(0x0))) {
fprintf(stderr, "Cannot open display!\n");
exit(1);
}
/* return status every second */
for (;;) {
2016-03-09 10:21:35 +00:00
/* assign the values */
battery = get_battery();
cpu_temperature = get_cpu_temperature();
2016-03-09 15:30:52 +00:00
cpu_usage = get_cpu_usage();
datetime = get_datetime();
diskusage = get_diskusage();
2016-03-09 10:21:35 +00:00
ram_usage = get_ram_usage();
volume = get_volume();
2016-03-09 15:30:52 +00:00
wifi_signal = get_wifi_signal();
2016-03-09 10:21:35 +00:00
/* return the status */
sprintf(status, FORMATSTRING, ARGUMENTS);
setstatus(status);
2016-03-09 10:21:35 +00:00
/* free the values */
free(battery);
free(cpu_temperature);
2016-03-09 15:30:52 +00:00
free(cpu_usage);
free(datetime);
free(diskusage);
2016-03-09 10:21:35 +00:00
free(ram_usage);
free(volume);
2016-03-09 15:30:52 +00:00
free(wifi_signal);
/* wait, "update_interval - 1" because of get_cpu_usage() which uses 1 second */
sleep(update_interval -1);
}
/* close display */
XCloseDisplay(dpy);
/* exit successfully */
return 0;
2016-03-04 17:07:42 +00:00
}