X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/6a0ae11abcad62016a82bd4afe0bbbb01312ddc4..688e2e783d5d129a63c7b89390f14d5642988452:/slstatus.c?ds=sidebyside diff --git a/slstatus.c b/slstatus.c index 4f2a2fe..64f7eab 100644 --- a/slstatus.c +++ b/slstatus.c @@ -1,365 +1,838 @@ /* See LICENSE file for copyright and license details. */ -/* global libraries */ -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include #include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include -/* local libraries */ +#include "extern/arg.h" + +struct arg { + char *(*func)(); + const char *fmt; + const char *args; +}; + +static char *smprintf(const char *fmt, ...); +static char *battery_perc(const char *bat); +static char *battery_state(const char *bat); +static char *cpu_perc(void); +static char *datetime(const char *fmt); +static char *disk_free(const char *mnt); +static char *disk_perc(const char *mnt); +static char *disk_total(const char *mnt); +static char *disk_used(const char *mnt); +static char *entropy(void); +static char *gid(void); +static char *hostname(void); +static char *ip(const char *iface); +static char *kernel_release(void); +static char *load_avg(void); +static char *ram_free(void); +static char *ram_perc(void); +static char *ram_used(void); +static char *ram_total(void); +static char *run_command(const char *cmd); +static char *swap_free(void); +static char *swap_perc(void); +static char *swap_used(void); +static char *swap_total(void); +static char *temp(const char *file); +static char *uid(void); +static char *uptime(void); +static char *username(void); +static char *vol_perc(const char *card); +static char *wifi_perc(const char *iface); +static char *wifi_essid(const char *iface); +static void sighandler(const int signo); +static void usage(const int eval); + +char *argv0; +static unsigned short int delay = 0; +static unsigned short int done; +static unsigned short int dflag, oflag; +static Display *dpy; + #include "config.h" -/* functions */ -void setstatus(char *str); -char *smprintf(char *fmt, ...); -char *get_battery(); -char *get_cpu_temperature(); -char *get_cpu_usage(); -char *get_datetime(); -char *get_ram_usage(); -char *get_volume(); -char *get_wifi_signal(); - -/* global variables */ -static Display *dpy; +static char * +smprintf(const char *fmt, ...) +{ + va_list ap; + char *ret; + int len; + + va_start(ap, fmt); + len = vsnprintf(NULL, 0, fmt, ap); + va_end(ap); + + ret = malloc(++len); + if (ret == NULL) { + err(1, "malloc"); + } -/* set statusbar (WM_NAME) */ -void -setstatus(char *str) + va_start(ap, fmt); + vsnprintf(ret, len, fmt, ap); + va_end(ap); + + return ret; +} + +static char * +battery_perc(const char *bat) { - XStoreName(dpy, DefaultRootWindow(dpy), str); - XSync(dpy, False); + int perc; + char path[PATH_MAX]; + FILE *fp; + + snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/capacity"); + fp = fopen(path, "r"); + if (fp == NULL) { + warn("Failed to open file %s", path); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%i", &perc); + fclose(fp); + + return smprintf("%d%%", perc); } -/* smprintf function */ -char * -smprintf(char *fmt, ...) +static char * +battery_state(const char *bat) { - va_list fmtargs; - char *ret; - int len; + char path[PATH_MAX]; + char state[12]; + FILE *fp; + + snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/status"); + fp = fopen(path, "r"); + if (fp == NULL) { + warn("Failed to open file %s", path); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%12s", state); + fclose(fp); + + if (strcmp(state, "Charging") == 0) { + return smprintf("+"); + } else if (strcmp(state, "Discharging") == 0) { + return smprintf("-"); + } else if (strcmp(state, "Full") == 0) { + return smprintf("="); + } else { + return smprintf("?"); + } +} - va_start(fmtargs, fmt); - len = vsnprintf(NULL, 0, fmt, fmtargs); - va_end(fmtargs); +static char * +cpu_perc(void) +{ + int perc; + long double a[4], b[4]; + FILE *fp; + + fp = fopen("/proc/stat", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/stat"); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]); + fclose(fp); + + delay++; + sleep(delay); + + fp = fopen("/proc/stat", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/stat"); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]); + fclose(fp); + + 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])); + return smprintf("%d%%", perc); +} - ret = malloc(++len); - if (ret == NULL) { - fprintf(stderr, "Malloc error."); - exit(1); - } +static char * +datetime(const char *fmt) +{ + time_t t; + char str[80]; - va_start(fmtargs, fmt); - vsnprintf(ret, len, fmt, fmtargs); - va_end(fmtargs); + t = time(NULL); + if (strftime(str, sizeof(str), fmt, localtime(&t)) == 0) { + return smprintf("%s", UNKNOWN_STR); + } - return ret; + return smprintf("%s", str); } -/* battery percentage */ -char * -get_battery() +static char * +disk_free(const char *mnt) { - int battery_now, battery_full, battery_perc; - FILE *fp; + struct statvfs fs; + + if (statvfs(mnt, &fs) < 0) { + warn("Failed to get filesystem info"); + return smprintf("%s", UNKNOWN_STR); + } - /* open battery now file */ - if (!(fp = fopen(batterynowfile, "r"))) { - fprintf(stderr, "Error opening battery file."); - exit(1); - } + return smprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024); +} - /* read value */ - fscanf(fp, "%i", &battery_now); +static char * +disk_perc(const char *mnt) +{ + int perc; + struct statvfs fs; - /* close battery now file */ - fclose(fp); + if (statvfs(mnt, &fs) < 0) { + warn("Failed to get filesystem info"); + return smprintf("%s", UNKNOWN_STR); + } - /* open battery full file */ - if (!(fp = fopen(batteryfullfile, "r"))) { - fprintf(stderr, "Error opening battery file."); - exit(1); - } + perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks)); - /* read value */ - fscanf(fp, "%i", &battery_full); + return smprintf("%d%%", perc); +} - /* close battery full file */ - fclose(fp); +static char * +disk_total(const char *mnt) +{ + struct statvfs fs; - /* calculate percent */ - battery_perc = battery_now / (battery_full / 100); + if (statvfs(mnt, &fs) < 0) { + warn("Failed to get filesystem info"); + return smprintf("%s", UNKNOWN_STR); + } - /* return batt_perc as string */ - return smprintf("%d%%", battery_perc); + return smprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024); } -/* cpu temperature */ -char * -get_cpu_temperature() +static char * +disk_used(const char *mnt) { - int temperature; - FILE *fp; + struct statvfs fs; - /* open temperature file */ - if (!(fp = fopen(tempfile, "r"))) { - fprintf(stderr, "Could not open temperature file.\n"); - exit(1); - } + if (statvfs(mnt, &fs) < 0) { + warn("Failed to get filesystem info"); + return smprintf("%s", UNKNOWN_STR); + } - /* extract temperature */ - fscanf(fp, "%d", &temperature); + return smprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024); +} - /* close temperature file */ - fclose(fp); +static char * +entropy(void) +{ + int num; + FILE *fp; + + fp= fopen("/proc/sys/kernel/random/entropy_avail", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/sys/kernel/random/entropy_avail"); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%d", &num); + fclose(fp); + + return smprintf("%d", num); +} - /* return temperature in degrees */ - return smprintf("%d°C", temperature / 1000); +static char * +gid(void) +{ + return smprintf("%d", getgid()); } -/* cpu percentage */ -char * -get_cpu_usage() +static char * +hostname(void) { - int cpu_perc; - long double a[4], b[4]; - FILE *fp; + char buf[HOST_NAME_MAX]; - /* open stat file */ - if (!(fp = fopen("/proc/stat","r"))) { - fprintf(stderr, "Error opening stat file."); - exit(1); - } + if (gethostname(buf, sizeof(buf)) == -1) { + warn("hostname"); + return smprintf("%s", UNKNOWN_STR); + } - /* read values */ - fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]); + return smprintf("%s", buf); +} - /* close stat file */ - fclose(fp); +static char * +ip(const char *iface) +{ + struct ifaddrs *ifaddr, *ifa; + int s; + char host[NI_MAXHOST]; + + if (getifaddrs(&ifaddr) == -1) { + warn("Failed to get IP address for interface %s", iface); + return smprintf("%s", UNKNOWN_STR); + } + + for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) { + if (ifa->ifa_addr == NULL) { + continue; + } + s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST); + if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) { + if (s != 0) { + warnx("Failed to get IP address for interface %s", iface); + return smprintf("%s", UNKNOWN_STR); + } + return smprintf("%s", host); + } + } + + freeifaddrs(ifaddr); + + return smprintf("%s", UNKNOWN_STR); +} + +static char * +kernel_release(void) +{ + struct utsname udata; + + if (uname(&udata) < 0) { + return smprintf(UNKNOWN_STR); + } + + return smprintf("%s", udata.release); +} + +static char * +load_avg(void) +{ + double avgs[3]; + + if (getloadavg(avgs, 3) < 0) { + warnx("Failed to get the load avg"); + return smprintf("%s", UNKNOWN_STR); + } + + return smprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]); +} - /* wait a second (for avg values) */ - sleep(1); +static char * +ram_free(void) +{ + long free; + FILE *fp; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "MemFree: %ld kB\n", &free); + fclose(fp); + + return smprintf("%f", (float)free / 1024 / 1024); +} - /* open stat file */ - if (!(fp = fopen("/proc/stat","r"))) { - fprintf(stderr, "Error opening stat file."); - exit(1); - } +static char * +ram_perc(void) +{ + long total, free, buffers, cached; + FILE *fp; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + 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); + fclose(fp); + + return smprintf("%d%%", 100 * ((total - free) - (buffers + cached)) / total); +} - /* read values */ - fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]); +static char * +ram_total(void) +{ + long total; + FILE *fp; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "MemTotal: %ld kB\n", &total); + fclose(fp); + + return smprintf("%f", (float)total / 1024 / 1024); +} - /* close stat file */ - fclose(fp); +static char * +ram_used(void) +{ + long free, total, buffers, cached; + FILE *fp; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + 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); + fclose(fp); + + return smprintf("%f", (float)(total - free - buffers - cached) / 1024 / 1024); +} - /* calculate avg in this second */ - cpu_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])); +static char * +run_command(const char *cmd) +{ + char *nlptr; + FILE *fp; + char buf[1024] = UNKNOWN_STR; + + fp = popen(cmd, "r"); + if (fp == NULL) { + warn("Failed to get command output for %s", cmd); + return smprintf("%s", UNKNOWN_STR); + } + fgets(buf, sizeof(buf), fp); + pclose(fp); + buf[sizeof(buf)] = '\0'; + + if ((nlptr = strstr(buf, "\n")) != NULL) { + nlptr[0] = '\0'; + } + + return smprintf("%s", buf); +} - /* return cpu_perc as string */ - return smprintf("%d%%", cpu_perc); -} - -/* date and time */ -char * -get_datetime() +static char * +swap_free(void) { - time_t tm; - size_t bufsize = 19; - char *buf = malloc(bufsize); - - /* get time in format */ - time(&tm); - if(!strftime(buf, bufsize, timeformat, localtime(&tm))) { - fprintf(stderr, "Strftime failed.\n"); - exit(1); - } - - /* return time */ - return buf; -} - -/* ram percentage */ -char * -get_ram_usage() -{ - int ram_perc; - long total, free, buffers, cached; - FILE *fp; - - /* open meminfo file */ - if (!(fp = fopen("/proc/meminfo", "r"))) { - fprintf(stderr, "Error opening meminfo file."); - exit(1); - } - - /* 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); - - /* close meminfo file */ - fclose(fp); - - /* calculate percentage */ - ram_perc = 100 * ((total - free) - (buffers + cached)) / total; - - /* return ram_perc as string */ - return smprintf("%d%%",ram_perc); -} - -/* alsa volume percentage */ -char * -get_volume() -{ - 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); -} - -/* wifi percentage */ -char * -get_wifi_signal() -{ - 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."); - exit(1); - } - - /* read the status */ - fgets(status, 5, fp); - - /* close wifi file */ - fclose(fp); - - /* check if interface down */ - if(strcmp(status, "up\n") != 0){ - return "n/a"; - } - - /* open wifi file */ - if (!(fp = fopen("/proc/net/wireless", "r"))) { - fprintf(stderr, "Error opening wireless file."); - exit(1); - } - - /* 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); -} - -/* main function */ + long total, free; + FILE *fp; + char buf[2048]; + size_t bytes_read; + char *match; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + + if ((bytes_read = fread(buf, sizeof(char), sizeof(buf), fp)) == 0) { + warn("swap_free: read error"); + fclose(fp); + return smprintf("%s", UNKNOWN_STR); + } + + buf[bytes_read] = '\0'; + fclose(fp); + + if ((match = strstr(buf, "SwapTotal")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapTotal: %ld kB\n", &total); + + if ((match = strstr(buf, "SwapFree")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapFree: %ld kB\n", &free); + + return smprintf("%f", (float)free / 1024 / 1024); +} + +static char * +swap_perc(void) +{ + long total, free, cached; + FILE *fp; + char buf[2048]; + size_t bytes_read; + char *match; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + + if ((bytes_read = fread(buf, sizeof(char), sizeof(buf), fp)) == 0) { + warn("swap_perc: read error"); + fclose(fp); + return smprintf("%s", UNKNOWN_STR); + } + + buf[bytes_read] = '\0'; + fclose(fp); + + if ((match = strstr(buf, "SwapTotal")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapTotal: %ld kB\n", &total); + + if ((match = strstr(buf, "SwapCached")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapCached: %ld kB\n", &cached); + + if ((match = strstr(buf, "SwapFree")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapFree: %ld kB\n", &free); + + return smprintf("%d%%", 100 * (total - free - cached) / total); +} + +static char * +swap_total(void) +{ + long total; + FILE *fp; + char buf[2048]; + size_t bytes_read; + char *match; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + if ((bytes_read = fread(buf, sizeof(char), sizeof(buf), fp)) == 0) { + warn("swap_total: read error"); + fclose(fp); + return smprintf("%s", UNKNOWN_STR); + } + + buf[bytes_read] = '\0'; + fclose(fp); + + if ((match = strstr(buf, "SwapTotal")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapTotal: %ld kB\n", &total); + + return smprintf("%f", (float)total / 1024 / 1024); +} + +static char * +swap_used(void) +{ + long total, free, cached; + FILE *fp; + char buf[2048]; + size_t bytes_read; + char *match; + + fp = fopen("/proc/meminfo", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/meminfo"); + return smprintf("%s", UNKNOWN_STR); + } + if ((bytes_read = fread(buf, sizeof(char), sizeof(buf), fp)) == 0) { + warn("swap_used: read error"); + fclose(fp); + return smprintf("%s", UNKNOWN_STR); + } + + buf[bytes_read] = '\0'; + fclose(fp); + + if ((match = strstr(buf, "SwapTotal")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapTotal: %ld kB\n", &total); + + if ((match = strstr(buf, "SwapCached")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapCached: %ld kB\n", &cached); + + if ((match = strstr(buf, "SwapFree")) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + sscanf(match, "SwapFree: %ld kB\n", &free); + + return smprintf("%f", (float)(total - free - cached) / 1024 / 1024); +} + +static char * +temp(const char *file) +{ + int temp; + FILE *fp; + + fp = fopen(file, "r"); + if (fp == NULL) { + warn("Failed to open file %s", file); + return smprintf("%s", UNKNOWN_STR); + } + fscanf(fp, "%d", &temp); + fclose(fp); + + return smprintf("%d°C", temp / 1000); +} + +static char * +uptime(void) +{ + struct sysinfo info; + int h = 0; + int m = 0; + + sysinfo(&info); + h = info.uptime / 3600; + m = (info.uptime - h * 3600 ) / 60; + + return smprintf("%dh %dm", h, m); +} + +static char * +username(void) +{ + uid_t uid = geteuid(); + struct passwd *pw = getpwuid(uid); + + if (pw == NULL) { + warn("Failed to get username"); + return smprintf("%s", UNKNOWN_STR); + } + + return smprintf("%s", pw->pw_name); +} + +static char * +uid(void) +{ + return smprintf("%d", geteuid()); +} + + +static char * +vol_perc(const char *card) +{ + unsigned int i; + int v, afd, devmask; + char *vnames[] = SOUND_DEVICE_NAMES; + + afd = open(card, O_RDONLY); + if (afd < 0) { + warn("Cannot open %s", card); + return smprintf(UNKNOWN_STR); + } + + ioctl(afd, MIXER_READ(SOUND_MIXER_DEVMASK), &devmask); + for (i = 0; i < (sizeof(vnames) / sizeof((vnames[0]))); i++) { + if (devmask & (1 << i)) { + if (!strcmp("vol", vnames[i])) { + ioctl(afd, MIXER_READ(i), &v); + } + } + } + + close(afd); + if (v == 0) { + return smprintf("mute"); + } + return smprintf("%d%%", v & 0xff); +} + +static char * +wifi_perc(const char *iface) +{ + int perc; + char buf[255]; + char *datastart; + char path[PATH_MAX]; + char status[5]; + FILE *fp; + + snprintf(path, sizeof(path), "%s%s%s", "/sys/class/net/", iface, "/operstate"); + fp = fopen(path, "r"); + if (fp == NULL) { + warn("Failed to open file %s", path); + return smprintf("%s", UNKNOWN_STR); + } + fgets(status, 5, fp); + fclose(fp); + if(strcmp(status, "up\n") != 0) { + return smprintf("%s", UNKNOWN_STR); + } + + fp = fopen("/proc/net/wireless", "r"); + if (fp == NULL) { + warn("Failed to open file /proc/net/wireless"); + return smprintf("%s", UNKNOWN_STR); + } + + fgets(buf, sizeof(buf), fp); + fgets(buf, sizeof(buf), fp); + fgets(buf, sizeof(buf), fp); + fclose(fp); + + if ((datastart = strstr(buf, iface)) == NULL) { + return smprintf("%s", UNKNOWN_STR); + } + datastart = (datastart+(strlen(iface)+1)); + sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &perc); + + return smprintf("%d%%", perc); +} + +static char * +wifi_essid(const char *iface) +{ + char id[IW_ESSID_MAX_SIZE+1]; + int sockfd = socket(AF_INET, SOCK_DGRAM, 0); + struct iwreq wreq; + + memset(&wreq, 0, sizeof(struct iwreq)); + wreq.u.essid.length = IW_ESSID_MAX_SIZE+1; + snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface); + + if (sockfd == -1) { + warn("Failed to get ESSID for interface %s", iface); + return smprintf("%s", UNKNOWN_STR); + } + wreq.u.essid.pointer = id; + if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) { + warn("Failed to get ESSID for interface %s", iface); + return smprintf("%s", UNKNOWN_STR); + } + + close(sockfd); + + if (strcmp((char *)wreq.u.essid.pointer, "") == 0) + return smprintf("%s", UNKNOWN_STR); + else + return smprintf("%s", (char *)wreq.u.essid.pointer); +} + +static void +sighandler(const int signo) +{ + if (signo == SIGTERM || signo == SIGINT) { + done = 1; + } +} + +static void +usage(const int eval) +{ + fprintf(stderr, "usage: %s [-d] [-o] [-v] [-h]\n", argv0); + exit(eval); +} + int -main() -{ - char status[1024]; - char *battery = NULL; - char *cpu_temperature = NULL; - char *cpu_usage = NULL; - char *datetime = NULL; - char *ram_usage = NULL; - char *volume = NULL; - char *wifi_signal = NULL; - - /* open display */ - if (!(dpy = XOpenDisplay(0x0))) { - fprintf(stderr, "Cannot open display!\n"); - exit(1); - } - - /* return status every second */ - for (;;) { - /* assign the values */ - battery = get_battery(); - cpu_temperature = get_cpu_temperature(); - cpu_usage = get_cpu_usage(); - datetime = get_datetime(); - ram_usage = get_ram_usage(); - volume = get_volume(); - wifi_signal = get_wifi_signal(); - - /* return the status */ - sprintf(status, FORMATSTRING, ARGUMENTS); - setstatus(status); - - /* free the values */ - free(battery); - free(cpu_temperature); - free(cpu_usage); - free(datetime); - free(ram_usage); - free(volume); - free(wifi_signal); - } - - /* close display */ - XCloseDisplay(dpy); - - /* exit successfully */ - return 0; +main(int argc, char *argv[]) +{ + unsigned short int i; + char status_string[2048]; + char *res, *element; + struct arg argument; + struct sigaction act; + + ARGBEGIN { + case 'd': + dflag = 1; + break; + case 'o': + oflag = 1; + break; + case 'v': + printf("slstatus (C) 2016-2017 slstatus engineers\n"); + return 0; + case 'h': + usage(0); + default: + usage(1); + } ARGEND + + if (dflag && oflag) { + usage(1); + } + if (dflag && daemon(1, 1) < 0) { + err(1, "daemon"); + } + + memset(&act, 0, sizeof(act)); + act.sa_handler = sighandler; + sigaction(SIGINT, &act, 0); + sigaction(SIGTERM, &act, 0); + + if (!oflag) { + dpy = XOpenDisplay(NULL); + } + + setlocale(LC_ALL, ""); + + while (!done) { + status_string[0] = '\0'; + + for (i = 0; i < sizeof(args) / sizeof(args[0]); ++i) { + argument = args[i]; + if (argument.args == NULL) { + res = argument.func(); + } else { + res = argument.func(argument.args); + } + element = smprintf(argument.fmt, res); + if (element == NULL) { + element = smprintf("%s", UNKNOWN_STR); + warnx("Failed to format output"); + } + strncat(status_string, element, sizeof(status_string) - strlen(status_string) - 1); + free(res); + free(element); + } + + if (!oflag) { + XStoreName(dpy, DefaultRootWindow(dpy), status_string); + XSync(dpy, False); + } else { + printf("%s\n", status_string); + } + + if ((UPDATE_INTERVAL - delay) <= 0) { + delay = 0; + continue; + } else { + sleep(UPDATE_INTERVAL - delay); + delay = 0; + } + } + + if (!oflag) { + XStoreName(dpy, DefaultRootWindow(dpy), NULL); + XCloseDisplay(dpy); + } + + return 0; }