]> git.sur5r.net Git - i3/i3status/blob - src/print_battery_info.c
fix #1017: i3status uses generic battery instance
[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, const char *format_down, 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         static char batpath[512];
59         sprintf(batpath, path, number);
60         INSTANCE(batpath);
61
62 #if defined(LINUX)
63         if (!slurp(batpath, buf, sizeof(buf))) {
64                 OUTPUT_FULL_TEXT(format_down);
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(format_down);
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(format_down);
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(format_down);
206                 return;
207         }
208
209         remaining = sysctl_rslt;
210         if (sysctlbyname(BATT_STATE, &sysctl_rslt, &sysctl_size, NULL,0) != 0) {
211                 OUTPUT_FULL_TEXT(format_down);
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                 if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0
238                     && present_rate < low_threshold) {
239                         START_COLOR("color_bad");
240                         colorful_output = true;
241                 } else if (strncmp(threshold_type, "time", strlen(threshold_type)) == 0
242                            && remaining < (u_int) low_threshold) {
243                         START_COLOR("color_bad");
244                         colorful_output = true;
245                 }
246         }
247 #elif defined(__OpenBSD__)
248         /*
249          * We're using apm(4) here, which is the interface to acpi(4) on amd64/i386 and
250          * the generic interface on macppc/sparc64/zaurus, instead of using sysctl(3) and
251          * probing acpi(4) devices.
252          */
253         struct apm_power_info apm_info;
254         int apm_fd;
255
256         apm_fd = open("/dev/apm", O_RDONLY);
257         if (apm_fd < 0) {
258                 OUTPUT_FULL_TEXT("can't open /dev/apm");
259                 return;
260         }
261         if (ioctl(apm_fd, APM_IOC_GETPOWER, &apm_info) < 0)
262                 OUTPUT_FULL_TEXT("can't read power info");
263
264         close(apm_fd);
265
266         /* Don't bother to go further if there's no battery present. */
267         if ((apm_info.battery_state == APM_BATTERY_ABSENT) ||
268             (apm_info.battery_state == APM_BATT_UNKNOWN)) {
269                 OUTPUT_FULL_TEXT(format_down);
270                 return;
271         }
272
273         switch(apm_info.ac_state) {
274         case APM_AC_OFF:
275                 status = CS_DISCHARGING;
276                 break;
277         case APM_AC_ON:
278                 status = CS_CHARGING;
279                 break;
280         default:
281                 /* If we don't know what's going on, just assume we're discharging. */
282                 status = CS_DISCHARGING;
283                 break;
284         }
285
286         (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status));
287         (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", apm_info.battery_life);
288
289         if (status == CS_DISCHARGING && low_threshold > 0) {
290                 if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0
291                     && apm_info.battery_life < low_threshold) {
292                         START_COLOR("color_bad");
293                         colorful_output = true;
294                 } else if (strncmp(threshold_type, "time", strlen(threshold_type)) == 0
295                            && apm_info.minutes_left < (u_int) low_threshold) {
296                         START_COLOR("color_bad");
297                         colorful_output = true;
298                 }
299         }
300
301         /* Can't give a meaningful value for remaining minutes if we're charging. */
302         if (status != CS_CHARGING) {
303                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%d", apm_info.minutes_left);
304         } else {
305                 (void)snprintf(remainingbuf, sizeof(remainingbuf), "%s", "(CHR)");
306         }
307
308         if (colorful_output)
309                 END_COLOR;
310 #endif
311
312 #define EAT_SPACE_FROM_OUTPUT_IF_EMPTY(_buf) \
313         do { \
314                 if (strlen(_buf) == 0) { \
315                         if (outwalk > buffer && isspace(outwalk[-1])) \
316                                 outwalk--; \
317                         else if (isspace(*(walk+1))) \
318                                 walk++; \
319                 } \
320         } while (0)
321
322         for (walk = format; *walk != '\0'; walk++) {
323                 if (*walk != '%') {
324                         *(outwalk++) = *walk;
325                         continue;
326                 }
327
328                 if (strncmp(walk+1, "status", strlen("status")) == 0) {
329                         outwalk += sprintf(outwalk, "%s", statusbuf);
330                         walk += strlen("status");
331                 } else if (strncmp(walk+1, "percentage", strlen("percentage")) == 0) {
332                         outwalk += sprintf(outwalk, "%s", percentagebuf);
333                         walk += strlen("percentage");
334                 } else if (strncmp(walk+1, "remaining", strlen("remaining")) == 0) {
335                         outwalk += sprintf(outwalk, "%s", remainingbuf);
336                         walk += strlen("remaining");
337                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(remainingbuf);
338                 } else if (strncmp(walk+1, "emptytime", strlen("emptytime")) == 0) {
339                         outwalk += sprintf(outwalk, "%s", emptytimebuf);
340                         walk += strlen("emptytime");
341                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(emptytimebuf);
342                 } else if (strncmp(walk+1, "consumption", strlen("consumption")) == 0) {
343                         outwalk += sprintf(outwalk, "%s", consumptionbuf);
344                         walk += strlen("consumption");
345                         EAT_SPACE_FROM_OUTPUT_IF_EMPTY(consumptionbuf);
346                 }
347         }
348
349         if (colorful_output)
350                 END_COLOR;
351
352         OUTPUT_FULL_TEXT(buffer);
353 }