]> git.sur5r.net Git - i3/i3status/blob - src/print_battery_info.c
battery: initialize colorful_output to false
[i3/i3status] / src / print_battery_info.c
1 // vim:ts=8:expandtab
2 #include <ctype.h>
3 #include <time.h>
4 #include <string.h>
5 #include <stdlib.h>
6 #include <stdio.h>
7 #include <yajl/yajl_gen.h>
8 #include <yajl/yajl_version.h>
9
10 #include "i3status.h"
11
12 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
13 #include <sys/types.h>
14 #include <sys/sysctl.h>
15 #endif
16
17 #if defined(__OpenBSD__)
18 #include <sys/types.h>
19 #include <sys/ioctl.h>
20 #include <sys/fcntl.h>
21 #include <machine/apmvar.h>
22 #endif
23
24 #define BATT_STATUS_NAME(status) \
25     (status == CS_CHARGING ? "CHR" : \
26         (status == CS_DISCHARGING ? "BAT" : "FULL"))
27 /*
28  * Get battery information from /sys. Note that it uses the design capacity to
29  * calculate the percentage, not the last full capacity, so you can see how
30  * worn off your battery is.
31  *
32  */
33 void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char *path, const char *format, int low_threshold, char *threshold_type, bool last_full_capacity, bool integer_battery_capacity) {
34         time_t empty_time;
35         struct tm *empty_tm;
36         char buf[1024];
37         char statusbuf[16];
38         char percentagebuf[16];
39         char remainingbuf[256];
40         char emptytimebuf[256];
41         char consumptionbuf[256];
42         const char *walk, *last;
43         char *outwalk = buffer;
44         bool watt_as_unit;
45         bool colorful_output = false;
46         int full_design = -1,
47             remaining = -1,
48             present_rate = -1,
49             voltage = -1;
50         charging_status_t status = CS_DISCHARGING;
51
52         memset(statusbuf, '\0', sizeof(statusbuf));
53         memset(percentagebuf, '\0', sizeof(percentagebuf));
54         memset(remainingbuf, '\0', sizeof(remainingbuf));
55         memset(emptytimebuf, '\0', sizeof(emptytimebuf));
56         memset(consumptionbuf, '\0', sizeof(consumptionbuf));
57
58         INSTANCE(path);
59
60 #if defined(LINUX)
61         static char batpath[512];
62         sprintf(batpath, path, number);
63         if (!slurp(batpath, buf, sizeof(buf))) {
64                 OUTPUT_FULL_TEXT("No battery");
65                 return;
66         }
67
68         for (walk = buf, last = buf; (walk-buf) < 1024; walk++) {
69                 if (*walk == '\n') {
70                         last = walk+1;
71                         continue;
72                 }
73
74                 if (*walk != '=')
75                         continue;
76
77                 if (BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_NOW")) {
78                         watt_as_unit = true;
79                         remaining = atoi(walk+1);
80                 }
81                 else if (BEGINS_WITH(last, "POWER_SUPPLY_CHARGE_NOW")) {
82                         watt_as_unit = false;
83                         remaining = atoi(walk+1);
84                 }
85                 else if (BEGINS_WITH(last, "POWER_SUPPLY_CURRENT_NOW"))
86                         present_rate = atoi(walk+1);
87                 else if (BEGINS_WITH(last, "POWER_SUPPLY_VOLTAGE_NOW"))
88                         voltage = atoi(walk+1);
89                 /* on some systems POWER_SUPPLY_POWER_NOW does not exist, but actually
90                  * it is the same as POWER_SUPPLY_CURRENT_NOW but with μWh as
91                  * unit instead of μAh. We will calculate it as we need it
92                  * later. */
93                 else if (BEGINS_WITH(last, "POWER_SUPPLY_POWER_NOW"))
94                         present_rate = atoi(walk+1);
95                 else if (BEGINS_WITH(last, "POWER_SUPPLY_STATUS=Charging"))
96                         status = CS_CHARGING;
97                 else if (BEGINS_WITH(last, "POWER_SUPPLY_STATUS=Full"))
98                         status = CS_FULL;
99                 else {
100                         /* The only thing left is the full capacity */
101                         if (last_full_capacity) {
102                                 if (!BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_FULL") &&
103                                     !BEGINS_WITH(last, "POWER_SUPPLY_CHARGE_FULL"))
104                                         continue;
105                         } else {
106                                 if (!BEGINS_WITH(last, "POWER_SUPPLY_CHARGE_FULL_DESIGN") &&
107                                     !BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_FULL_DESIGN"))
108                                         continue;
109                         }
110
111                         full_design = atoi(walk+1);
112                 }
113         }
114
115         /* the difference between POWER_SUPPLY_ENERGY_NOW and
116          * POWER_SUPPLY_CHARGE_NOW is the unit of measurement. The energy is
117          * given in mWh, the charge in mAh. So calculate every value given in
118          * ampere to watt */
119         if (!watt_as_unit) {
120             present_rate = (((float)voltage / 1000.0) * ((float)present_rate / 1000.0));
121             remaining = (((float)voltage / 1000.0) * ((float)remaining / 1000.0));
122             full_design = (((float)voltage / 1000.0) * ((float)full_design / 1000.0));
123         }
124
125         if ((full_design == -1) || (remaining == -1)) {
126                 OUTPUT_FULL_TEXT("No battery");
127                 return;
128         }
129
130         (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status));
131
132         float percentage_remaining = (((float)remaining / (float)full_design) * 100);
133         if (integer_battery_capacity) {
134                 (void)snprintf(percentagebuf, sizeof(percentagebuf), "%.00f%%", percentage_remaining);
135         } else {
136                 (void)snprintf(percentagebuf, sizeof(percentagebuf), "%.02f%%", percentage_remaining);
137         }
138
139         if (present_rate > 0) {
140                 float remaining_time;
141                 int seconds, hours, minutes, seconds_remaining;
142                 if (status == CS_CHARGING)
143                         remaining_time = ((float)full_design - (float)remaining) / (float)present_rate;
144                 else if (status == CS_DISCHARGING)
145                         remaining_time = ((float)remaining / (float)present_rate);
146                 else remaining_time = 0;
147
148                 seconds_remaining = (int)(remaining_time * 3600.0);
149
150                 hours = seconds_remaining / 3600;
151                 seconds = seconds_remaining - (hours * 3600);
152                 minutes = seconds / 60;
153                 seconds -= (minutes * 60);
154
155                 if (status == CS_DISCHARGING && low_threshold > 0) {
156                         if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0
157                                 && percentage_remaining < low_threshold) {
158                                 START_COLOR("color_bad");
159                                 colorful_output = true;
160                         } else if (strncmp(threshold_type, "time", strlen(threshold_type)) == 0
161                                 && seconds_remaining < 60 * low_threshold) {
162                                 START_COLOR("color_bad");
163                                 colorful_output = true;
164                         } else {
165                             colorful_output = false;
166                         }
167                 }
168
169                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02d:%02d:%02d",
170                         max(hours, 0), max(minutes, 0), max(seconds, 0));
171
172                 empty_time = time(NULL);
173                 empty_time += seconds_remaining;
174                 empty_tm = localtime(&empty_time);
175
176                 (void)snprintf(emptytimebuf, sizeof(emptytimebuf), "%02d:%02d:%02d",
177                         max(empty_tm->tm_hour, 0), max(empty_tm->tm_min, 0), max(empty_tm->tm_sec, 0));
178
179                 (void)snprintf(consumptionbuf, sizeof(consumptionbuf), "%1.2fW",
180                         ((float)present_rate / 1000.0 / 1000.0));
181         } else {
182                 /* On some systems, present_rate may not exist. Still, make sure
183                  * we colorize the output if threshold_type is set to percentage
184                  * (since we don't have any information on remaining time). */
185                 if (status == CS_DISCHARGING && low_threshold > 0) {
186                         if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0
187                                 && percentage_remaining < low_threshold) {
188                                 START_COLOR("color_bad");
189                                 colorful_output = true;
190                         }
191                 }
192         }
193 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
194         int state;
195         int sysctl_rslt;
196         size_t sysctl_size = sizeof(sysctl_rslt);
197
198         if (sysctlbyname(BATT_LIFE, &sysctl_rslt, &sysctl_size, NULL, 0) != 0) {
199                 OUTPUT_FULL_TEXT("No battery");
200                 return;
201         }
202
203         present_rate = sysctl_rslt;
204         if (sysctlbyname(BATT_TIME, &sysctl_rslt, &sysctl_size, NULL, 0) != 0) {
205                 OUTPUT_FULL_TEXT("No battery");
206                 return;
207         }
208
209         remaining = sysctl_rslt;
210         if (sysctlbyname(BATT_STATE, &sysctl_rslt, &sysctl_size, NULL,0) != 0) {
211                 OUTPUT_FULL_TEXT("No battery");
212                 return;
213         }
214
215         state = sysctl_rslt;
216         if (state == 0 && present_rate == 100)
217                 status = CS_FULL;
218         else if (state == 0 && present_rate < 100)
219                 status = CS_CHARGING;
220         else
221                 status = CS_DISCHARGING;
222
223         full_design = sysctl_rslt;
224
225         (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status));
226
227         (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%",
228                        present_rate);
229
230         if (state == 1) {
231                 int hours, minutes;
232                 minutes = remaining;
233                 hours = minutes / 60;
234                 minutes -= (hours * 60);
235                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02dh%02d",
236                                max(hours, 0), max(minutes, 0));
237         }
238 #elif defined(__OpenBSD__)
239         /*
240          * We're using apm(4) here, which is the interface to acpi(4) on amd64/i386 and
241          * the generic interface on macppc/sparc64/zaurus, instead of using sysctl(3) and
242          * probing acpi(4) devices.
243          */
244         struct apm_power_info apm_info;
245         int apm_fd;
246
247         apm_fd = open("/dev/apm", O_RDONLY);
248         if (apm_fd < 0) {
249                 OUTPUT_FULL_TEXT("can't open /dev/apm");
250                 return;
251         }
252         if (ioctl(apm_fd, APM_IOC_GETPOWER, &apm_info) < 0)
253                 OUTPUT_FULL_TEXT("can't read power info");
254
255         close(apm_fd);
256
257         /* Don't bother to go further if there's no battery present. */
258         if ((apm_info.battery_state == APM_BATTERY_ABSENT) ||
259             (apm_info.battery_state == APM_BATT_UNKNOWN)) {
260                 OUTPUT_FULL_TEXT("No battery");
261                 return;
262         }
263
264         switch(apm_info.ac_state) {
265         case APM_AC_OFF:
266                 status = CS_DISCHARGING;
267                 break;
268         case APM_AC_ON:
269                 status = CS_CHARGING;
270                 break;
271         default:
272                 /* If we don't know what's going on, just assume we're discharging. */
273                 status = CS_DISCHARGING;
274                 break;
275         }
276
277         (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status));
278         (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", apm_info.battery_life);
279
280         if (status == CS_DISCHARGING && low_threshold > 0) {
281                 if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0
282                     && apm_info.battery_life < low_threshold) {
283                         START_COLOR("color_bad");
284                         colorful_output = true;
285                 } else if (strncmp(threshold_type, "time", strlen(threshold_type)) == 0
286                            && apm_info.minutes_left < (u_int) low_threshold) {
287                         START_COLOR("color_bad");
288                         colorful_output = true;
289                 }
290         }
291
292         /* Can't give a meaningful value for remaining minutes if we're charging. */
293         if (status != CS_CHARGING) {
294                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%d", apm_info.minutes_left);
295         } else {
296                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%s", "(CHR)");
297         }
298
299         if (colorful_output)
300                 END_COLOR;
301 #endif
302
303 #define EAT_SPACE_FROM_OUTPUT_IF_EMPTY(_buf) \
304         do { \
305                 if (strlen(_buf) == 0) { \
306                         if (outwalk > buffer && isspace(outwalk[-1])) \
307                                 outwalk--; \
308                         else if (isspace(*(walk+1))) \
309                                 walk++; \
310                 } \
311         } while (0)
312
313         for (walk = format; *walk != '\0'; walk++) {
314                 if (*walk != '%') {
315                         *(outwalk++) = *walk;
316                         continue;
317                 }
318
319                 if (strncmp(walk+1, "status", strlen("status")) == 0) {
320                         outwalk += sprintf(outwalk, "%s", statusbuf);
321                         walk += strlen("status");
322                 } else if (strncmp(walk+1, "percentage", strlen("percentage")) == 0) {
323                         outwalk += sprintf(outwalk, "%s", percentagebuf);
324                         walk += strlen("percentage");
325                 } else if (strncmp(walk+1, "remaining", strlen("remaining")) == 0) {
326                         outwalk += sprintf(outwalk, "%s", remainingbuf);
327                         walk += strlen("remaining");
328                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(remainingbuf);
329                 } else if (strncmp(walk+1, "emptytime", strlen("emptytime")) == 0) {
330                         outwalk += sprintf(outwalk, "%s", emptytimebuf);
331                         walk += strlen("emptytime");
332                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(emptytimebuf);
333                 } else if (strncmp(walk+1, "consumption", strlen("consumption")) == 0) {
334                         outwalk += sprintf(outwalk, "%s", consumptionbuf);
335                         walk += strlen("consumption");
336                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(consumptionbuf);
337                 }
338         }
339
340         if (colorful_output)
341                 END_COLOR;
342
343         OUTPUT_FULL_TEXT(buffer);
344 }