]> Dogcows Code - chaz/tint2/blob - src/battery/battery.c
0514a51f27ff46b77e0d79a73664a74e090a109b
[chaz/tint2] / src / battery / battery.c
1 /**************************************************************************
2 *
3 * Tint2 : battery
4 *
5 * Copyright (C) 2009 Sebastian Reichel <elektranox@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * or any later version as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 **************************************************************************/
19
20 #include <string.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <cairo.h>
24 #include <cairo-xlib.h>
25 #include <pango/pangocairo.h>
26
27 #if defined(__OpenBSD__) || defined(__NetBSD__)
28 #include <machine/apmvar.h>
29 #include <err.h>
30 #include <sys/ioctl.h>
31 #include <unistd.h>
32 #endif
33
34 #if defined(__FreeBSD__)
35 #include <sys/types.h>
36 #include <sys/sysctl.h>
37 #endif
38
39 #include "window.h"
40 #include "server.h"
41 #include "panel.h"
42 #include "battery.h"
43 #include "timer.h"
44 #include "common.h"
45
46 PangoFontDescription *bat1_font_desc;
47 PangoFontDescription *bat2_font_desc;
48 struct batstate battery_state;
49 int battery_enabled;
50 int percentage_hide;
51 static timeout* battery_timeout;
52
53 static char buf_bat_percentage[10];
54 static char buf_bat_time[20];
55
56 int8_t battery_low_status;
57 unsigned char battery_low_cmd_send;
58 char *battery_low_cmd;
59 char *path_energy_now;
60 char *path_energy_full;
61 char *path_current_now;
62 char *path_status;
63
64 #if defined(__OpenBSD__) || defined(__NetBSD__)
65 int apm_fd;
66 #endif
67
68 void update_batterys(void* arg)
69 {
70 int i;
71 update_battery();
72 for (i=0 ; i < nb_panel ; i++) {
73 if (battery_state.percentage >= percentage_hide) {
74 if (panel1[i].battery.area.on_screen == 1) {
75 panel1[i].battery.area.on_screen = 0;
76 panel1[i].area.resize = 1;
77 panel_refresh = 1;
78 }
79 }
80 else {
81 if (panel1[i].battery.area.on_screen == 0) {
82 panel1[i].battery.area.on_screen = 1;
83 }
84 }
85 if (panel1[i].battery.area.on_screen == 1) {
86 panel1[i].battery.area.resize = 1;
87 panel_refresh = 1;
88 }
89 }
90 }
91
92 void default_battery()
93 {
94 battery_enabled = 0;
95 percentage_hide = 101;
96 battery_low_cmd_send = 0;
97 battery_timeout = 0;
98 bat1_font_desc = 0;
99 bat2_font_desc = 0;
100 battery_low_cmd = 0;
101 path_energy_now = 0;
102 path_energy_full = 0;
103 path_current_now = 0;
104 path_status = 0;
105 #if defined(__OpenBSD__) || defined(__NetBSD__)
106 apm_fd = -1;
107 #endif
108 }
109
110 void cleanup_battery()
111 {
112 if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
113 if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
114 if (path_energy_now) g_free(path_energy_now);
115 if (path_energy_full) g_free(path_energy_full);
116 if (path_current_now) g_free(path_current_now);
117 if (path_status) g_free(path_status);
118 if (battery_low_cmd) g_free(battery_low_cmd);
119
120 #if defined(__OpenBSD__) || defined(__NetBSD__)
121 if ((apm_fd != -1) && (close(apm_fd) == -1))
122 warn("cannot close /dev/apm");
123 #endif
124 }
125
126
127 void init_battery()
128 {
129 if (!battery_enabled) return;
130
131 #if defined(__OpenBSD__) || defined(__NetBSD__)
132 apm_fd = open("/dev/apm", O_RDONLY);
133 if (apm_fd < 0) {
134 warn("init_battery: failed to open /dev/apm.");
135 battery_enabled = 0;
136 return;
137 }
138
139 #elif !defined(__FreeBSD__)
140 // check battery
141 GDir *directory = 0;
142 GError *error = NULL;
143 const char *entryname;
144 char *battery_dir = 0;
145
146 directory = g_dir_open("/sys/class/power_supply", 0, &error);
147 if (error)
148 g_error_free(error);
149 else {
150 while ((entryname=g_dir_read_name(directory))) {
151 if (strncmp(entryname,"AC", 2) == 0) continue;
152
153 char *path1 = g_build_filename("/sys/class/power_supply", entryname, "present", NULL);
154 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
155 g_free(path1);
156 battery_dir = g_build_filename("/sys/class/power_supply", entryname, NULL);
157 break;
158 }
159 g_free(path1);
160 }
161 }
162 if (directory)
163 g_dir_close(directory);
164 if (!battery_dir) {
165 fprintf(stderr, "ERROR: battery applet can't found power_supply\n");
166 default_battery();
167 return;
168 }
169
170 char *path1 = g_build_filename(battery_dir, "energy_now", NULL);
171 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
172 path_energy_now = g_build_filename(battery_dir, "energy_now", NULL);
173 path_energy_full = g_build_filename(battery_dir, "energy_full", NULL);
174 }
175 else {
176 char *path2 = g_build_filename(battery_dir, "charge_now", NULL);
177 if (g_file_test (path2, G_FILE_TEST_EXISTS)) {
178 path_energy_now = g_build_filename(battery_dir, "charge_now", NULL);
179 path_energy_full = g_build_filename(battery_dir, "charge_full", NULL);
180 }
181 else {
182 fprintf(stderr, "ERROR: can't found energy_* or charge_*\n");
183 }
184 g_free(path2);
185 }
186 if (path_energy_now && path_energy_full) {
187 path_current_now = g_build_filename(battery_dir, "current_now", NULL);
188 path_status = g_build_filename(battery_dir, "status", NULL);
189
190 // check file
191 FILE *fp1, *fp2, *fp3, *fp4;
192 fp1 = fopen(path_energy_now, "r");
193 fp2 = fopen(path_energy_full, "r");
194 fp3 = fopen(path_current_now, "r");
195 fp4 = fopen(path_status, "r");
196 if (fp1 == NULL || fp2 == NULL || fp3 == NULL || fp4 == NULL) {
197 cleanup_battery();
198 default_battery();
199 fprintf(stderr, "ERROR: battery applet can't open energy_now\n");
200 }
201 fclose(fp1);
202 fclose(fp2);
203 fclose(fp3);
204 fclose(fp4);
205 }
206
207 g_free(path1);
208 g_free(battery_dir);
209 #endif
210
211 if (battery_enabled && battery_timeout==0)
212 battery_timeout = add_timeout(10, 10000, update_batterys, 0);
213 }
214
215
216 void init_battery_panel(void *p)
217 {
218 Panel *panel = (Panel*)p;
219 Battery *battery = &panel->battery;
220 int bat_percentage_height, bat_percentage_height_ink, bat_time_height, bat_time_height_ink;
221
222 if (!battery_enabled)
223 return;
224
225 battery->area.parent = p;
226 battery->area.panel = p;
227 battery->area._draw_foreground = draw_battery;
228 battery->area.size_mode = SIZE_BY_CONTENT;
229 battery->area._resize = resize_battery;
230 battery->area.resize = 1;
231 battery->area.redraw = 1;
232 battery->area.on_screen = 1;
233
234 update_battery(&battery_state);
235 snprintf(buf_bat_percentage, sizeof(buf_bat_percentage), "%d%%", battery_state.percentage);
236 snprintf(buf_bat_time, sizeof(buf_bat_time), "%02d:%02d", battery_state.time.hours, battery_state.time.minutes);
237
238 get_text_size(bat1_font_desc, &bat_percentage_height_ink, &bat_percentage_height, panel->area.height, buf_bat_percentage, strlen(buf_bat_percentage));
239 get_text_size(bat2_font_desc, &bat_time_height_ink, &bat_time_height, panel->area.height, buf_bat_time, strlen(buf_bat_time));
240
241
242 if (panel_horizontal) {
243 // panel horizonal => fixed height
244 battery->area.height = panel->area.height - (2 * battery->area.posy);
245 }
246 else {
247 // panel vertical => fixed width, height
248 battery->area.width = panel->area.width - (2 * panel->area.bg->border.width) - (2 * panel->area.paddingy);
249 }
250
251 battery->bat1_posy = (battery->area.height - bat_percentage_height) / 2;
252 battery->bat1_posy -= ((bat_time_height_ink + 2) / 2);
253 battery->bat2_posy = battery->bat1_posy + bat_percentage_height + 2 - (bat_percentage_height - bat_percentage_height_ink)/2 - (bat_time_height - bat_time_height_ink)/2;
254 }
255
256
257 void update_battery() {
258 #if !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__FreeBSD__)
259 // unused on OpenBSD, silence compiler warnings
260 FILE *fp;
261 char tmp[25];
262 int64_t current_now = 0;
263 #endif
264 #if defined(__FreeBSD__)
265 int sysctl_out = 0;
266 size_t len = 0;
267 #endif
268 int64_t energy_now = 0, energy_full = 0;
269 int seconds = 0;
270 int8_t new_percentage = 0;
271
272 #if defined(__OpenBSD__) || defined(__NetBSD__)
273 struct apm_power_info info;
274 if (ioctl(apm_fd, APM_IOC_GETPOWER, &(info)) < 0)
275 warn("power update: APM_IOC_GETPOWER");
276
277 // best attempt at mapping to linux battery states
278 battery_state.state = BATTERY_UNKNOWN;
279 switch (info.battery_state) {
280 case APM_BATT_CHARGING:
281 battery_state.state = BATTERY_CHARGING;
282 break;
283 default:
284 battery_state.state = BATTERY_DISCHARGING;
285 break;
286 }
287
288 if (info.battery_life == 100)
289 battery_state.state = BATTERY_FULL;
290
291 // no mapping for openbsd really
292 energy_full = 0;
293 energy_now = 0;
294
295 if (info.minutes_left != -1)
296 seconds = info.minutes_left * 60;
297 else
298 seconds = -1;
299
300 new_percentage = info.battery_life;
301
302 #elif defined(__FreeBSD__)
303 len = sizeof(sysctl_out);
304
305 if (sysctlbyname("hw.acpi.battery.state", &sysctl_out, &len, NULL, 0) != 0)
306 fprintf(stderr, "power update: no such sysctl");
307
308 // attemp to map the battery state to linux
309 battery_state.state = BATTERY_UNKNOWN;
310
311 switch(sysctl_out) {
312 case 1:
313 battery_state.state = BATTERY_DISCHARGING;
314 break;
315 case 2:
316 battery_state.state = BATTERY_CHARGING;
317 break;
318 default:
319 battery_state.state = BATTERY_FULL;
320 break;
321 }
322
323 // no mapping for freebsd
324 energy_full = 0;
325 energy_now = 0;
326
327 if (sysctlbyname("hw.acpi.battery.time", &sysctl_out, &len, NULL, 0) != 0)
328 seconds = -1;
329 else
330 seconds = sysctl_out * 60;
331
332 // charging or error
333 if (seconds < 0)
334 seconds = 0;
335
336 if (sysctlbyname("hw.acpi.battery.life", &sysctl_out, &len, NULL, 0) != 0)
337 new_percentage = -1;
338 else
339 new_percentage = sysctl_out;
340
341 #else
342 fp = fopen(path_status, "r");
343 if(fp != NULL) {
344 if (fgets(tmp, sizeof tmp, fp)) {
345 battery_state.state = BATTERY_UNKNOWN;
346 if(strcasecmp(tmp, "Charging\n")==0) battery_state.state = BATTERY_CHARGING;
347 if(strcasecmp(tmp, "Discharging\n")==0) battery_state.state = BATTERY_DISCHARGING;
348 if(strcasecmp(tmp, "Full\n")==0) battery_state.state = BATTERY_FULL;
349 }
350 fclose(fp);
351 }
352
353 fp = fopen(path_energy_now, "r");
354 if(fp != NULL) {
355 if (fgets(tmp, sizeof tmp, fp)) energy_now = atoi(tmp);
356 fclose(fp);
357 }
358
359 fp = fopen(path_energy_full, "r");
360 if(fp != NULL) {
361 if (fgets(tmp, sizeof tmp, fp)) energy_full = atoi(tmp);
362 fclose(fp);
363 }
364
365 fp = fopen(path_current_now, "r");
366 if(fp != NULL) {
367 if (fgets(tmp, sizeof tmp, fp)) current_now = atoi(tmp);
368 fclose(fp);
369 }
370
371 if(current_now > 0) {
372 switch(battery_state.state) {
373 case BATTERY_CHARGING:
374 seconds = 3600 * (energy_full - energy_now) / current_now;
375 break;
376 case BATTERY_DISCHARGING:
377 seconds = 3600 * energy_now / current_now;
378 break;
379 default:
380 seconds = 0;
381 break;
382 }
383 } else seconds = 0;
384 #endif
385
386 battery_state.time.hours = seconds / 3600;
387 seconds -= 3600 * battery_state.time.hours;
388 battery_state.time.minutes = seconds / 60;
389 seconds -= 60 * battery_state.time.minutes;
390 battery_state.time.seconds = seconds;
391
392 if(energy_full > 0)
393 new_percentage = (energy_now*100)/energy_full;
394
395 if(battery_low_status > new_percentage && battery_state.state == BATTERY_DISCHARGING && !battery_low_cmd_send) {
396 tint_exec(battery_low_cmd);
397 battery_low_cmd_send = 1;
398 }
399 if(battery_low_status < new_percentage && battery_state.state == BATTERY_CHARGING && battery_low_cmd_send) {
400 battery_low_cmd_send = 0;
401 }
402
403 battery_state.percentage = new_percentage;
404
405 // clamp percentage to 100 in case battery is misreporting that its current charge is more than its max
406 if(battery_state.percentage > 100) {
407 battery_state.percentage = 100;
408 }
409 }
410
411
412 void draw_battery (void *obj, cairo_t *c)
413 {
414 Battery *battery = obj;
415 PangoLayout *layout;
416
417 layout = pango_cairo_create_layout (c);
418
419 // draw layout
420 pango_layout_set_font_description(layout, bat1_font_desc);
421 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
422 pango_layout_set_alignment(layout, PANGO_ALIGN_CENTER);
423 pango_layout_set_text(layout, buf_bat_percentage, strlen(buf_bat_percentage));
424
425 cairo_set_source_rgba(c, battery->font.color[0], battery->font.color[1], battery->font.color[2], battery->font.alpha);
426
427 pango_cairo_update_layout(c, layout);
428 cairo_move_to(c, 0, battery->bat1_posy);
429 pango_cairo_show_layout(c, layout);
430
431 pango_layout_set_font_description(layout, bat2_font_desc);
432 pango_layout_set_indent(layout, 0);
433 pango_layout_set_text(layout, buf_bat_time, strlen(buf_bat_time));
434 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
435
436 pango_cairo_update_layout(c, layout);
437 cairo_move_to(c, 0, battery->bat2_posy);
438 pango_cairo_show_layout(c, layout);
439
440 g_object_unref(layout);
441 }
442
443
444 int resize_battery(void *obj)
445 {
446 Battery *battery = obj;
447 PangoLayout *layout;
448 int percentage_width, time_width, new_width, ret = 0;
449
450 percentage_width = time_width = 0;
451 battery->area.redraw = 1;
452 snprintf(buf_bat_percentage, sizeof(buf_bat_percentage), "%d%%", battery_state.percentage);
453 if(battery_state.state == BATTERY_FULL) {
454 strcpy(buf_bat_time, "Full");
455 } else {
456 snprintf(buf_bat_time, sizeof(buf_bat_time), "%02d:%02d", battery_state.time.hours, battery_state.time.minutes);
457 }
458 // vertical panel doen't adjust width
459 if (!panel_horizontal) {
460 // battery->area.posy = panel->clock.area.posy + panel->clock.area.height + panel->area.paddingx;
461 // battery->area.height = (2 * battery->area.paddingxlr) + (bat_time_height + bat_percentage_height);
462 return ret;
463 }
464
465 cairo_surface_t *cs;
466 cairo_t *c;
467 Pixmap pmap;
468 pmap = XCreatePixmap(server.dsp, server.root_win, battery->area.width, battery->area.height, server.depth);
469
470 cs = cairo_xlib_surface_create(server.dsp, pmap, server.visual, battery->area.width, battery->area.height);
471 c = cairo_create(cs);
472 layout = pango_cairo_create_layout(c);
473
474 // check width
475 pango_layout_set_font_description(layout, bat1_font_desc);
476 pango_layout_set_indent(layout, 0);
477 pango_layout_set_text(layout, buf_bat_percentage, strlen(buf_bat_percentage));
478 pango_layout_get_pixel_size(layout, &percentage_width, NULL);
479
480 pango_layout_set_font_description(layout, bat2_font_desc);
481 pango_layout_set_indent(layout, 0);
482 pango_layout_set_text(layout, buf_bat_time, strlen(buf_bat_time));
483 pango_layout_get_pixel_size(layout, &time_width, NULL);
484
485 if(percentage_width > time_width) new_width = percentage_width;
486 else new_width = time_width;
487
488 int old_width = battery->area.width;
489
490 new_width += (2*battery->area.paddingxlr) + (2*battery->area.bg->border.width);
491 battery->area.width = new_width + 1;
492
493 if (new_width > old_width || new_width < (old_width-6)) {
494 // refresh and resize other objects on panel
495 // we try to limit the number of refresh
496 // printf("battery_width %d, new_width %d\n", battery->area.width, new_width);
497 ret = 1;
498 }
499
500 g_object_unref (layout);
501 cairo_destroy (c);
502 cairo_surface_destroy (cs);
503 XFreePixmap (server.dsp, pmap);
504 return ret;
505 }
506
This page took 0.052359 seconds and 3 git commands to generate.