]> git.sur5r.net Git - i3/i3status/blob - i3status.c
Bugfix: make custom colors configurable for battery (Thanks thomas)
[i3/i3status] / i3status.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3status – Generates a status line for dzen2 or xmobar
5  *
6  * Copyright © 2008-2012 Michael Stapelberg and contributors
7  * Copyright © 2009 Thorsten Toepper <atsutane at freethoughts dot de>
8  * Copyright © 2010 Axel Wagner <mail at merovius dot de>
9  * Copyright © 2010 Fernando Tarlá Cardoso Lemos <fernandotcl at gmail dot com>
10  *
11  * See file LICENSE for license information.
12  *
13  */
14 #include <string.h>
15 #include <stdio.h>
16 #include <stdbool.h>
17 #include <unistd.h>
18 #include <stdlib.h>
19 #include <sys/socket.h>
20 #include <netinet/in.h>
21 #include <getopt.h>
22 #include <signal.h>
23 #include <confuse.h>
24 #include <glob.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <time.h>
28 #include <sys/time.h>
29 #include <locale.h>
30
31 #include <yajl/yajl_gen.h>
32 #include <yajl/yajl_version.h>
33
34 #include "i3status.h"
35
36 #define exit_if_null(pointer, ...) { if (pointer == NULL) die(__VA_ARGS__); }
37
38 #define CFG_COLOR_OPTS(good, degraded, bad) \
39     CFG_STR("color_good", good, CFGF_NONE), \
40     CFG_STR("color_degraded", degraded, CFGF_NONE), \
41     CFG_STR("color_bad", bad, CFGF_NONE)
42
43 #define CFG_CUSTOM_COLOR_OPTS CFG_COLOR_OPTS(NULL, NULL, NULL)
44
45 /* socket file descriptor for general purposes */
46 int general_socket;
47
48 cfg_t *cfg, *cfg_general, *cfg_section;
49
50 /*
51  * Exit upon SIGPIPE because when we have nowhere to write to, gathering
52  * system information is pointless.
53  *
54  */
55 void sigpipe(int signum) {
56         fprintf(stderr, "Received SIGPIPE, exiting\n");
57         exit(1);
58 }
59
60 /*
61  * Checks if the given path exists by calling stat().
62  *
63  */
64 static bool path_exists(const char *path) {
65         struct stat buf;
66         return (stat(path, &buf) == 0);
67 }
68
69 static void *scalloc(size_t size) {
70         void *result = calloc(size, 1);
71         exit_if_null(result, "Error: out of memory (calloc(%zd))\n", size);
72         return result;
73 }
74
75 static char *sstrdup(const char *str) {
76         char *result = strdup(str);
77         exit_if_null(result, "Error: out of memory (strdup())\n");
78         return result;
79 }
80
81
82 /*
83  * Validates a color in "#RRGGBB" format
84  *
85  */
86 static int valid_color(const char *value)
87 {
88         if (strlen(value) != 7) return 0;
89         if (value[0] != '#') return 0;
90         for (int i = 1; i < 7; ++i) {
91                 if (value[i] >= '0' && value[i] <= '9') continue;
92                 if (value[i] >= 'a' && value[i] <= 'f') continue;
93                 if (value[i] >= 'A' && value[i] <= 'F') continue;
94                 return 0;
95         }
96         return 1;
97 }
98
99 /*
100  * This function resolves ~ in pathnames.
101  * It may resolve wildcards in the first part of the path, but if no match
102  * or multiple matches are found, it just returns a copy of path as given.
103  *
104  */
105 static char *resolve_tilde(const char *path) {
106         static glob_t globbuf;
107         char *head, *tail, *result = NULL;
108
109         tail = strchr(path, '/');
110         head = strndup(path, tail ? (size_t)(tail - path) : strlen(path));
111
112         int res = glob(head, GLOB_TILDE, NULL, &globbuf);
113         free(head);
114         /* no match, or many wildcard matches are bad */
115         if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
116                 result = sstrdup(path);
117         else if (res != 0) {
118                 die("glob() failed");
119         } else {
120                 head = globbuf.gl_pathv[0];
121                 result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);
122                 strncpy(result, head, strlen(head));
123                 if (tail)
124                         strncat(result, tail, strlen(tail));
125         }
126         globfree(&globbuf);
127
128         return result;
129 }
130
131 static char *get_config_path(void) {
132         char *xdg_config_home, *xdg_config_dirs, *config_path;
133
134         /* 1: check the traditional path under the home directory */
135         config_path = resolve_tilde("~/.i3status.conf");
136         if (path_exists(config_path))
137                 return config_path;
138
139         /* 2: check for $XDG_CONFIG_HOME/i3status/config */
140         if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)
141                 xdg_config_home = "~/.config";
142
143         xdg_config_home = resolve_tilde(xdg_config_home);
144         if (asprintf(&config_path, "%s/i3status/config", xdg_config_home) == -1)
145                 die("asprintf() failed");
146         free(xdg_config_home);
147
148         if (path_exists(config_path))
149                 return config_path;
150         free(config_path);
151
152         /* 3: check the traditional path under /etc */
153         config_path = SYSCONFDIR "/i3status.conf";
154         if (path_exists(config_path))
155             return sstrdup(config_path);
156
157         /* 4: check for $XDG_CONFIG_DIRS/i3status/config */
158         if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)
159                 xdg_config_dirs = "/etc/xdg";
160
161         char *buf = strdup(xdg_config_dirs);
162         char *tok = strtok(buf, ":");
163         while (tok != NULL) {
164                 tok = resolve_tilde(tok);
165                 if (asprintf(&config_path, "%s/i3status/config", tok) == -1)
166                         die("asprintf() failed");
167                 free(tok);
168                 if (path_exists(config_path)) {
169                         free(buf);
170                         return config_path;
171                 }
172                 free(config_path);
173                 tok = strtok(NULL, ":");
174         }
175         free(buf);
176
177         die("Unable to find the configuration file (looked at "
178                 "~/.i3status.conf, $XDG_CONFIG_HOME/i3status/config, "
179                 "/etc/i3status.conf and $XDG_CONFIG_DIRS/i3status/config)");
180         return NULL;
181 }
182
183 int main(int argc, char *argv[]) {
184         unsigned int j;
185
186         cfg_opt_t general_opts[] = {
187                 CFG_STR("output_format", "auto", CFGF_NONE),
188                 CFG_BOOL("colors", 1, CFGF_NONE),
189                 CFG_STR("color_separator", "#333333", CFGF_NONE),
190                 CFG_INT("interval", 1, CFGF_NONE),
191                 CFG_COLOR_OPTS("#00FF00", "#FFFF00", "#FF0000"),
192                 CFG_END()
193         };
194
195         cfg_opt_t run_watch_opts[] = {
196                 CFG_STR("pidfile", NULL, CFGF_NONE),
197                 CFG_STR("format", "%title: %status", CFGF_NONE),
198                 CFG_CUSTOM_COLOR_OPTS,
199                 CFG_END()
200         };
201
202         cfg_opt_t wireless_opts[] = {
203                 CFG_STR("format_up", "W: (%quality at %essid, %bitrate) %ip", CFGF_NONE),
204                 CFG_STR("format_down", "W: down", CFGF_NONE),
205                 CFG_CUSTOM_COLOR_OPTS,
206                 CFG_END()
207         };
208
209         cfg_opt_t ethernet_opts[] = {
210                 CFG_STR("format_up", "E: %ip (%speed)", CFGF_NONE),
211                 CFG_STR("format_down", "E: down", CFGF_NONE),
212                 CFG_CUSTOM_COLOR_OPTS,
213                 CFG_END()
214         };
215
216         cfg_opt_t ipv6_opts[] = {
217                 CFG_STR("format_up", "%ip", CFGF_NONE),
218                 CFG_STR("format_down", "no IPv6", CFGF_NONE),
219                 CFG_CUSTOM_COLOR_OPTS,
220                 CFG_END()
221         };
222
223         cfg_opt_t battery_opts[] = {
224                 CFG_STR("format", "%status %percentage %remaining", CFGF_NONE),
225                 CFG_STR("path", "/sys/class/power_supply/BAT%d/uevent", CFGF_NONE),
226                 CFG_INT("low_threshold", 30, CFGF_NONE),
227                 CFG_STR("threshold_type", "time", CFGF_NONE),
228                 CFG_BOOL("last_full_capacity", false, CFGF_NONE),
229                 CFG_CUSTOM_COLOR_OPTS,
230                 CFG_END()
231         };
232
233         cfg_opt_t time_opts[] = {
234                 CFG_STR("format", "%d.%m.%Y %H:%M:%S", CFGF_NONE),
235                 CFG_END()
236         };
237
238         cfg_opt_t ddate_opts[] = {
239                 CFG_STR("format", "%{%a, %b %d%}, %Y%N - %H", CFGF_NONE),
240                 CFG_END()
241         };
242
243         cfg_opt_t load_opts[] = {
244                 CFG_STR("format", "%1min %5min %15min", CFGF_NONE),
245                 CFG_END()
246         };
247
248         cfg_opt_t usage_opts[] = {
249                 CFG_STR("format", "%usage", CFGF_NONE),
250                 CFG_END()
251         };
252
253         cfg_opt_t temp_opts[] = {
254                 CFG_STR("format", "%degrees C", CFGF_NONE),
255                 CFG_STR("path", NULL, CFGF_NONE),
256                 CFG_INT("max_threshold", 75, CFGF_NONE),
257                 CFG_CUSTOM_COLOR_OPTS,
258                 CFG_END()
259         };
260
261         cfg_opt_t disk_opts[] = {
262                 CFG_STR("format", "%free", CFGF_NONE),
263                 CFG_END()
264         };
265
266         cfg_opt_t volume_opts[] = {
267                 CFG_STR("format", "♪: %volume", CFGF_NONE),
268                 CFG_STR("device", "default", CFGF_NONE),
269                 CFG_STR("mixer", "Master", CFGF_NONE),
270                 CFG_INT("mixer_idx", 0, CFGF_NONE),
271                 CFG_CUSTOM_COLOR_OPTS,
272                 CFG_END()
273         };
274
275         cfg_opt_t opts[] = {
276                 CFG_STR_LIST("order", "{}", CFGF_NONE),
277                 CFG_SEC("general", general_opts, CFGF_NONE),
278                 CFG_SEC("run_watch", run_watch_opts, CFGF_TITLE | CFGF_MULTI),
279                 CFG_SEC("wireless", wireless_opts, CFGF_TITLE | CFGF_MULTI),
280                 CFG_SEC("ethernet", ethernet_opts, CFGF_TITLE | CFGF_MULTI),
281                 CFG_SEC("battery", battery_opts, CFGF_TITLE | CFGF_MULTI),
282                 CFG_SEC("cpu_temperature", temp_opts, CFGF_TITLE | CFGF_MULTI),
283                 CFG_SEC("disk", disk_opts, CFGF_TITLE | CFGF_MULTI),
284                 CFG_SEC("volume", volume_opts, CFGF_TITLE | CFGF_MULTI),
285                 CFG_SEC("ipv6", ipv6_opts, CFGF_NONE),
286                 CFG_SEC("time", time_opts, CFGF_NONE),
287                 CFG_SEC("ddate", ddate_opts, CFGF_NONE),
288                 CFG_SEC("load", load_opts, CFGF_NONE),
289                 CFG_SEC("cpu_usage", usage_opts, CFGF_NONE),
290                 CFG_CUSTOM_COLOR_OPTS,
291                 CFG_END()
292         };
293
294         char *configfile = NULL;
295         int o, option_index = 0;
296         struct option long_options[] = {
297                 {"config", required_argument, 0, 'c'},
298                 {"help", no_argument, 0, 'h'},
299                 {"version", no_argument, 0, 'v'},
300                 {0, 0, 0, 0}
301         };
302
303         struct sigaction action;
304         memset(&action, 0, sizeof(struct sigaction));
305         action.sa_handler = sigpipe;
306         sigaction(SIGPIPE, &action, NULL);
307
308         if (setlocale(LC_ALL, "") == NULL)
309                 die("Could not set locale. Please make sure all your LC_* / LANG settings are correct.");
310
311         while ((o = getopt_long(argc, argv, "c:hv", long_options, &option_index)) != -1)
312                 if ((char)o == 'c')
313                         configfile = optarg;
314                 else if ((char)o == 'h') {
315                         printf("i3status " VERSION " © 2008-2012 Michael Stapelberg and contributors\n"
316                                 "Syntax: %s [-c <configfile>] [-h] [-v]\n", argv[0]);
317                         return 0;
318                 } else if ((char)o == 'v') {
319                         printf("i3status " VERSION " © 2008-2012 Michael Stapelberg and contributors\n");
320                         return 0;
321                 }
322
323
324         if (configfile == NULL)
325                 configfile = get_config_path();
326
327         cfg = cfg_init(opts, CFGF_NOCASE);
328         if (cfg_parse(cfg, configfile) == CFG_PARSE_ERROR)
329                 return EXIT_FAILURE;
330
331         if (cfg_size(cfg, "order") == 0)
332                 die("Your 'order' array is empty. Please fix your config.\n");
333
334         cfg_general = cfg_getsec(cfg, "general");
335         if (cfg_general == NULL)
336                 die("Could not get section \"general\"\n");
337
338         char *output_str = cfg_getstr(cfg_general, "output_format");
339         if (strcasecmp(output_str, "auto") == 0) {
340                 fprintf(stderr, "i3status: trying to auto-detect output_format setting\n");
341                 output_str = auto_detect_format();
342                 if (!output_str) {
343                         output_str = "none";
344                         fprintf(stderr, "i3status: falling back to \"none\"\n");
345                 } else {
346                         fprintf(stderr, "i3status: auto-detected \"%s\"\n", output_str);
347                 }
348         }
349
350         if (strcasecmp(output_str, "dzen2") == 0)
351                 output_format = O_DZEN2;
352         else if (strcasecmp(output_str, "xmobar") == 0)
353                 output_format = O_XMOBAR;
354         else if (strcasecmp(output_str, "i3bar") == 0)
355                 output_format = O_I3BAR;
356         else if (strcasecmp(output_str, "none") == 0)
357                 output_format = O_NONE;
358         else die("Unknown output format: \"%s\"\n", output_str);
359
360         if (!valid_color(cfg_getstr(cfg_general, "color_good"))
361                         || !valid_color(cfg_getstr(cfg_general, "color_degraded"))
362                         || !valid_color(cfg_getstr(cfg_general, "color_bad"))
363                         || !valid_color(cfg_getstr(cfg_general, "color_separator")))
364                die("Bad color format");
365
366 #if YAJL_MAJOR >= 2
367         yajl_gen json_gen = yajl_gen_alloc(NULL);
368 #else
369         yajl_gen json_gen = yajl_gen_alloc(NULL, NULL);
370 #endif
371
372         if (output_format == O_I3BAR) {
373                 /* Initialize the i3bar protocol. See i3/docs/i3bar-protocol
374                  * for details. */
375                 printf("{\"version\":1}\n[\n");
376                 fflush(stdout);
377                 yajl_gen_array_open(json_gen);
378                 yajl_gen_clear(json_gen);
379         }
380
381         if ((general_socket = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
382                 die("Could not create socket\n");
383
384         int interval = cfg_getint(cfg_general, "interval");
385
386         /* One memory page which each plugin can use to buffer output.
387          * Even though it’s unclean, we just assume that the user will not
388          * specify a format string which expands to something longer than 4096
389          * bytes — given that the output of i3status is used to display
390          * information on screen, more than 1024 characters for the full line
391          * (!), not individual plugins, seem very unlikely. */
392         char buffer[4096];
393
394         struct tm tm;
395         while (1) {
396                 struct timeval tv;
397                 gettimeofday(&tv, NULL);
398                 time_t current_time = tv.tv_sec;
399                 struct tm *current_tm = NULL;
400                 if (current_time != (time_t) -1) {
401                         localtime_r(&current_time, &tm);
402                         current_tm = &tm;
403                 }
404                 if (output_format == O_I3BAR)
405                         yajl_gen_array_open(json_gen);
406                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
407                         if (j > 0)
408                                 print_seperator();
409
410                         const char *current = cfg_getnstr(cfg, "order", j);
411
412                         CASE_SEC("ipv6") {
413                                 SEC_OPEN_MAP("ipv6");
414                                 print_ipv6_info(json_gen, buffer, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
415                                 SEC_CLOSE_MAP;
416                         }
417
418                         CASE_SEC_TITLE("wireless") {
419                                 SEC_OPEN_MAP("wireless");
420                                 print_wireless_info(json_gen, buffer, title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
421                                 SEC_CLOSE_MAP;
422                         }
423
424                         CASE_SEC_TITLE("ethernet") {
425                                 SEC_OPEN_MAP("ethernet");
426                                 print_eth_info(json_gen, buffer, title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
427                                 SEC_CLOSE_MAP;
428                         }
429
430                         CASE_SEC_TITLE("battery") {
431                                 SEC_OPEN_MAP("battery");
432                                 print_battery_info(json_gen, buffer, atoi(title), cfg_getstr(sec, "path"), cfg_getstr(sec, "format"), cfg_getint(sec, "low_threshold"), cfg_getstr(sec, "threshold_type"), cfg_getbool(sec, "last_full_capacity"));
433                                 SEC_CLOSE_MAP;
434                         }
435
436                         CASE_SEC_TITLE("run_watch") {
437                                 SEC_OPEN_MAP("run_watch");
438                                 print_run_watch(json_gen, buffer, title, cfg_getstr(sec, "pidfile"), cfg_getstr(sec, "format"));
439                                 SEC_CLOSE_MAP;
440                         }
441
442                         CASE_SEC_TITLE("disk") {
443                                 SEC_OPEN_MAP("disk_info");
444                                 print_disk_info(json_gen, buffer, title, cfg_getstr(sec, "format"));
445                                 SEC_CLOSE_MAP;
446                         }
447
448                         CASE_SEC("load") {
449                                 SEC_OPEN_MAP("load");
450                                 print_load(json_gen, buffer, cfg_getstr(sec, "format"));
451                                 SEC_CLOSE_MAP;
452                         }
453
454                         CASE_SEC("time") {
455                                 SEC_OPEN_MAP("time");
456                                 print_time(json_gen, buffer, cfg_getstr(sec, "format"), current_tm);
457                                 SEC_CLOSE_MAP;
458                         }
459
460                         CASE_SEC("ddate") {
461                                 SEC_OPEN_MAP("ddate");
462                                 print_ddate(json_gen, buffer, cfg_getstr(sec, "format"), current_tm);
463                                 SEC_CLOSE_MAP;
464                         }
465
466                         CASE_SEC_TITLE("volume") {
467                                 SEC_OPEN_MAP("volume");
468                                 print_volume(json_gen, buffer, cfg_getstr(sec, "format"),
469                                              cfg_getstr(sec, "device"),
470                                              cfg_getstr(sec, "mixer"),
471                                              cfg_getint(sec, "mixer_idx"));
472                                 SEC_CLOSE_MAP;
473                         }
474
475                         CASE_SEC_TITLE("cpu_temperature") {
476                                 SEC_OPEN_MAP("cpu_temperature");
477                                 print_cpu_temperature_info(json_gen, buffer, atoi(title), cfg_getstr(sec, "path"), cfg_getstr(sec, "format"), cfg_getint(sec, "max_threshold"));
478                                 SEC_CLOSE_MAP;
479                         }
480
481                         CASE_SEC("cpu_usage") {
482                                 SEC_OPEN_MAP("cpu_usage");
483                                 print_cpu_usage(json_gen, buffer, cfg_getstr(sec, "format"));
484                                 SEC_CLOSE_MAP;
485                         }
486                 }
487                 if (output_format == O_I3BAR) {
488                         yajl_gen_array_close(json_gen);
489                         const unsigned char *buf;
490 #if YAJL_MAJOR >= 2
491                         size_t len;
492 #else
493                         unsigned int len;
494 #endif
495                         yajl_gen_get_buf(json_gen, &buf, &len);
496                         write(STDOUT_FILENO, buf, len);
497                         yajl_gen_clear(json_gen);
498                 }
499
500                 printf("\n");
501                 fflush(stdout);
502
503                 /* To provide updates on every full second (as good as possible)
504                  * we don’t use sleep(interval) but we sleep until the next
505                  * second (with microsecond precision) plus (interval-1)
506                  * seconds. */
507                 struct timeval current_timeval;
508                 gettimeofday(&current_timeval, NULL);
509                 struct timespec ts = {interval - 1, (10e5 - current_timeval.tv_usec) * 1000};
510                 nanosleep(&ts, NULL);
511         }
512 }