]> git.sur5r.net Git - i3/i3status/blob - i3status.c
debian: add libcap2-bin as dependency (for setcap(8))
[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-2009 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
30 #include "i3status.h"
31
32 /* socket file descriptor for general purposes */
33 int general_socket;
34
35 cfg_t *cfg, *cfg_general;
36
37 /*
38  * Exit upon SIGPIPE because when we have nowhere to write to, gathering
39  * system information is pointless.
40  *
41  */
42 void sigpipe(int signum) {
43         fprintf(stderr, "Received SIGPIPE, exiting\n");
44         exit(1);
45 }
46
47 /*
48  * Checks if there is a file at the given path (expanding ~) and returns the
49  * full path if so or NULL if there is no file.
50  *
51  */
52 static char *file_exists(char *path) {
53         static glob_t globbuf;
54         struct stat buf;
55         char *full_path = NULL;
56
57         if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, &globbuf) < 0)
58                 return NULL;
59
60         full_path = (globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
61
62         if (stat(full_path, &buf) < 0)
63                 return NULL;
64
65         return full_path;
66 }
67
68 /*
69  * Validates a color in "#RRGGBB" format
70  *
71  */
72 static int valid_color(const char *value)
73 {
74         if (strlen(value) != 7) return 0;
75         if (value[0] != '#') return 0;
76         for (int i = 1; i < 7; ++i) {
77                 if (value[i] >= '0' && value[i] <= '9') continue;
78                 if (value[i] >= 'a' && value[i] <= 'f') continue;
79                 if (value[i] >= 'A' && value[i] <= 'F') continue;
80                 return 0;
81         }
82         return 1;
83 }
84
85 int main(int argc, char *argv[]) {
86         unsigned int j;
87
88         cfg_opt_t general_opts[] = {
89                 CFG_STR("output_format", "dzen2", CFGF_NONE),
90                 CFG_BOOL("colors", 1, CFGF_NONE),
91                 CFG_STR("color_good", "#00FF00", CFGF_NONE),
92                 CFG_STR("color_degraded", "#FFFF00", CFGF_NONE),
93                 CFG_STR("color_bad", "#FF0000", CFGF_NONE),
94                 CFG_STR("color_separator", "#333333", CFGF_NONE),
95                 CFG_INT("interval", 1, CFGF_NONE),
96                 CFG_END()
97         };
98
99         cfg_opt_t run_watch_opts[] = {
100                 CFG_STR("pidfile", NULL, CFGF_NONE),
101                 CFG_STR("format", "%title: %status", CFGF_NONE),
102                 CFG_END()
103         };
104
105         cfg_opt_t wireless_opts[] = {
106                 CFG_STR("format_up", "W: (%quality at %essid) %ip", CFGF_NONE),
107                 CFG_STR("format_down", "W: down", CFGF_NONE),
108                 CFG_END()
109         };
110
111         cfg_opt_t ethernet_opts[] = {
112                 CFG_STR("format_up", "E: %ip (%speed)", CFGF_NONE),
113                 CFG_STR("format_down", "E: down", CFGF_NONE),
114                 CFG_END()
115         };
116
117         cfg_opt_t ipv6_opts[] = {
118                 CFG_STR("format_up", "%ip", CFGF_NONE),
119                 CFG_STR("format_down", "no IPv6", CFGF_NONE),
120                 CFG_END()
121         };
122
123         cfg_opt_t battery_opts[] = {
124                 CFG_STR("format", "%status %percentage %remaining", CFGF_NONE),
125                 CFG_BOOL("last_full_capacity", false, CFGF_NONE),
126                 CFG_END()
127         };
128
129         cfg_opt_t time_opts[] = {
130                 CFG_STR("format", "%d.%m.%Y %H:%M:%S", CFGF_NONE),
131                 CFG_END()
132         };
133
134         cfg_opt_t ddate_opts[] = {
135                 CFG_STR("format", "%{%a, %b %d%}, %Y%N - %H", CFGF_NONE),
136                 CFG_END()
137         };
138
139         cfg_opt_t load_opts[] = {
140                 CFG_STR("format", "%5min %10min %15min", CFGF_NONE),
141                 CFG_END()
142         };
143
144         cfg_opt_t temp_opts[] = {
145                 CFG_STR("format", "%degrees C", CFGF_NONE),
146                 CFG_END()
147         };
148
149         cfg_opt_t disk_opts[] = {
150                 CFG_STR("format", "%free", CFGF_NONE),
151                 CFG_END()
152         };
153
154         cfg_opt_t opts[] = {
155                 CFG_STR_LIST("order", "{ipv6,\"run_watch DHCP\",\"wireless wlan0\",\"ethernet eth0\",\"battery 0\",\"cpu_temperature 0\",load,time}", CFGF_NONE),
156                 CFG_SEC("general", general_opts, CFGF_NONE),
157                 CFG_SEC("run_watch", run_watch_opts, CFGF_TITLE | CFGF_MULTI),
158                 CFG_SEC("wireless", wireless_opts, CFGF_TITLE | CFGF_MULTI),
159                 CFG_SEC("ethernet", ethernet_opts, CFGF_TITLE | CFGF_MULTI),
160                 CFG_SEC("battery", battery_opts, CFGF_TITLE | CFGF_MULTI),
161                 CFG_SEC("cpu_temperature", temp_opts, CFGF_TITLE | CFGF_MULTI),
162                 CFG_SEC("disk", disk_opts, CFGF_TITLE | CFGF_MULTI),
163                 CFG_SEC("ipv6", ipv6_opts, CFGF_NONE),
164                 CFG_SEC("time", time_opts, CFGF_NONE),
165                 CFG_SEC("ddate", ddate_opts, CFGF_NONE),
166                 CFG_SEC("load", load_opts, CFGF_NONE),
167                 CFG_END()
168         };
169
170         char *configfile;
171         int o, option_index = 0;
172         struct option long_options[] = {
173                 {"config", required_argument, 0, 'c'},
174                 {"help", no_argument, 0, 'h'},
175                 {0, 0, 0, 0}
176         };
177
178         struct sigaction action;
179         memset(&action, 0, sizeof(struct sigaction));
180         action.sa_handler = sigpipe;
181         sigaction(SIGPIPE, &action, NULL);
182
183         /* Figure out which configuration file to use before the user may
184          * override this setting using -c */
185
186         if ((configfile = file_exists("~/.i3status.conf")) == NULL)
187                 configfile = file_exists(PREFIX "/etc/i3status.conf");
188
189         while ((o = getopt_long(argc, argv, "c:h", long_options, &option_index)) != -1)
190                 if ((char)o == 'c')
191                         configfile = optarg;
192                 else if ((char)o == 'h') {
193                         printf("i3status © 2008-2009 Michael Stapelberg\n"
194                                 "Syntax: %s [-c <configfile>]\n", argv[0]);
195                         return 0;
196                 }
197
198         if (configfile == NULL)
199                 die("No configuration file found\n");
200
201         cfg = cfg_init(opts, CFGF_NONE);
202         if (cfg_parse(cfg, configfile) == CFG_PARSE_ERROR)
203                 return EXIT_FAILURE;
204
205         cfg_general = cfg_getsec(cfg, "general");
206         if (cfg_general == NULL)
207                 die("Could not get section \"general\"\n");
208
209         char *output_str = cfg_getstr(cfg_general, "output_format");
210         if (strcasecmp(output_str, "dzen2") == 0)
211                 output_format = O_DZEN2;
212         else if (strcasecmp(output_str, "xmobar") == 0)
213                 output_format = O_XMOBAR;
214         else if (strcasecmp(output_str, "none") == 0)
215                 output_format = O_NONE;
216         else die("Unknown output format: \"%s\"\n", output_str);
217
218         if (!valid_color(cfg_getstr(cfg_general, "color_good"))
219                         || !valid_color(cfg_getstr(cfg_general, "color_degraded"))
220                         || !valid_color(cfg_getstr(cfg_general, "color_bad"))
221                         || !valid_color(cfg_getstr(cfg_general, "color_separator")))
222                die("Bad color format");
223
224         if ((general_socket = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
225                 die("Could not create socket\n");
226
227         int interval = cfg_getint(cfg_general, "interval");
228
229         while (1) {
230                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
231                         if (j > 0)
232                                 print_seperator();
233
234                         const char *current = cfg_getnstr(cfg, "order", j);
235
236                         CASE_SEC("ipv6")
237                                 print_ipv6_info(cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
238
239                         CASE_SEC_TITLE("wireless")
240                                 print_wireless_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
241
242                         CASE_SEC_TITLE("ethernet")
243                                 print_eth_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
244
245                         CASE_SEC_TITLE("battery")
246                                 print_battery_info(atoi(title), cfg_getstr(sec, "format"), cfg_getbool(sec, "last_full_capacity"));
247
248                         CASE_SEC_TITLE("run_watch")
249                                 print_run_watch(title, cfg_getstr(sec, "pidfile"), cfg_getstr(sec, "format"));
250
251                         CASE_SEC_TITLE("disk")
252                                 print_disk_info(title, cfg_getstr(sec, "format"));
253
254                         CASE_SEC("load")
255                                 print_load(cfg_getstr(sec, "format"));
256
257                         CASE_SEC("time")
258                                 print_time(cfg_getstr(sec, "format"));
259
260                         CASE_SEC("ddate")
261                                 print_ddate(cfg_getstr(sec, "format"));
262
263                         CASE_SEC_TITLE("cpu_temperature")
264                                 print_cpu_temperature_info(atoi(title), cfg_getstr(sec, "format"));
265                 }
266                 printf("\n");
267                 fflush(stdout);
268
269                 /* To provide updates on every full second (as good as possible)
270                  * we don’t use sleep(interval) but we sleep until the next
271                  * second (with microsecond precision) plus (interval-1)
272                  * seconds. */
273                 struct timeval current_time;
274                 gettimeofday(&current_time, NULL);
275                 struct timespec ts = {interval - 1, (10e5 - current_time.tv_usec) * 1000};
276                 nanosleep(&ts, NULL);
277         }
278 }