]> git.sur5r.net Git - i3/i3status/blob - i3status.c
Bugfix: Correctly check for interface up/down-status (Thanks docsteel)
[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 volume_opts[] = {
155                 CFG_STR("format", "♪: %volume", CFGF_NONE),
156                 CFG_STR("device", "default", CFGF_NONE),
157                 CFG_STR("mixer", "Master", CFGF_NONE),
158                 CFG_INT("mixer_idx", 0, CFGF_NONE),
159                 CFG_END()
160         };
161
162         cfg_opt_t opts[] = {
163                 CFG_STR_LIST("order", "{ipv6,\"run_watch DHCP\",\"wireless wlan0\",\"ethernet eth0\",\"battery 0\",\"cpu_temperature 0\",load,time}", CFGF_NONE),
164                 CFG_SEC("general", general_opts, CFGF_NONE),
165                 CFG_SEC("run_watch", run_watch_opts, CFGF_TITLE | CFGF_MULTI),
166                 CFG_SEC("wireless", wireless_opts, CFGF_TITLE | CFGF_MULTI),
167                 CFG_SEC("ethernet", ethernet_opts, CFGF_TITLE | CFGF_MULTI),
168                 CFG_SEC("battery", battery_opts, CFGF_TITLE | CFGF_MULTI),
169                 CFG_SEC("cpu_temperature", temp_opts, CFGF_TITLE | CFGF_MULTI),
170                 CFG_SEC("disk", disk_opts, CFGF_TITLE | CFGF_MULTI),
171                 CFG_SEC("volume", volume_opts, CFGF_TITLE | CFGF_MULTI),
172                 CFG_SEC("ipv6", ipv6_opts, CFGF_NONE),
173                 CFG_SEC("time", time_opts, CFGF_NONE),
174                 CFG_SEC("ddate", ddate_opts, CFGF_NONE),
175                 CFG_SEC("load", load_opts, CFGF_NONE),
176                 CFG_END()
177         };
178
179         char *configfile;
180         int o, option_index = 0;
181         struct option long_options[] = {
182                 {"config", required_argument, 0, 'c'},
183                 {"help", no_argument, 0, 'h'},
184                 {0, 0, 0, 0}
185         };
186
187         struct sigaction action;
188         memset(&action, 0, sizeof(struct sigaction));
189         action.sa_handler = sigpipe;
190         sigaction(SIGPIPE, &action, NULL);
191
192         /* Figure out which configuration file to use before the user may
193          * override this setting using -c */
194
195         if ((configfile = file_exists("~/.i3status.conf")) == NULL)
196                 configfile = file_exists(PREFIX "/etc/i3status.conf");
197
198         while ((o = getopt_long(argc, argv, "c:h", long_options, &option_index)) != -1)
199                 if ((char)o == 'c')
200                         configfile = optarg;
201                 else if ((char)o == 'h') {
202                         printf("i3status © 2008-2009 Michael Stapelberg\n"
203                                 "Syntax: %s [-c <configfile>]\n", argv[0]);
204                         return 0;
205                 }
206
207         if (configfile == NULL)
208                 die("No configuration file found\n");
209
210         cfg = cfg_init(opts, CFGF_NONE);
211         if (cfg_parse(cfg, configfile) == CFG_PARSE_ERROR)
212                 return EXIT_FAILURE;
213
214         cfg_general = cfg_getsec(cfg, "general");
215         if (cfg_general == NULL)
216                 die("Could not get section \"general\"\n");
217
218         char *output_str = cfg_getstr(cfg_general, "output_format");
219         if (strcasecmp(output_str, "dzen2") == 0)
220                 output_format = O_DZEN2;
221         else if (strcasecmp(output_str, "xmobar") == 0)
222                 output_format = O_XMOBAR;
223         else if (strcasecmp(output_str, "none") == 0)
224                 output_format = O_NONE;
225         else die("Unknown output format: \"%s\"\n", output_str);
226
227         if (!valid_color(cfg_getstr(cfg_general, "color_good"))
228                         || !valid_color(cfg_getstr(cfg_general, "color_degraded"))
229                         || !valid_color(cfg_getstr(cfg_general, "color_bad"))
230                         || !valid_color(cfg_getstr(cfg_general, "color_separator")))
231                die("Bad color format");
232
233         if ((general_socket = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
234                 die("Could not create socket\n");
235
236         int interval = cfg_getint(cfg_general, "interval");
237
238         while (1) {
239                 for (j = 0; j < cfg_size(cfg, "order"); j++) {
240                         if (j > 0)
241                                 print_seperator();
242
243                         const char *current = cfg_getnstr(cfg, "order", j);
244
245                         CASE_SEC("ipv6")
246                                 print_ipv6_info(cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
247
248                         CASE_SEC_TITLE("wireless")
249                                 print_wireless_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
250
251                         CASE_SEC_TITLE("ethernet")
252                                 print_eth_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
253
254                         CASE_SEC_TITLE("battery")
255                                 print_battery_info(atoi(title), cfg_getstr(sec, "format"), cfg_getbool(sec, "last_full_capacity"));
256
257                         CASE_SEC_TITLE("run_watch")
258                                 print_run_watch(title, cfg_getstr(sec, "pidfile"), cfg_getstr(sec, "format"));
259
260                         CASE_SEC_TITLE("disk")
261                                 print_disk_info(title, cfg_getstr(sec, "format"));
262
263                         CASE_SEC("load")
264                                 print_load(cfg_getstr(sec, "format"));
265
266                         CASE_SEC("time")
267                                 print_time(cfg_getstr(sec, "format"));
268
269                         CASE_SEC("ddate")
270                                 print_ddate(cfg_getstr(sec, "format"));
271
272                         CASE_SEC_TITLE("volume")
273                                 print_volume(cfg_getstr(sec, "format"),
274                                              cfg_getstr(sec, "device"),
275                                              cfg_getstr(sec, "mixer"),
276                                              cfg_getint(sec, "mixer_idx"));
277
278                         CASE_SEC_TITLE("cpu_temperature")
279                                 print_cpu_temperature_info(atoi(title), cfg_getstr(sec, "format"));
280                 }
281                 printf("\n");
282                 fflush(stdout);
283
284                 /* To provide updates on every full second (as good as possible)
285                  * we don’t use sleep(interval) but we sleep until the next
286                  * second (with microsecond precision) plus (interval-1)
287                  * seconds. */
288                 struct timeval current_time;
289                 gettimeofday(&current_time, NULL);
290                 struct timespec ts = {interval - 1, (10e5 - current_time.tv_usec) * 1000};
291                 nanosleep(&ts, NULL);
292         }
293 }